Initial scaffold: Go service, Helm chart, Kustomize overlays
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: hello-svc
|
||||
spec:
|
||||
replicas: 3
|
||||
template:
|
||||
spec:
|
||||
containers:
|
||||
- name: hello-svc
|
||||
env:
|
||||
- name: APP_ENV
|
||||
value: prod
|
||||
- name: LOG_LEVEL
|
||||
value: info
|
||||
resources:
|
||||
requests:
|
||||
cpu: 100m
|
||||
memory: 64Mi
|
||||
limits:
|
||||
cpu: 500m
|
||||
memory: 128Mi
|
||||
Reference in New Issue
Block a user