Skip to content

Commit

Permalink
Merge pull request #85 from corify-devops/main
Browse files Browse the repository at this point in the history
feat(initContainer): added initContainer tag and image overrides
  • Loading branch information
aghamyan44 authored Dec 5, 2023
2 parents 9751eea + 4fceb0d commit 22d47fc
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
4 changes: 2 additions & 2 deletions charts/base/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.1.52
version: 0.1.53

# 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.1.52"
appVersion: "0.1.53"
1 change: 1 addition & 0 deletions charts/base/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ spec:
{{- if .Values.initContainers }}
initContainers:
{{- toYaml .Values.initContainers | nindent 6 }}
image: {{ .Values.initContainer.image }}:{{ .Values.initContainer.tag }}
{{- end }}
{{- if .Values.topologySpreadConstraints }}
topologySpreadConstraints:
Expand Down
4 changes: 4 additions & 0 deletions charts/base/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ image:
# Overrides the image tag whose default is the chart appVersion.
tag: 1.21

# initContainer:
# image: busybox
# tag: 1.28

imagePullSecrets: []
nameOverride: ""
fullnameOverride: ""
Expand Down

0 comments on commit 22d47fc

Please sign in to comment.