Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(charts): add temporary emptyDir volume to the controlplane charts #564

Merged
merged 1 commit into from
Jul 5, 2023
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
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
wolf4ood marked this conversation as resolved.
Show resolved Hide resolved
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