File tree 5 files changed +12
-12
lines changed
5 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 34
34
- name : Install Go
35
35
uses : actions/setup-go@v5
36
36
with :
37
- go-version : 1.22
37
+ go-version : 1.23
38
38
check-latest : true
39
39
- name : Build Installer
40
40
run : make build-installer IMG=ghcr.io/hyperspike/valkey-operator:${{ github.ref_name }}
60
60
- name : Install Go
61
61
uses : actions/setup-go@v5
62
62
with :
63
- go-version : 1.22
63
+ go-version : 1.23
64
64
check-latest : true
65
65
- name : Log in to the Container registry
66
66
uses : docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567
Original file line number Diff line number Diff line change @@ -33,5 +33,5 @@ go.work
33
33
blank.yaml
34
34
cilium /
35
35
manager
36
- valkey-operator-chart /
37
- valkey-operator-chart- * .tgz
36
+ valkey-operator /
37
+ valkey-operator- * -chart .tgz
Original file line number Diff line number Diff line change @@ -200,15 +200,15 @@ HELM_VERSION ?= v3.15.4
200
200
GOSEC_VERSION ?= v2.20.0
201
201
202
202
helm-gen : manifests kustomize helmify # # Generate Helm chart from Kustomize manifests
203
- $Q $(KUSTOMIZE ) build config/default | $(HELMIFY ) -crd-dir valkey-operator-chart
204
- $Qsed s@\\\( app.kubernetes.io/name\\\) @\'\\\1\' @ -i valkey-operator-chart /templates/deployment.yaml
205
- $Qsed s@\\\( app.kubernetes.io/instance\\\) @\'\\\1\' @ -i valkey-operator-chart /templates/deployment.yaml
203
+ $Q $(KUSTOMIZE ) build config/default | $(HELMIFY ) -crd-dir valkey-operator
204
+ $Qsed s@\\\( app.kubernetes.io/name\\\) @\'\\\1\' @ -i valkey-operator/templates/deployment.yaml
205
+ $Qsed s@\\\( app.kubernetes.io/instance\\\) @\'\\\1\' @ -i valkey-operator/templates/deployment.yaml
206
206
207
207
helm-package : helm-gen helm # # Package Helm chart
208
- $Q $(HELM ) package valkey-operator-chart --app-version $(VERSION ) --version $(VERSION )
208
+ $Q $(HELM ) package valkey-operator --app-version $(VERSION ) --version $(VERSION ) -chart
209
209
210
210
helm-publish : helm-package # # Publish Helm chart
211
- $Q $(HELM ) push valkey-operator-chart- $(VERSION ) .tgz oci://ghcr.io/hyperspike
211
+ $Q $(HELM ) push valkey-operator-$(VERSION ) -chart .tgz oci://ghcr.io/hyperspike
212
212
213
213
.PHONY : minikube tunnel registry-proxy prometheus-proxy
214
214
minikube : # # Spool up a local minikube cluster for development
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ curl -sL https://github.com/hyperspike/valkey-operator/releases/download/$LATEST
51
51
52
52
``` sh
53
53
LATEST=$( curl -s https://api.github.com/repos/hyperspike/valkey-operator/releases/latest | jq -cr .tag_name)
54
- helm install valkey-operator-chart --namespace valkey-operator-system --create-namespace oci://ghcr.io/hyperspike/valkey-operator-chart --version $LATEST
54
+ helm install valkey-operator --namespace valkey-operator-system --create-namespace oci://ghcr.io/hyperspike/valkey-operator --version $LATEST -chart
55
55
```
56
56
57
57
### Verifying the container image
Original file line number Diff line number Diff line change @@ -8,8 +8,8 @@ metadata:
8
8
spec :
9
9
nodes : 1
10
10
volumePermissions : true
11
- prometheus : false
11
+ prometheus : true
12
12
tls : true
13
13
certIssuer : selfsigned
14
14
prometheusLabels :
15
- prometheus : " 1 "
15
+ prometheus : prometheus
You can’t perform that action at this time.
0 commit comments