Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use auroraboot image as tools image #22

Merged
merged 4 commits into from
Nov 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
check-latest: true

- name: Set up chart-testing
uses: helm/chart-testing-action@v2.4.0
uses: helm/chart-testing-action@v2.6.1

- name: Run chart-testing (list-changed)
id: list-changed
Expand Down
2 changes: 1 addition & 1 deletion charts/kairos-crds/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ home: https://kairos.io/
maintainers:
- name: Ettore Di Giacinto
email: [email protected]
version: 0.0.14
version: 0.0.15
14,578 changes: 6,939 additions & 7,639 deletions charts/kairos-crds/templates/osbuilder.yaml

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions charts/osbuilder/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ maintainers:
- name: Ettore Di Giacinto
email: [email protected]

version: 0.6.0
appVersion: "v0.7.0"
version: 0.7.0
appVersion: "v0.401.0"
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
Loading