Skip to content

Commit

Permalink
fix(charts): add temporary emptyDir volume to the controlplane charts (
Browse files Browse the repository at this point in the history
  • Loading branch information
wolf4ood authored Jul 5, 2023
1 parent 3ea1fe9 commit 7d99e4d
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,8 @@ spec:
- name: "configuration"
mountPath: "/app/logging.properties"
subPath: "logging.properties"
- name: "tmp"
mountPath: "/tmp"
volumes:
- name: "configuration"
configMap:
Expand All @@ -217,6 +219,8 @@ spec:
path: "opentelemetry.properties"
- key: "logging.properties"
path: "logging.properties"
- name: "tmp"
emptyDir: { }
{{- with .Values.dataplane.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -276,13 +276,17 @@ spec:
- name: "configuration"
mountPath: "/app/logging.properties"
subPath: "logging.properties"
- name: "tmp"
mountPath: "/tmp"
volumes:
- name: "configuration"
configMap:
name: {{ include "txdc.fullname" . }}-runtime
items:
- key: "logging.properties"
path: "logging.properties"
- name: "tmp"
emptyDir: { }
{{- with .Values.runtime.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -335,6 +335,8 @@ spec:
- name: "configuration"
mountPath: "/app/logging.properties"
subPath: "logging.properties"
- name: "tmp"
mountPath: "/tmp"
volumes:
- name: "configuration"
configMap:
Expand All @@ -344,6 +346,8 @@ spec:
path: "opentelemetry.properties"
- key: "logging.properties"
path: "logging.properties"
- name: "tmp"
emptyDir: { }
{{- with .Values.controlplane.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}
Expand Down
3 changes: 0 additions & 3 deletions docs/samples/example-dataspace/plato-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,6 @@ dataplane:
pullPolicy: Never
tag: "latest"
repository: "edc-dataplane-hashicorp-vault"
securityContext:
# avoids some errors in the log: cannot write temp files of large multipart requests when R/O
readOnlyRootFilesystem: false
aws:
endpointOverride: http://minio:9000
secretAccessKey: qwerty123
Expand Down
3 changes: 0 additions & 3 deletions docs/samples/example-dataspace/sokrates-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,6 @@ controlplane:
pullPolicy: Never
tag: "latest"
repository: "edc-controlplane-postgresql-hashicorp-vault"
securityContext:
# avoids some errors in the log: cannot write temp files of large multipart requests when R/O
readOnlyRootFilesystem: false
# SSI configuration
ssi:
miw:
Expand Down

0 comments on commit 7d99e4d

Please sign in to comment.