You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -139,7 +139,7 @@ A Helm chart for Codefresh gitops runtime
139
139
| global.codefresh.userToken | object |`{"secretKeyRef":{},"token":""}`| User token. Used for runtime registration against the patform. One of token (for plain text value) or secretKeyRef must be provided. |
140
140
| global.codefresh.userToken.secretKeyRef | object |`{}`| User token that references an existing secret containing the token. |
141
141
| global.codefresh.userToken.token | string |`""`| User token in plain text. The chart creates and manages the secret for this token. |
| global.runtime.eventBusName | string |`"codefresh-eventbus"`| Eventbus name |
@@ -152,6 +152,7 @@ A Helm chart for Codefresh gitops runtime
152
152
| global.runtime.ingress.enabled | bool |`false`| Defines if ingress-based access mode is enabled for runtime. To use tunnel-based (ingressless) access mode, set to false. |
153
153
| global.runtime.ingress.hosts | list |`[]`| Hosts for runtime ingress. Note that Codefresh platform will always use the first host in the list to access the runtime. |
154
154
| global.runtime.ingress.protocol | string |`"https"`| The protocol that Codefresh platform will use to access the runtime ingress. Can be http or https. |
155
+
| global.runtime.ingressUrl | string |`""`| Explicit url for runtime ingress. Provide this value only if you don't want the chart to create and ingress (global.runtime.ingress.enabled=false) and tunnel-client is not used (tunnel-client.enabled=false) |
155
156
| global.runtime.name | string |`nil`| Runtime name. Must be identical to the namepsace in which it is intalled and must be unique per platform account. |
156
157
| installer | object |`{"image":{"pullPolicy":"IfNotPresent","repository":"quay.io/codefresh/gitops-runtime-installer","tag":""}}`| Runtime installer used for running hooks and checks on the release |
157
158
| internal-router.affinity | object |`{}`||
@@ -180,7 +181,8 @@ A Helm chart for Codefresh gitops runtime
| tunnel-client | object |`{"libraryMode":true,"tunnelServer":{"host":"register-tunnels.cf-cd.com","subdomainHost":"tunnels.cf-cd.com"}}`| Tunnel based runtime. Only relevant when runtime.ingress.enabled = false |
184
+
| tunnel-client | object |`{"enabled":true,"libraryMode":true,"tunnelServer":{"host":"register-tunnels.cf-cd.com","subdomainHost":"tunnels.cf-cd.com"}}`| Tunnel based runtime. Not supported for on-prem platform. In on-prem use ingress based runtimes. |
185
+
| tunnel-client.enabled | bool |`true`| Will only be used if global.runtime.ingress.enabled = false |
184
186
| tunnel-client.libraryMode | bool |`true`| Do not change this value! Breaks chart logic |
Copy file name to clipboardExpand all lines: charts/gitops-runtime/values.yaml
+5-2Lines changed: 5 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -61,7 +61,8 @@ global:
61
61
annotations: {}
62
62
# -- Hosts for runtime ingress. Note that Codefresh platform will always use the first host in the list to access the runtime.
63
63
hosts: []
64
-
64
+
# -- Explicit url for runtime ingress. Provide this value only if you don't want the chart to create and ingress (global.runtime.ingress.enabled=false) and tunnel-client is not used (tunnel-client.enabled=false)
65
+
ingressUrl: ""
65
66
# -- Git credentials runtime. Runtime is not fully functional without those credentials.
66
67
# If not provided through the installation, they must be provided through the Codefresh UI.
0 commit comments