Skip to content

Commit 397c2ac

Browse files
committed
chore(charts): add support for proxy url
Signed-off-by: Massimiliano Giovagnoli <[email protected]>
1 parent 7dac5d1 commit 397c2ac

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

charts/capsule-addon-fluxcd/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 0.1.2
18+
version: 0.2.0
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to
2222
# follow Semantic Versioning. They should reflect the version the application is using.
2323
# It is recommended to use it with quotes.
24-
appVersion: 0.2.0
24+
appVersion: 0.2.2

charts/capsule-addon-fluxcd/templates/deployment.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ spec:
3030
args:
3131
- manager
3232
- --proxy-ca-path=/tmp/proxy-tls/{{ .Values.proxy.tls.secretKey }}
33+
- --proxy-url={{ .Values.proxy.url }}
3334
- --zap-log-level={{ default 4 .Values.options.logLevel }}
3435
securityContext:
3536
{{- toYaml .Values.securityContext | nindent 12 }}

charts/capsule-addon-fluxcd/values.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ proxy:
2121
secretName: "capsule-proxy"
2222
# --- Set the Secret key that contains the CA certificate of the proxy
2323
secretKey: "ca"
24+
# --- Set the Capsule proxy Service URL
25+
url: https://capsule-proxy.capsule-system.svc:9001
2426

2527
# -- Configure the liveness probe using Deployment probe spec
2628
livenessProbe:

0 commit comments

Comments
 (0)