Skip to content

Commit

Permalink
simple-cronjob: 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
elephantum committed Jul 8, 2024
1 parent 6cadadb commit 288423c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 15 deletions.
14 changes: 1 addition & 13 deletions charts/simple-cronjob/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,6 @@
# 0.1.4

* Synchonize volumes configuration between simple-app and simple-worker

# 0.1.3

* Synchronize fullname generation between simple-app and simple-worker

# 0.1.2

* Name container the same as release (helps to read logs in GCP)

# 0.1.1

* Add option to mount existing secrets and config maps as volume
* Fix for PVC creation in case of volumes `secret` and `configMap` types

# 0.1.0

Expand Down
2 changes: 1 addition & 1 deletion charts/simple-cronjob/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.0"
version: "0.1.1"

# 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-cronjob/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 288423c

Please sign in to comment.