Skip to content

Commit ad3f83f

Browse files
committed
Update docker images to reference halter instead of hyperspike
1 parent c46e68d commit ad3f83f

File tree

8 files changed

+17
-20
lines changed

8 files changed

+17
-20
lines changed

.github/FUNDING.yml

Lines changed: 0 additions & 3 deletions
This file was deleted.

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
id: meta_operator
3535
uses: docker/metadata-action@369eb591f429131d6889c46b94e711f089e6ca96
3636
with:
37-
images: ${{ env.REGISTRY }}/hyperspike/valkey-operator:${{ github.sha }}
37+
images: ${{ env.REGISTRY }}/halter/valkey-operator:${{ github.sha }}
3838
- name: Build Operator image
3939
uses: docker/build-push-action@ca877d9245402d1537745e0e356eab47c3520991
4040
id: docker_build_operator

.github/workflows/image.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,12 @@ jobs:
6161
id: meta_sidecar
6262
uses: docker/metadata-action@369eb591f429131d6889c46b94e711f089e6ca96
6363
with:
64-
images: ${{ env.REGISTRY }}/hyperspike/valkey-sidecar:${{ env.RELEASE_VERSION }}
64+
images: ${{ env.REGISTRY }}/halter/valkey-sidecar:${{ env.RELEASE_VERSION }}
6565
- name: Extract metadata (Valkey tags, labels) for Docker
6666
id: meta_valkey
6767
uses: docker/metadata-action@369eb591f429131d6889c46b94e711f089e6ca96
6868
with:
69-
images: ${{ env.REGISTRY }}/hyperspike/valkey:${{ env.VALKEY_VERSION }}
69+
images: ${{ env.REGISTRY }}/halter/valkey:${{ env.VALKEY_VERSION }}
7070

7171
- name: Setup Go ${{ matrix.go-version }}
7272
uses: actions/setup-go@v5
@@ -120,10 +120,10 @@ jobs:
120120
cosign sign --yes ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ env.RELEASE_VERSION }}@${{ steps.docker_build_controller.outputs.digest }}
121121
- name: Sign Sidecar image with GitHub OIDC Token
122122
run: |
123-
cosign sign --yes ${{ env.REGISTRY }}/hyperspike/valkey-sidecar:${{ env.RELEASE_VERSION }}@${{ steps.docker_build_sidecar.outputs.digest }}
123+
cosign sign --yes ${{ env.REGISTRY }}/halter/valkey-sidecar:${{ env.RELEASE_VERSION }}@${{ steps.docker_build_sidecar.outputs.digest }}
124124
- name: Sign Valkey image with GitHub OIDC Token
125125
run: |
126-
cosign sign --yes ${{ env.REGISTRY }}/hyperspike/valkey:${{ env.VALKEY_VERSION }}@${{ steps.docker_build_valkey.outputs.digest }}
126+
cosign sign --yes ${{ env.REGISTRY }}/halter/valkey:${{ env.VALKEY_VERSION }}@${{ steps.docker_build_valkey.outputs.digest }}
127127
128128
- name: Attest the Controller image
129129
uses: actions/attest-build-provenance@v2
@@ -136,14 +136,14 @@ jobs:
136136
uses: actions/attest-build-provenance@v2
137137
id: attest_sidecar
138138
with:
139-
subject-name: ${{ env.REGISTRY }}/hyperspike/valkey-sidecar
139+
subject-name: ${{ env.REGISTRY }}/halter/valkey-sidecar
140140
subject-digest: ${{ steps.docker_build_sidecar.outputs.digest }}
141141
push-to-registry: true
142142
- name: Attest the Valkey image
143143
uses: actions/attest-build-provenance@v2
144144
id: attest_valkey
145145
with:
146-
subject-name: ${{ env.REGISTRY }}/hyperspike/valkey
146+
subject-name: ${{ env.REGISTRY }}/halter/valkey
147147
subject-digest: ${{ steps.docker_build_valkey.outputs.digest }}
148148
push-to-registry: true
149149
- name: Export digest

