Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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: 5 additions & 1 deletion charts/bugsink/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,13 @@ spec:
{{- end }}
{{- with .Values.volumeMounts }}
volumeMounts:
{{ toYaml . | nindent 12 }}
{{- toYaml . | nindent 12 }}
{{- end }}
{{- include "bugsink.env" . | nindent 10 }}
{{- with .Values.volumes }}
volumes:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}
Expand Down
16 changes: 16 additions & 0 deletions charts/bugsink/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -229,3 +229,19 @@ extraEnv:
# Existing secrets holding the environment variables.
secretRefs: [ ]
# - name: my-secret

# Additional volumes to add to the Pod spec.
volumes: []
# - name: my-emptydir-volume
# emptyDir: {}
# - name: my-configmap-volume
# configMap:
# name: my-configmap

# Additional volume mounts to add to the container.
volumeMounts: []
# - name: my-emptydir-volume
# mountPath: /mnt/data
# - name: my-configmap-volume
# mountPath: /etc/config
# readOnly: true
Loading