Skip to content

Commit

Permalink
fix: add temp-fs to container
Browse files Browse the repository at this point in the history
  • Loading branch information
ReuDa committed May 12, 2023
1 parent cbcc146 commit 72efa36
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 5 deletions.
2 changes: 1 addition & 1 deletion charts/steadybit-extension-postman/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
name: steadybit-extension-postman
description: Steadybit Postman extension Helm chart for Kubernetes.
version: 1.6.10
version: 1.6.11
appVersion: latest
home: https://www.steadybit.com/
icon: https://steadybit-website-assets.s3.amazonaws.com/logo-symbol-transparent.png
Expand Down
4 changes: 4 additions & 0 deletions charts/steadybit-extension-postman/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ spec:
{{- toYaml . | nindent 12 }}
{{- end }}
volumeMounts:
- name: tmp-dir
mountPath: /tmp
{{- include "extensionlib.deployment.volumeMounts" (list .) | nindent 12 }}
livenessProbe:
httpGet:
Expand All @@ -53,6 +55,8 @@ spec:
runAsUser: 10000
runAsGroup: 10000
volumes:
- name: tmp-dir
emptyDir: { }
{{- include "extensionlib.deployment.volumes" (list .) | nindent 8 }}
{{- with .Values.nodeSelector }}
nodeSelector:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,14 @@ manifest should match snapshot with TLS:
runAsNonRoot: true
runAsUser: 10000
volumeMounts:
- mountPath: /tmp
name: tmp-dir
- mountPath: /etc/extension/certificates/server-cert
name: certificate-server-cert
readOnly: true
volumes:
- emptyDir: {}
name: tmp-dir
- name: certificate-server-cert
secret:
optional: false
Expand Down Expand Up @@ -112,8 +116,12 @@ manifest should match snapshot with extra env vars:
runAsGroup: 10000
runAsNonRoot: true
runAsUser: 10000
volumeMounts: null
volumes: null
volumeMounts:
- mountPath: /tmp
name: tmp-dir
volumes:
- emptyDir: {}
name: tmp-dir
manifest should match snapshot with mutual TLS:
1: |
apiVersion: apps/v1
Expand Down Expand Up @@ -168,13 +176,17 @@ manifest should match snapshot with mutual TLS:
runAsNonRoot: true
runAsUser: 10000
volumeMounts:
- mountPath: /tmp
name: tmp-dir
- mountPath: /etc/extension/certificates/client-cert-a
name: certificate-client-cert-a
readOnly: true
- mountPath: /etc/extension/certificates/server-cert
name: certificate-server-cert
readOnly: true
volumes:
- emptyDir: {}
name: tmp-dir
- name: certificate-client-cert-a
secret:
optional: false
Expand Down Expand Up @@ -230,5 +242,9 @@ manifest should match snapshot without TLS:
runAsGroup: 10000
runAsNonRoot: true
runAsUser: 10000
volumeMounts: null
volumes: null
volumeMounts:
- mountPath: /tmp
name: tmp-dir
volumes:
- emptyDir: {}
name: tmp-dir

0 comments on commit 72efa36

Please sign in to comment.