Skip to content

Commit

Permalink
Merge pull request #382 from kubesphere/sync/ks-core
Browse files Browse the repository at this point in the history
Update ks-core helm chart
  • Loading branch information
wansir committed Apr 1, 2024
2 parents 47ab858 + d643ea7 commit a9612b6
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/test/ks-core/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,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.6.20
version: 0.6.21

# 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 src/test/ks-core/templates/post-upgrade-job.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{- if not .Values.upgrade.disabled }}
{{- if .Values.upgrade.enabled }}
apiVersion: batch/v1
kind: Job
metadata:
Expand Down
2 changes: 1 addition & 1 deletion src/test/ks-core/templates/pre-upgrade-job.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{- if not .Values.upgrade.disabled }}
{{- if .Values.upgrade.enabled }}
{{- if .Values.upgrade.config }}
apiVersion: v1
kind: ConfigMap
Expand Down
2 changes: 2 additions & 0 deletions src/test/ks-core/templates/prepare-upgrade-job.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{{- if .Values.upgrade.enabled }}
{{- if .Values.upgrade.prepare }}
{{- if .Values.upgrade.config }}
apiVersion: v1
Expand Down Expand Up @@ -47,4 +48,5 @@ spec:
name: ks-upgrade-prepare-config
defaultMode: 420
{{- end }}
{{- end }}
{{- end }}
3 changes: 2 additions & 1 deletion src/test/ks-core/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,7 @@ agent:

helmExecutor:
timeout: 5m
historyMax: 5
image:
registry: ""
repository: kubesphereio/kubectl
Expand Down Expand Up @@ -315,7 +316,7 @@ hook:
memory: 100Mi

upgrade:
disabled: false
enabled: true
image:
registry: ""
repository: kse/ks-upgrade
Expand Down

0 comments on commit a9612b6

Please sign in to comment.