File tree 2 files changed +7
-3
lines changed
2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v2
2
2
name : seashell
3
3
description : A tool that provides a shell to debug Kubernetes workloads
4
4
type : application
5
- version : 0.3.0
5
+ version : 0.3.1
6
6
appVersion : 0.1
7
7
keywords :
8
8
- debug
Original file line number Diff line number Diff line change @@ -43,12 +43,16 @@ spec:
43
43
- name : kubernetes
44
44
mountPath : /etc/kubernetes
45
45
readOnly : true
46
- {{- toYaml .Values.extraVolumeMounts | nindent 12}}
46
+ {{- with .Values.extraVolumeMounts }}
47
+ {{- toYaml . | nindent 12}}
48
+ {{- end }}
47
49
volumes :
48
50
- name : kubernetes
49
51
hostPath :
50
52
path : /etc/kubernetes
51
- {{- toYaml .Values.extraVolumes | nindent 8 }}
53
+ {{- with .Values.extraVolumes }}
54
+ {{- toYaml . | nindent 8}}
55
+ {{- end }}
52
56
{{- with .Values.nodeSelector }}
53
57
nodeSelector :
54
58
{{- toYaml . | nindent 8 }}
You can’t perform that action at this time.
0 commit comments