diff options
author | Borislav Glozman <Borislav.Glozman@amdocs.com> | 2019-02-25 10:24:23 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-02-25 10:24:23 +0000 |
commit | 03d0e528dadc44118e61773f3dc9d3ab58844573 (patch) | |
tree | f809d0e1686ae22f199a303bf09f95ab73a0ac47 /kubernetes/aai/templates/deployment.yaml | |
parent | 91a7fd0f6715153591e9ad4608fffb13f004fb9e (diff) | |
parent | cb25a53fd01e135a07505051de4111d34b600b38 (diff) |
Merge "Fix nodeSlector and Affinity for aai charts"
Diffstat (limited to 'kubernetes/aai/templates/deployment.yaml')
-rw-r--r-- | kubernetes/aai/templates/deployment.yaml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kubernetes/aai/templates/deployment.yaml b/kubernetes/aai/templates/deployment.yaml index 1f337e4374..17680a0b96 100644 --- a/kubernetes/aai/templates/deployment.yaml +++ b/kubernetes/aai/templates/deployment.yaml @@ -101,14 +101,14 @@ spec: initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }} periodSeconds: {{ .Values.readiness.periodSeconds }} resources: -{{ include "common.resources" . | indent 12 }} +{{ include "common.resources" . }} {{- if .Values.nodeSelector }} nodeSelector: -{{ toYaml .Values.nodeSelector | indent 10 }} +{{ toYaml .Values.nodeSelector | indent 8 }} {{- end -}} {{- if .Values.affinity }} affinity: -{{ toYaml .Values.affinity | indent 10 }} +{{ toYaml .Values.affinity | indent 8 }} {{- end }} volumes: |