File tree Expand file tree Collapse file tree 3 files changed +19
-1
lines changed Expand file tree Collapse file tree 3 files changed +19
-1
lines changed Original file line number Diff line number Diff line change 1
1
apiVersion : v1
2
2
name : minecraft-bedrock
3
- version : 2.5 .0
3
+ version : 2.6 .0
4
4
appVersion : SeeValues
5
5
home : https://minecraft.net/
6
6
description : Minecraft server
Original file line number Diff line number Diff line change 40
40
{{- end }}
41
41
{{- end }}
42
42
spec :
43
+ shareProcessNamespace : {{ .Values.shareProcessNamespace }}
43
44
{{- if .Values.image.pullSecret }}
44
45
imagePullSecrets :
45
46
- name : {{ .Values.image.pullSecret }}
@@ -193,6 +194,9 @@ spec:
193
194
{{- end }}
194
195
securityContext :
195
196
{{- toYaml .Values.securityContext | nindent 10 }}
197
+ {{- with .Values.sidecarContainers }}
198
+ {{- tpl . $ | nindent 6 }}
199
+ {{- end }}
196
200
volumes :
197
201
- name : tmp
198
202
emptyDir : {}
Original file line number Diff line number Diff line change @@ -53,6 +53,9 @@ livenessProbe:
53
53
readinessProbe :
54
54
initialDelaySeconds : 30
55
55
56
+ # https://kubernetes.io/docs/tasks/configure-pod-container/share-process-namespace/
57
+ shareProcessNamespace : false
58
+
56
59
# initContainers:
57
60
# - name: do-something
58
61
# image: busybox
@@ -63,6 +66,17 @@ readinessProbe:
63
66
# readOnly: true
64
67
initContainers : []
65
68
69
+ # # Enable an Specify container in sidecarContainers. To add a sidecar;
70
+ sidecarContainers : " "
71
+ # sidecarContainers: |
72
+ # - name: proxy
73
+ # image: "quay.io/my/favourite:image-tag
74
+ # args:
75
+ # - -setting1
76
+ # ports:
77
+ # - name: web
78
+ # containerPort: 8080
79
+
66
80
# extraVolumes:
67
81
# - volumeMounts:
68
82
# - name: nfs
You can’t perform that action at this time.
0 commit comments