diff options
| author | KubeEdge Bot <48982446+kubeedge-bot@users.noreply.github.com> | 2023-10-08 16:25:52 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-10-08 16:25:52 +0800 |
| commit | be4054af0ad89b4d89183cc033d4b6b3ba254e77 (patch) | |
| tree | d08d47d91903c2deba94cbf571e1f521c47c9570 /manifests | |
| parent | Merge pull request #5046 from zhiyingfang2022/fzy0922 (diff) | |
| parent | Make NodeUpgradeJob enable through the helm (diff) | |
| download | kubeedge-be4054af0ad89b4d89183cc033d4b6b3ba254e77.tar.gz | |
Merge pull request #5041 from WillardHu/upgrade-enable
Make NodeUpgradeJob enable through the helm
Diffstat (limited to 'manifests')
| -rw-r--r-- | manifests/charts/cloudcore/templates/configmap_cloudcore.yaml | 2 | ||||
| -rw-r--r-- | manifests/charts/cloudcore/values.yaml | 2 | ||||
| -rw-r--r-- | manifests/profiles/version.yaml | 2 |
3 files changed, 6 insertions, 0 deletions
diff --git a/manifests/charts/cloudcore/templates/configmap_cloudcore.yaml b/manifests/charts/cloudcore/templates/configmap_cloudcore.yaml index 774be612a..4c2b99eb1 100644 --- a/manifests/charts/cloudcore/templates/configmap_cloudcore.yaml +++ b/manifests/charts/cloudcore/templates/configmap_cloudcore.yaml @@ -53,3 +53,5 @@ data: iptablesManager: enable: {{ .Values.iptablesManager.enable }} mode: {{ .Values.iptablesManager.mode }} + nodeUpgradeJobController: + enable: {{ .Values.cloudCore.modules.nodeUpgradeJobController.enable }} diff --git a/manifests/charts/cloudcore/values.yaml b/manifests/charts/cloudcore/values.yaml index f3df934ac..04cc54a25 100644 --- a/manifests/charts/cloudcore/values.yaml +++ b/manifests/charts/cloudcore/values.yaml @@ -55,6 +55,8 @@ cloudCore: enable: false router: enable: false + nodeUpgradeJobController: + enable: false service: enable: true type: "NodePort" diff --git a/manifests/profiles/version.yaml b/manifests/profiles/version.yaml index a746d4330..e382be923 100644 --- a/manifests/profiles/version.yaml +++ b/manifests/profiles/version.yaml @@ -51,6 +51,8 @@ cloudCore: enable: false router: enable: false + nodeUpgradeJobController: + enable: false service: enable: false type: "NodePort" |
