fixed podSecurityContext (#675)

buddies-main-deployment
Conner Swann 3 years ago committed by GitHub
parent 6be7b014cb
commit f6f9404cb6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      rust/helm/optics-agent/templates/configmap.yaml
  2. 2
      rust/helm/optics-agent/templates/kathy-statefulset.yaml
  3. 2
      rust/helm/optics-agent/templates/processor-statefulset.yaml
  4. 2
      rust/helm/optics-agent/templates/relayer-statefulset.yaml
  5. 2
      rust/helm/optics-agent/templates/updater-statefulset.yaml
  6. 4
      rust/helm/optics-agent/values.yaml

@ -12,7 +12,7 @@ data:
AWS_SECRET_ACCESS_KEY: {{ .Values.optics.aws.secretAccessKey }}
{{- end }}
RUST_BACKTRACE: {{ .Values.optics.rustBacktrace }}
OPT_BASE_DBPATH: {{ .Values.optics.dbPath }}
OPT_BASE_DB: {{ .Values.optics.dbPath }}
OPT_BASE_TRACING_FMT: {{ .Values.optics.tracing.format }}
OPT_BASE_TRACING_LEVEL: {{ .Values.optics.tracing.level }}
{{- if .Values.optics.homeChain.connectionUrl }}

@ -38,6 +38,8 @@ spec:
{{- toYaml . | nindent 8 }}
{{- end }}
terminationGracePeriodSeconds: 10
securityContext:
{{- toYaml .Values.podSecurityContext | nindent 8 }}
containers:
- name: {{ .Chart.Name }}
securityContext:

@ -38,6 +38,8 @@ spec:
{{- toYaml . | nindent 8 }}
{{- end }}
terminationGracePeriodSeconds: 10
securityContext:
{{- toYaml .Values.podSecurityContext | nindent 8 }}
containers:
- name: agent
securityContext:

@ -38,6 +38,8 @@ spec:
{{- toYaml . | nindent 8 }}
{{- end }}
terminationGracePeriodSeconds: 10
securityContext:
{{- toYaml .Values.podSecurityContext | nindent 8 }}
containers:
- name: agent
securityContext:

@ -38,6 +38,8 @@ spec:
{{- toYaml . | nindent 8 }}
{{- end }}
terminationGracePeriodSeconds: 10
securityContext:
{{- toYaml .Values.podSecurityContext | nindent 8 }}
containers:
- name: agent
securityContext:

@ -174,8 +174,8 @@ optics:
recipient: # "recipient"
type: # "static"
podSecurityContext: {}
# fsGroup: 2000
podSecurityContext:
fsGroup: 2000
securityContext: {}
# capabilities:

Loading…
Cancel
Save