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

added option to select the image repository and tag for remaining images #25

Merged
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 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.7.0
version: 0.7.1
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 @@ -29,7 +29,7 @@ spec:
- --upstream=http://127.0.0.1:8080/
- --logtostderr=true
- --v=0
image: gcr.io/kubebuilder/kube-rbac-proxy:v0.11.0
image: '{{ .Values.kubeRbacProxyImage.repository }}:{{ .Values.kubeRbacProxyImage.tag }}'
name: kube-rbac-proxy
ports:
- containerPort: 8443
Expand Down Expand Up @@ -106,7 +106,7 @@ spec:
app.kubernetes.io/name: osbuilder-nginx
spec:
containers:
- image: nginx
- image: '{{ .Values.nginx.image.repository }}:{{ .Values.nginx.image.tag }}'
name: nginx
ports:
- containerPort: 80
Expand Down
7 changes: 6 additions & 1 deletion charts/osbuilder/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ image:
repository: ""
# tag of the controller image. Leave empty to use chart's AppVersion
tag: ""

kubeRbacProxyImage:
repository: "gcr.io/kubebuilder/kube-rbac-proxy"
tag: "v0.11.0"
toolsImage:
repository: "quay.io/kairos/auroraboot"
tag: "latest"
Expand All @@ -38,6 +40,9 @@ tls:

nginx:
pvcSize: 3Gi
image:
repository: "nginx"
tag: "latest"

## Resource limits & requests
## Ref: https://kubernetes.io/docs/user-guide/compute-resources/
Expand Down
Loading