Update K8s manifests to use Docker Hub public images

Updated image registry references for public deployment

Changed:
  - image: haproxy-openmanager-backend:latest
  - image: haproxy-openmanager-frontend:latest

To:
  - image: burganbank/haproxy-openmanager-backend:latest
  - image: burganbank/haproxy-openmanager-frontend:latest

Docker Hub Registry: burganbank/*
GitHub Actions workflow automatically publishes to Docker Hub on push to main

Users can now deploy directly from public Docker Hub images
This commit is contained in:
taylanbakircioglu
2025-11-07 11:51:15 +03:00
parent 22bbd17a0c
commit 37e400ffa4
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -36,7 +36,7 @@ spec:
name: postgres-secret
containers:
- name: backend
image: haproxy-openmanager-backend:latest # Build and push your image to a registry
image: burganbank/haproxy-openmanager-backend:latest # Public Docker Hub image
ports:
- containerPort: 8000
name: http
+1 -1
View File
@@ -22,7 +22,7 @@ spec:
serviceAccountName: haproxy-openmanager-frontend
containers:
- name: frontend
image: haproxy-openmanager-frontend:latest # Build and push your image to a registry
image: burganbank/haproxy-openmanager-frontend:latest # Public Docker Hub image
ports:
- containerPort: 3000
name: http