From 09bf2fbb92bdcee025ade562a353006337ad7872 Mon Sep 17 00:00:00 2001 From: Thiago Brito Date: Tue, 22 Mar 2022 15:15:41 -0300 Subject: [PATCH] Enable taint toleration for ceph-rgw This adds taint toleration support for openstack jobs Signed-off-by: Lucas Cavalcante Change-Id: I5e55e93d4034da5f7f323a6dcb3ca511abd9ac4e --- ceph-rgw/Chart.yaml | 2 +- ceph-rgw/values.yaml | 3 +++ releasenotes/notes/ceph-rgw.yaml | 1 + 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ceph-rgw/Chart.yaml b/ceph-rgw/Chart.yaml index 127908c81..757ad2ca6 100644 --- a/ceph-rgw/Chart.yaml +++ b/ceph-rgw/Chart.yaml @@ -15,6 +15,6 @@ apiVersion: v1 appVersion: v1.0.0 description: OpenStack-Helm Ceph RadosGW name: ceph-rgw -version: 0.1.19 +version: 0.1.20 home: https://github.com/ceph/ceph ... diff --git a/ceph-rgw/values.yaml b/ceph-rgw/values.yaml index a51478562..2b1709730 100644 --- a/ceph-rgw/values.yaml +++ b/ceph-rgw/values.yaml @@ -233,6 +233,9 @@ pod: key: node.kubernetes.io/unreachable operator: Exists tolerationSeconds: 60 + - key: node-role.kubernetes.io/master + operator: Exists + effect: NoSchedule network_policy: rgw: diff --git a/releasenotes/notes/ceph-rgw.yaml b/releasenotes/notes/ceph-rgw.yaml index 29d8cc899..5835f9b59 100644 --- a/releasenotes/notes/ceph-rgw.yaml +++ b/releasenotes/notes/ceph-rgw.yaml @@ -20,4 +20,5 @@ ceph-rgw: - 0.1.17 Update htk requirements - 0.1.18 Consolidate mon_endpoints discovery - 0.1.19 Add ClusterRole to the bootstrap-job + - 0.1.20 Enable taint toleration for Openstack services jobs ...