Skip to content

Commit

Permalink
update embedded chart
Browse files Browse the repository at this point in the history
  • Loading branch information
dmolik committed Aug 27, 2024
1 parent aa97303 commit 3f1c4c7
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 7 deletions.
2 changes: 0 additions & 2 deletions config/chart/crds/valkey-crd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,11 +76,9 @@ spec:
description: Cluster Domain - used for DNS
type: string
exporterImage:
default: docker.io/bitnami/redis-exporter:1.62.0-debian-12-r2
description: Exporter Image to use
type: string
image:
default: docker.io/bitnami/valkey-cluster:7.2.6-debian-12-r0
description: Image to use
type: string
nodes:
Expand Down
11 changes: 11 additions & 0 deletions config/chart/templates/config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
apiVersion: v1
kind: ConfigMap
metadata:
name: {{ include "chart.fullname" . }}-config
labels:
control-plane: controller-manager
{{- include "chart.labels" . | nindent 4 }}
data:
exporterImage: {{ .Values.config.exporterImage | quote }}
nodes: {{ .Values.config.nodes | quote }}
valkeyImage: {{ .Values.config.valkeyImage | quote }}
8 changes: 6 additions & 2 deletions config/chart/values.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
config:
exporterImage: docker.io/bitnami/redis-exporter:1.62.0-debian-12-r2
nodes: "3"
valkeyImage: docker.io/bitnami/valkey-cluster:7.2.6-debian-12-r0
controllerManager:
manager:
args:
Expand All @@ -9,8 +13,8 @@ controllerManager:
drop:
- ALL
image:
repository: localhost:5000/controller
tag: "6"
repository: ghcr.io/hyperspike/valkey-operator
tag: v0.0.19
resources:
limits:
cpu: 500m
Expand Down
4 changes: 2 additions & 2 deletions config/manager/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
images:
- name: controller
newName: localhost:5000/controller
newTag: "13"
newName: ghcr.io/hyperspike/valkey-operator
newTag: v0.0.19
2 changes: 1 addition & 1 deletion dist/install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -952,7 +952,7 @@ spec:
- --health-probe-bind-address=:8081
command:
- /manager
image: localhost:5000/controller:13
image: ghcr.io/hyperspike/valkey-operator:v0.0.19
livenessProbe:
httpGet:
path: /healthz
Expand Down

0 comments on commit 3f1c4c7

Please sign in to comment.