🔧 enhance Makefile and Readme with Docker Swarm and Kubernetes support, adding new targets for deployment and management
All checks were successful
CI / Lint (push) Successful in 21s
CI / Helm Lint (push) Successful in 5s
CI / Build (push) Successful in 1m48s
CI / Test (push) Successful in 44s

This commit is contained in:
Christian van Dijk
2026-02-23 23:30:20 +01:00
parent 0a78491587
commit d7562d8a30
5 changed files with 247 additions and 8 deletions

View File

@@ -0,0 +1,17 @@
# Overrides for A environment (staging/production)
# Customize: image tags, ingress, apiUrl, replicas, etc.
frontend:
apiUrl: "https://handheld-a.example.com" # override with your A env URL
ingress:
enabled: true
hosts:
- host: handheld-a.example.com
paths:
- path: /api
pathType: Prefix
service: api
port: 8080
- path: /
pathType: Prefix
service: frontend
port: 8090

View File

@@ -0,0 +1,11 @@
# Overrides for local dev (minikube, kind, etc.)
api:
image:
pullPolicy: Never # use locally built images
worker:
image:
pullPolicy: Never
frontend:
image:
pullPolicy: Never
apiUrl: "http://localhost:8080"