Skip to content

Commit

Permalink
chore: Update Container Resource Specifications
Browse files Browse the repository at this point in the history
  • Loading branch information
Salaton committed Nov 14, 2023
1 parent 13fd100 commit 32bc464
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions deploy/charts/mycarehub-multitenant/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,20 +26,20 @@ spec:
{{- end }}
securityContext:
{{- toYaml .Values.podSecurityContext | nindent 8 }}
resources:
limits:
cpu: {{ .Values.app.resources.limits.cpu }}
memory: {{ .Values.app.resources.limits.memory }}
requests:
cpu: {{ .Values.app.resources.limits.cpu }}
memory: {{ .Values.app.resources.limits.memory }}

containers:
- name: {{ .Chart.Name }}
securityContext:
{{- toYaml .Values.securityContext | nindent 12 }}
image: {{ .Values.app.container.image }}
imagePullPolicy: {{ .Values.app.container.imagePullPolicy }}
resources:
limits:
cpu: {{ .Values.app.resources.limits.cpu }}
memory: {{ .Values.app.resources.limits.memory }}
requests:
cpu: {{ .Values.app.resources.limits.cpu }}
memory: {{ .Values.app.resources.limits.memory }}

ports:
- name: http
containerPort: {{ .Values.service.port }}
Expand Down

0 comments on commit 32bc464

Please sign in to comment.