Skip to content

Commit

Permalink
Enable custom installerImages
Browse files Browse the repository at this point in the history
  • Loading branch information
0xE282B0 committed Jun 8, 2023
1 parent 4592ae0 commit a7a1eb7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions charts/kwasm-operator/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.2.1
version: 0.2.2

# 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.2.1"
appVersion: "0.2.2"
2 changes: 2 additions & 0 deletions charts/kwasm-operator/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ spec:
value: {{ .Release.Namespace }}
- name: AUTO_PROVISION_NODES
value: {{ .Values.kwasmOperator.autoProvision | quote }}
- name: INSTALLER_IMAGE
value: {{ .Values.kwasmOperator.installerImage | quote }}
securityContext:
{{- toYaml .Values.securityContext | nindent 12 }}
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
Expand Down
3 changes: 2 additions & 1 deletion charts/kwasm-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,15 @@ image:
repository: ghcr.io/kwasm/kwasm-operator
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: kwasm-operator-0.2.1
tag: kwasm-operator-0.2.2

imagePullSecrets: []
nameOverride: ""
fullnameOverride: ""

kwasmOperator:
autoProvision: "false"
installerImage: "ghcr.io/kwasm/kwasm-node-installer:main"

serviceAccount:
# Specifies whether a service account should be created
Expand Down

0 comments on commit a7a1eb7

Please sign in to comment.