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
* Optional: `k8sVersion: '1.24.8'` Is used for target k8s version in helm template in Argo CD deployments with helm. Is also used to determine the kubectl version, when no specific buildImage is specified.
342
-
It is recommended to use an Jenkins environment variable to specify the version, so that you don't have to bump every pipeline after a k8s version upgrade in your cluster.
341
+
* Optional: `k8sVersion: '1.24.8'` Is used for target k8s version in helm template in Argo CD deployments with helm. Is also used to determine the kubectl version, when no specific buildImage is specified.
342
+
It is recommended to use a Jenkins environment variable to specify the version, so that you don't have to bump every pipeline after a k8s version upgrade in your cluster, e.g.
343
+
```
344
+
def gitopsConfig = [
345
+
k8sVersion: env.K8S_VERSION_TEAM_A
346
+
]
347
+
```
343
348
344
349
---
345
350
@@ -355,8 +360,8 @@ def gitopsConfig = [
355
360
// if you specify k8sVersion parameter, then by default bitnami/kubectl:${k8sVersion} will be used
356
361
kubectl: 'bitnami/kubectl:1.24.8',
357
362
// These are used for each specific validator via an imageRef property inside the validators config. See [Validators] for examples.
0 commit comments