Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions charts/wallet-gateway/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@ spec:
containers:
- name: wallet-gateway
image: "{{ .Values.image.repo }}/wallet-gateway:{{ .Values.image.tag | default (printf "v%s" .Chart.Version) }}"
imagePullPolicy: Always
ports:
- name: http
containerPort: 8080
containerPort: {{ .Values.config.server.port }}
readinessProbe:
httpGet:
path: /readyz
Expand All @@ -40,7 +41,8 @@ spec:
cpu: "500m"
volumeMounts:
- name: config
mountPath: /app
mountPath: /app/config.json
subPath: config.json
volumes:
- name: config
configMap:
Expand Down