Skip to content

Commit

Permalink
removed tmp volume from chart
Browse files Browse the repository at this point in the history
  • Loading branch information
babymotte committed Jul 10, 2024
1 parent 061f334 commit e8cb5e7
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 20 deletions.
4 changes: 2 additions & 2 deletions chart/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.43.7
version: 0.43.8

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "0.43.7"
appVersion: "0.43.8"
5 changes: 0 additions & 5 deletions chart/templates/deployment.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,6 @@ spec:
- name: {{ include "worterbuch.fullname" . }}
persistentVolumeClaim:
claimName: {{ include "worterbuch.fullname" . }}
- name: temp
persistentVolumeClaim:
claimName: temp
{{- end }}
containers:
- name: {{ .Chart.Name }}
Expand Down Expand Up @@ -78,8 +75,6 @@ spec:
volumeMounts:
- mountPath: "/data"
name: {{ include "worterbuch.fullname" . }}
- mountPath: "/tmp"
name: temp
{{- end }}
{{- with .Values.nodeSelector }}
nodeSelector:
Expand Down
13 changes: 0 additions & 13 deletions chart/templates/pvc.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,3 @@ spec:
resources:
requests:
storage: {{ $size }}
---
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: temp
spec:
storageClassName: local-path
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 10M
{{- end }}

0 comments on commit e8cb5e7

Please sign in to comment.