Skip to content

Commit

Permalink
simple-worker: 0.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
elephantum committed Jul 8, 2024
1 parent 288423c commit 145ed3d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions charts/simple-worker/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 0.1.5

* Fix for PVC creation in case of volumes `secret` and `configMap` types

# 0.1.4

* Synchonize volumes configuration between simple-app and simple-worker
Expand Down
2 changes: 1 addition & 1 deletion charts/simple-worker/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ 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.1.4"
version: "0.1.5"

# 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
Expand Down
2 changes: 1 addition & 1 deletion charts/simple-worker/templates/pvc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{{- $labels := include "simple-app.labels" . | nindent 4 -}}

{{ range .Values.volumes }}
{{- if not .emptyDir }}
{{- if and (not .emptyDir) (and (not .secret) (not .configMap)) }}
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
Expand Down

0 comments on commit 145ed3d

Please sign in to comment.