mirror of
https://github.com/outbackdingo/homelab-v.git
synced 2026-08-25 14:53:19 +00:00
66 lines
1.0 KiB
YAML
66 lines
1.0 KiB
YAML
name: name
|
|
namespace: namespace
|
|
|
|
# Skip deployment and only do auth
|
|
authOnly: false
|
|
|
|
image:
|
|
name: image
|
|
tag: latest
|
|
pullPolicy: Always
|
|
|
|
replicas: 1
|
|
|
|
service:
|
|
create: true
|
|
type: ClusterIP
|
|
port: 80
|
|
containerPort: 8080
|
|
additionalPorts: []
|
|
# - name: ""
|
|
# protocol: TCP
|
|
# containerPort: ""
|
|
# port: ""
|
|
|
|
ingressRoute:
|
|
create: true
|
|
|
|
env: []
|
|
additionalEnv: []
|
|
|
|
hostVolumes: []
|
|
#- name: volume-name
|
|
# hostPath: /host/path
|
|
# mountPath: /container/path
|
|
|
|
additionalVolumes:
|
|
#- name: volume-name
|
|
# mountPath: /container/path
|
|
# value: {}
|
|
|
|
additionalLabels: {}
|
|
|
|
annotations: {}
|
|
|
|
resources: {}
|
|
# limits:
|
|
# cpu: 100m
|
|
# memory: 128Mi
|
|
# requests:
|
|
# cpu: 100m
|
|
# memory: 128Mi
|
|
|
|
auth:
|
|
# Enable authentication with traefik-forward-auth
|
|
enabled: true
|
|
# Create traefik-forward-auth deployment
|
|
# Set to "false" to reuse a different deployment in the same namespace
|
|
create: true
|
|
port: 4181
|
|
cookieName: ""
|
|
cookieDomain: ""
|
|
host: ""
|
|
domains: {}
|
|
whitelist: {}
|
|
logLevel: error
|
|
extraConfig: {} |