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 temp volume for tmp directory #568

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 @@ -337,6 +337,8 @@ spec:
- name: "configuration"
mountPath: "/app/logging.properties"
subPath: "logging.properties"
- name: "tmp"
mountPath: "/tmp"
volumes:
- name: "configuration"
configMap:
Expand All @@ -346,6 +348,8 @@ spec:
path: "opentelemetry.properties"
- key: "logging.properties"
path: "logging.properties"
- name: "tmp"
emptyDir: { }
{{- with .Values.controlplane.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}
Expand Down
4 changes: 4 additions & 0 deletions charts/tractusx-connector/templates/deployment-dataplane.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,8 @@ spec:
- name: "configuration"
mountPath: "/app/logging.properties"
subPath: "logging.properties"
- name: "tmp"
mountPath: "/tmp"
volumes:
- name: "configuration"
configMap:
Expand All @@ -216,6 +218,8 @@ spec:
path: "opentelemetry.properties"
- key: "logging.properties"
path: "logging.properties"
- name: "tmp"
emptyDir: { }
{{- with .Values.dataplane.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}
Expand Down
2 changes: 0 additions & 2 deletions docs/samples/example-dataspace/plato-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,6 @@ controlplane:
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
2 changes: 0 additions & 2 deletions docs/samples/example-dataspace/sokrates-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,6 @@ dataplane:
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