Initial scaffold: Go service, Helm chart, Kustomize overlays

This commit is contained in:
rod
2026-05-17 11:59:53 +02:00
commit 7f031a7848
13 changed files with 254 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: hello-svc
spec:
replicas: 1
template:
spec:
containers:
- name: hello-svc
env:
- name: APP_ENV
value: dev
- name: LOG_LEVEL
value: debug
resources:
requests:
cpu: 50m
memory: 32Mi
limits:
cpu: 100m
memory: 64Mi