Skip to content
Open
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 .env.secret.example
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ VC_PASSWORD_DEFAULT=secret
# VC_PASSWORD=

# Registry credentials (only needed for private registries)
# REGISTRY=ghcr.io/yourorg
# REGISTRY=ghcr.io/dagrigorev
# TAG=latest
2 changes: 1 addition & 1 deletion docker/docker-compose.k8s.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
name: voidcache

x-vcache-node: &vcache-node
image: ${REGISTRY:-ghcr.io/yourorg}/voidcache:${TAG:-latest}
image: ${REGISTRY:-ghcr.io/dagrigorev/voidcache:${TAG:-latest}
build:
context: ..
dockerfile: Dockerfile
Expand Down
2 changes: 1 addition & 1 deletion k8s/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ one at a time. HAProxy removes the pod from rotation during restart.

```bash
# Update image
kubectl set image statefulset/vcache vcache=ghcr.io/yourorg/voidcache:2.1.0 -n voidcache
kubectl set image statefulset/vcache vcache=ghcr.io/dagrigorev/voidcache:2.1.0 -n voidcache

# Watch the ordered rollout
kubectl rollout status statefulset/vcache -n voidcache --timeout=300s
Expand Down
6 changes: 3 additions & 3 deletions k8s/base/04-statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,9 @@ spec:
containers:
- name: vcache
# Replace with your registry after pushing:
# docker build -t ghcr.io/yourorg/voidcache:2.0.0 .
# docker push ghcr.io/yourorg/voidcache:2.0.0
image: ghcr.io/yourorg/voidcache:2.0.0
# docker build -t ghcr.io/dagrigorev/voidcache:2.0.0 .
# docker push ghcr.io/dagrigorev/voidcache:2.0.0
image: ghcr.io/dagrigorev/voidcache:2.0.0
imagePullPolicy: IfNotPresent

ports:
Expand Down
8 changes: 4 additions & 4 deletions k8s/helm/voidcache/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ keywords:
- redis
- in-memory
- voidcache
home: https://github.com/yourorg/voidcache
home: https://github.com/dagrigorev/voidcache
sources:
- https://github.com/yourorg/voidcache
- https://github.com/dagrigorev/voidcache
maintainers:
- name: yourorg
email: you@example.com
- name: dagrigorev
email: jabberwooky@bk.ru
annotations:
artifacthub.io/license: MIT
artifacthub.io/category: database
2 changes: 1 addition & 1 deletion k8s/helm/voidcache/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

# ── Image ──────────────────────────────────────────────────────────────────────
image:
repository: ghcr.io/yourorg/voidcache
repository: ghcr.io/dagrigorev/voidcache
tag: "2.0.0"
pullPolicy: IfNotPresent
pullSecrets: []
Expand Down
2 changes: 1 addition & 1 deletion k8s/overlays/dev/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ nameSuffix: ""

# Dev-specific image — built locally and loaded into minikube/kind
images:
- name: ghcr.io/yourorg/voidcache
- name: ghcr.io/dagrigorev/voidcache
newName: voidcache # local image name after docker build
newTag: latest

Expand Down
4 changes: 2 additions & 2 deletions k8s/overlays/prod/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ bases:

# Point to your actual registry + version tag
images:
- name: ghcr.io/yourorg/voidcache
newName: ghcr.io/yourorg/voidcache # replace yourorg
- name: ghcr.io/dagrigorev/voidcache
newName: ghcr.io/dagrigorev/voidcache
newTag: "2.0.0" # pin to an exact release tag

patches:
Expand Down
Loading