26 lines
381 B
YAML
26 lines
381 B
YAML
replicaCount: 1
|
|
|
|
image:
|
|
repository: docker.io/uhryniuk/go-server
|
|
pullPolicy: IfNotPresent
|
|
tag: "latest"
|
|
|
|
service:
|
|
type: ClusterIP
|
|
port: 8080
|
|
|
|
env:
|
|
SERVER_PORT: "8080"
|
|
SERVER_HOST: "0.0.0.0"
|
|
SERVER_ROOT_PATH: "/app"
|
|
SERVER_AUTH_SECRET: "some-secret"
|
|
CONFIG_FILE: ""
|
|
|
|
resources:
|
|
limits:
|
|
cpu: 100m
|
|
memory: 128Mi
|
|
requests:
|
|
cpu: 50m
|
|
memory: 64Mi
|