From 196ab4f281bb11b4b854a7d1f60d152e1bd0733a Mon Sep 17 00:00:00 2001 From: Markus Lippert Date: Wed, 2 Sep 2020 18:04:05 +0200 Subject: [PATCH] feat(argo): Add linux node selectors by default (#403) --- charts/argo/Chart.yaml | 2 +- charts/argo/values.yaml | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/charts/argo/Chart.yaml b/charts/argo/Chart.yaml index 75980b73..39a1bbfd 100644 --- a/charts/argo/Chart.yaml +++ b/charts/argo/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v1 appVersion: v2.8.0 description: A Helm chart for Argo Workflows name: argo -version: 0.9.10 +version: 0.10.0 icon: https://raw.githubusercontent.com/argoproj/argo/master/docs/assets/argo.png home: https://github.com/argoproj/argo-helm maintainers: diff --git a/charts/argo/values.yaml b/charts/argo/values.yaml index 9662ea50..8358572f 100644 --- a/charts/argo/values.yaml +++ b/charts/argo/values.yaml @@ -108,7 +108,8 @@ controller: ## Node selectors and tolerations for server scheduling to nodes with taints ## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/ ## - nodeSelector: {} + nodeSelector: + kubernetes.io/os: linux tolerations: [] affinity: {} @@ -160,7 +161,8 @@ server: ## Node selectors and tolerations for server scheduling to nodes with taints ## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/ ## - nodeSelector: {} + nodeSelector: + kubernetes.io/os: linux tolerations: [] affinity: {}