diff options
Diffstat (limited to 'charts/aai-babel')
-rw-r--r-- | charts/aai-babel/Chart.yaml | 2 | ||||
-rw-r--r-- | charts/aai-babel/requirements.yaml | 2 | ||||
-rw-r--r-- | charts/aai-babel/templates/deployment.yaml | 2 | ||||
-rw-r--r-- | charts/aai-babel/values.yaml | 1 |
4 files changed, 4 insertions, 3 deletions
diff --git a/charts/aai-babel/Chart.yaml b/charts/aai-babel/Chart.yaml index d17b44a..d0311c1 100644 --- a/charts/aai-babel/Chart.yaml +++ b/charts/aai-babel/Chart.yaml @@ -16,4 +16,4 @@ apiVersion: v1 description: Babel microservice name: aai-babel -version: 2.0.0 +version: 3.0.0 diff --git a/charts/aai-babel/requirements.yaml b/charts/aai-babel/requirements.yaml index 645b7bd..6566196 100644 --- a/charts/aai-babel/requirements.yaml +++ b/charts/aai-babel/requirements.yaml @@ -15,7 +15,7 @@ dependencies: - name: common - version: ~2.0.0 + version: ~3.0.0 # local reference to common chart, as it is # a part of this chart's package and will not # be published independently to a repo (at this point) diff --git a/charts/aai-babel/templates/deployment.yaml b/charts/aai-babel/templates/deployment.yaml index 2f8f60f..c2aa6e4 100644 --- a/charts/aai-babel/templates/deployment.yaml +++ b/charts/aai-babel/templates/deployment.yaml @@ -85,7 +85,7 @@ spec: name: {{ include "common.fullname" . }}-config subPath: logback.xml resources: -{{ toYaml (pluck .Values.flavor .Values.resources| first) | indent 12 }} +{{ include "common.resources" . | indent 12 }} {{- if .Values.nodeSelector }} nodeSelector: {{ toYaml .Values.nodeSelector | indent 10 }} diff --git a/charts/aai-babel/values.yaml b/charts/aai-babel/values.yaml index 01b4dfc..59c3366 100644 --- a/charts/aai-babel/values.yaml +++ b/charts/aai-babel/values.yaml @@ -78,3 +78,4 @@ resources: requests: cpu: 4 memory: 8Gi + unlimited: {} |