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
8 changes: 8 additions & 0 deletions charts/coralogix-operator/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ spec:
serviceAccountName: {{ include "coralogixOperator.serviceAccountName" . }}
securityContext:
{{- toYaml .Values.securityContext | nindent 8 }}
{{- with .Values.volumes }}
volumes:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.affinity }}
affinity:
{{- toYaml . | nindent 8 }}
Expand Down Expand Up @@ -80,3 +84,7 @@ spec:
{{- toYaml .Values.coralogixOperator.resources | nindent 12 }}
securityContext:
{{- toYaml .Values.coralogixOperator.securityContext | nindent 12 }}
{{- with .Values.volumeMounts }}
volumeMounts:
{{- toYaml . | nindent 12 }}
{{- end }}
6 changes: 6 additions & 0 deletions charts/coralogix-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,12 @@ securityContext:
seccompProfile:
type: RuntimeDefault

# -- Additional volumes on the output Deployment definition.
volumes: []

# -- Additional volumeMounts on the output Deployment definition.
volumeMounts: []

# -- Define which Nodes the Pods are scheduled on.
# -- ref: https://kubernetes.io/docs/user-guide/node-selection/
nodeSelector: {}
Expand Down