diff options
author | Krzysztof Opasiak <k.opasiak@samsung.com> | 2020-05-07 10:08:24 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-05-07 10:08:24 +0000 |
commit | 942e8f8450f06dc2f20d6c3b5dc28a62ef524770 (patch) | |
tree | 1651fd0f1e019edf6571545567bc2c08c0626e6f /kubernetes/common | |
parent | f7591a5a90a005e825fddb4de73da62d55d6cb70 (diff) | |
parent | 8f9ef350ce5f3ea446e526105c0251393782d38a (diff) |
Merge "[AAF] v1.16+ compatible templates"
Diffstat (limited to 'kubernetes/common')
-rw-r--r-- | kubernetes/common/common/templates/_aafconfig.tpl | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/kubernetes/common/common/templates/_aafconfig.tpl b/kubernetes/common/common/templates/_aafconfig.tpl index 0c78cc11b9..e90f8aea5d 100644 --- a/kubernetes/common/common/templates/_aafconfig.tpl +++ b/kubernetes/common/common/templates/_aafconfig.tpl @@ -76,6 +76,13 @@ fieldRef: apiVersion: v1 fieldPath: metadata.namespace + resources: + limits: + cpu: 100m + memory: 100Mi + requests: + cpu: 3m + memory: 20Mi - name: {{ include "common.name" $dot }}-aaf-config image: {{ (default $dot.Values.repository $dot.Values.global.repository) }}/{{ $dot.Values.global.aafAgentImage }} imagePullPolicy: {{ $dot.Values.global.pullPolicy | default $dot.Values.pullPolicy }} @@ -121,6 +128,13 @@ #Hello specific. Clients don't don't need this, unless Registering with AAF Locator - name: aaf_locator_public_fqdn value: "{{ $aafRoot.public_fqdn | default "" }}" + resources: + limits: + cpu: 100m + memory: 100Mi + requests: + cpu: 3m + memory: 20Mi {{- end -}} {{- end -}} |