upgrade template

This commit is contained in:
devpi
2020-12-13 03:36:23 +00:00
parent 394d1ae49b
commit 6beab6c06e
19 changed files with 369 additions and 26 deletions

View File

@@ -13,7 +13,11 @@ spec:
spec:
containers:
- name: {{ .Release.Name }}
image: {{ .Values.image }}:{{ .Values.tag }}
image: {{ .Values.image }}
volumeMounts:
- mountPath: /www/config.yml
name: config
subPath: config.yml
resources:
limits:
memory: "128Mi"
@@ -22,4 +26,8 @@ spec:
memory: "64Mi"
cpu: "1m"
ports:
- containerPort: 8080
- containerPort: 8080
volumes:
- name: config
configMap:
name: {{ .Release.Name }}