Skip to content

Commit

Permalink
chore(influxdb3-clustered): configure kubit images (#702)
Browse files Browse the repository at this point in the history
* feat(influxdb3-clustered): configure kubit images

* chore(influxdb3-clustered): increment chart version
  • Loading branch information
bnpfeife authored Jan 28, 2025
1 parent ec62b46 commit 3f94d31
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 1 deletion.
2 changes: 1 addition & 1 deletion charts/influxdb3-clustered/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
type: application

version: 0.1.10
version: 0.1.11
appVersion: "20241217-1494922"
name: influxdb3-clustered
description: InfluxDB 3.0 Clustered
Expand Down
12 changes: 12 additions & 0 deletions charts/influxdb3-clustered/templates/kubit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,18 @@ spec:
{{- end}}
- name: KUBIT_CONTROLLER_IMAGE
value: "{{.Values.operatorImageOverride | default "ghcr.io/kubecfg/kubit"}}:{{.Values.operatorImageVersion}}"
{{- if .Values.kubit.apply_step_image}}
- name: KUBIT_APPLY_STEP_KUBECTL_IMAGE
value: "{{.Values.kubit.apply_step_image}}"
{{- end}}
{{- if .Values.kubit.render_step_image}}
- name: KUBIT_RENDER_STEP_KUBECTL_IMAGE
value: "{{.Values.kubit.render_step_image}}"
{{- end}}
{{- if .Values.kubit.kubecfg_image}}
- name: KUBIT_KUBECFG_IMAGE
value: "{{.Values.kubit.kubecfg_image}}"
{{- end}}
image: "{{.Values.operatorImageOverride | default "ghcr.io/kubecfg/kubit"}}:{{.Values.operatorImageVersion}}"
livenessProbe:
httpGet:
Expand Down
8 changes: 8 additions & 0 deletions charts/influxdb3-clustered/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -231,3 +231,11 @@ observability: {}
# serviceMonitor:
# interval: 10s
# scrapeTimeout: 30s

kubit: {}
# If your cluster is unable to pull docker images from the internet
# (e.g docker.io), you will need to override the docker images that
# the kubit operator uses to preform tasks.
# apply_step_image: ""
# render_step_image: ""
# kubecfg_image: ""

0 comments on commit 3f94d31

Please sign in to comment.