.github/workflows/publish.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
go-version: 1.23
4343
check-latest: true
4444
- name: Build Installer
45-
run: make build-installer IMG=ghcr.io/hyperspike/valkey-operator:${{ github.ref_name }}
45+
run: make build-installer IMG=ghcr.io/halter/valkey-operator:${{ github.ref_name }}
4646
- name: Attest
4747
uses: actions/attest-build-provenance@v2
4848
id: attest
@@ -80,4 +80,4 @@ jobs:
8080
username: ${{ github.actor }}
8181
password: ${{ secrets.GITHUB_TOKEN }}
8282
- name: Package and Upload Helm Chart
83-
run: make helm-publish V=1 IMG=ghcr.io/hyperspike/valkey-operator:${{ github.ref_name }}
83+
run: make helm-publish V=1 IMG=ghcr.io/halter/valkey-operator:${{ github.ref_name }}

.github/workflows/scan.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,11 +89,11 @@ jobs:
8989
file: Dockerfile.valkey
9090
context: .
9191
push: false
92-
tags: ${{ env.REGISTRY }}/hyperspike/valkey:${{ github.SHA }}
92+
tags: ${{ env.REGISTRY }}/halter/valkey:${{ github.SHA }}
9393
- name: Run Trivy vulnerability scanner
9494
uses: aquasecurity/trivy-action@master
9595
with:
96-
image-ref: ${{ env.REGISTRY }}/hyperspike/valkey:${{ github.SHA }}
96+
image-ref: ${{ env.REGISTRY }}/halter/valkey:${{ github.SHA }}
9797
format: 'sarif'
9898
output: 'trivy-results.sarif'
9999
- name: Upload Trivy scan results to GitHub Security tab

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Image URL to use all building/pushing image targets
2-
REGISTRY ?= ghcr.io/hyperspike
2+
REGISTRY ?= ghcr.io/halter
33
IMG_CONTROLLER ?= $(REGISTRY)/valkey-operator:$(VERSION)
44
IMG_SIDECAR ?= $(REGISTRY)/valkey-sidecar:$(VERSION)
55
IMG_VALKEY ?= $(REGISTRY)/valkey:$(VALKEY_VERSION)
@@ -260,7 +260,7 @@ helm-package: helm-gen helm ## Package Helm chart
260260
$Q$(HELM) package valkey-operator --app-version $(VERSION) --version $(VERSION)-chart
261261

262262
helm-publish: helm-package ## Publish Helm chart
263-
$Q$(HELM) push valkey-operator-$(VERSION)-chart.tgz oci://ghcr.io/hyperspike
263+
$Q$(HELM) push valkey-operator-$(VERSION)-chart.tgz oci://ghcr.io/halter
264264

265265
.PHONY: tunnel registry-proxy prometheus-proxy
266266
tunnel: ## turn on minikube's tunnel to test ingress and get UI access

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,14 +51,14 @@ curl -sL https://github.com/hyperspike/valkey-operator/releases/download/$LATEST
5151

5252
```sh
5353
LATEST=$(curl -s https://api.github.com/repos/hyperspike/valkey-operator/releases/latest | jq -cr .tag_name)
54-
helm install valkey-operator --namespace valkey-operator-system --create-namespace oci://ghcr.io/hyperspike/valkey-operator --version ${LATEST}-chart
54+
helm install valkey-operator --namespace valkey-operator-system --create-namespace oci://ghcr.io/halter/valkey-operator --version ${LATEST}-chart
5555
```
5656

5757
### Verifying the container image
5858

5959
```sh
6060
LATEST=$(curl -s https://api.github.com/repos/hyperspike/valkey-operator/releases/latest | jq -cr .tag_name)
61-
cosign verify ghcr.io/hyperspike/valkey-operator:$LATEST --certificate-oidc-issuer https://token.actions.githubusercontent.com --certificate-identity https://github.com/hyperspike/valkey-operator/.github/workflows/image.yaml@refs/tags/$LATEST
61+
cosign verify ghcr.io/halter/valkey-operator:$LATEST --certificate-oidc-issuer https://token.actions.githubusercontent.com --certificate-identity https://github.com/hyperspike/valkey-operator/.github/workflows/image.yaml@refs/tags/$LATEST
6262
```
6363

6464
## Contributing

config/manager/manager.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ metadata:
1818
app.kubernetes.io/managed-by: kustomize
1919
data:
2020
nodes: "3"
21-
valkeyImage: "ghcr.io/hyperspike/valkey:8.0.2"
22-
exporterImage: "ghcr.io/hyperspike/valkey-sidecar:v0.0.51"
21+
valkeyImage: "ghcr.io/halter/valkey:8.0.2"
22+
exporterImage: "ghcr.io/halter/valkey-sidecar:v0.0.3"
2323
---
2424
apiVersion: apps/v1
2525
kind: Deployment

0 commit comments

Comments
 (0)