diff options
author | Sylvain Desbureaux <sylvain.desbureaux@orange.com> | 2020-09-11 19:15:55 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-09-11 19:15:55 +0000 |
commit | 47befb7d30489984cde86ef6377a0e9b573d29d6 (patch) | |
tree | 960488f26b7884f1ad51667cdee842b7b060cd9b /kubernetes/oof | |
parent | 1a0ff537f9a01edbe92acfdaa7a670c78a07118c (diff) | |
parent | f122bbee32cb68007c8497d04637cd3618a4f2ab (diff) |
Merge "[OOF] Add limit to onboard and healthcheck jobs"
Diffstat (limited to 'kubernetes/oof')
-rwxr-xr-x | kubernetes/oof/charts/oof-has/templates/job-healthcheck.yaml | 2 | ||||
-rwxr-xr-x | kubernetes/oof/charts/oof-has/templates/job-onboard.yaml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/kubernetes/oof/charts/oof-has/templates/job-healthcheck.yaml b/kubernetes/oof/charts/oof-has/templates/job-healthcheck.yaml index c006eebf05..393a6bbf2e 100755 --- a/kubernetes/oof/charts/oof-has/templates/job-healthcheck.yaml +++ b/kubernetes/oof/charts/oof-has/templates/job-healthcheck.yaml @@ -76,7 +76,7 @@ spec: name: {{ .Values.global.commonConfigPrefix }}-config subPath: healthcheck.json resources: -{{ toYaml .Values.resources | indent 10 }} +{{ include "common.resources" . | indent 10 }} nodeSelector: {{- if .Values.nodeSelector }} {{ toYaml .Values.nodeSelector | indent 8 }} diff --git a/kubernetes/oof/charts/oof-has/templates/job-onboard.yaml b/kubernetes/oof/charts/oof-has/templates/job-onboard.yaml index 22cb5a17eb..a82435bccc 100755 --- a/kubernetes/oof/charts/oof-has/templates/job-onboard.yaml +++ b/kubernetes/oof/charts/oof-has/templates/job-onboard.yaml @@ -81,7 +81,7 @@ spec: name: {{ .Values.global.commonConfigPrefix }}-config subPath: onboard.json resources: -{{ toYaml .Values.resources | indent 10 }} +{{ include "common.resources" . | indent 10 }} nodeSelector: {{- if .Values.nodeSelector }} {{ toYaml .Values.nodeSelector | indent 8 }} |