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
description: "Please note that this version of the ArgoCD templates contains a breaking change for ArgoCD server ingress value structure - runtime ingress is not affected. Only relevant if argo-cd.server.ingress.enabled is true. For the new ingress value structure please see: https://github.com/codefresh-io/argo-helm/blob/f98f2f4d4aca081e7b26cbb1a3fcec138bb3d4ac/charts/argo-cd/values.yaml#L2126-L2329"
18
+
description: "update codefresh-gitops-operator to 0.1.0-alpha.13"
| app-proxy.image-enrichment.serviceAccount.name | string | `"codefresh-image-enrichment-sa"` | Name of the service account to create or the name of the existing one to use |
| 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. |
278
278
| global.codefresh.userToken.secretKeyRef | object | `{}` | User token that references an existing secret containing the token. |
279
279
| global.codefresh.userToken.token | string | `""` | User token in plain text. The chart creates and manages the secret for this token. |
| 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. |
295
295
| global.runtime.ingress.protocol | string | `"https"` | The protocol that Codefresh platform will use to access the runtime ingress. Can be http or https. |
296
296
| 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) |
297
+
| global.runtime.isConfigurationRuntime | bool | `false` | is the runtime set as a "configuration runtime". |
297
298
| global.runtime.name | string | `nil` | Runtime name. Must be unique per platform account. |
298
299
| installer | object | `{"image":{"pullPolicy":"IfNotPresent","repository":"quay.io/codefresh/gitops-runtime-installer","tag":""},"skipValidation":false}` | Runtime installer used for running hooks and checks on the release |
299
300
| installer.skipValidation | bool | `false` | if set to true, pre-install hook will *not* run |
Copy file name to clipboardExpand all lines: charts/gitops-runtime/values.yaml
+4-3
Original file line number
Diff line number
Diff line change
@@ -65,6 +65,8 @@ global:
65
65
hosts: []
66
66
# -- 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)
67
67
ingressUrl: ""
68
+
# -- is the runtime set as a "configuration runtime".
69
+
isConfigurationRuntime: false
68
70
# -- Git credentials runtime. Runtime is not fully functional without those credentials.
69
71
# If not provided through the installation, they must be provided through the Codefresh UI.
0 commit comments