enable deployment annotations, bump chart version (#21502)

Signed-off-by: Ryan Holt <ryan@ryanholt.net>
This commit is contained in:
Ryan Holt
2020-03-17 10:12:22 -07:00
committed by GitHub
parent 7a0bbcdff8
commit 9025b6c2c7
3 changed files with 9 additions and 1 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
apiVersion: v1
name: minecraft
version: 1.2.0
version: 1.2.1
appVersion: 1.14.4
home: https://minecraft.net/
description: Minecraft server
@@ -3,6 +3,12 @@ apiVersion: apps/v1
kind: Deployment
metadata:
name: {{ template "minecraft.fullname" . }}
{{- if .Values.deploymentAnnotations }}
annotations:
{{- range $key, $value := .Values.deploymentAnnotations }}
{{ $key }}: {{ $value | quote }}
{{- end }}
{{- end }}
labels:
app: {{ template "minecraft.fullname" . }}
chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
+2
View File
@@ -176,3 +176,5 @@ persistence:
Size: 1Gi
podAnnotations: {}
deploymentAnnotations: {}