Skip to content

Commit

Permalink
Use auroraboot image as tools image
Browse files Browse the repository at this point in the history
part of kairos-io/kairos#1633

Signed-off-by: Dimitris Karakasilis <[email protected]>
  • Loading branch information
jimmykarily committed Nov 14, 2024
1 parent 50beeb3 commit c01b847
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
4 changes: 2 additions & 2 deletions charts/osbuilder/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ spec:
- --health-probe-bind-address=:8081
- --metrics-bind-address=127.0.0.1:8080
- --leader-elect
- '--tool-image={{ .Values.image.toolsRepository | default "quay.io/kairos/osbuilder-tools" }}:{{ .Values.image.tag | default .Chart.AppVersion }}'
- '--tool-image={{ .Values.toolsImage.repository | default "quay.io/kairos/auroraboot" }}:{{ .Values.toolsImage.tag | default "latest" }}'
command:
- /manager
image: '{{ .Values.image.repository | default "quay.io/kairos/osbuilder" }}:{{ .Values.image.tag | default .Chart.AppVersion }}'
Expand Down Expand Up @@ -129,4 +129,4 @@ spec:
name: nginx-config
items:
- key: nginx.conf
path: default.conf
path: default.conf
7 changes: 5 additions & 2 deletions charts/osbuilder/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,13 @@ imagePullSecrets: []
image:
# controller image to be used. Leave empty to use
repository: ""
toolsRepository: ""
# image tag, leave empty to use chart's AppVersion
# tag of the controller image. Leave empty to use chart's AppVersion
tag: ""

toolsImage:
repository: "quay.io/kairos/auroraboot"
tag: "latest"

podAnnotations: {}
nodeSelector: {}
tolerations: []
Expand Down

0 comments on commit c01b847

Please sign in to comment.