kube-exam/helm/exam/values.yaml

82 lines
1.5 KiB
YAML

replicaCount: 1
image:
repository: nginx
pullPolicy: IfNotPresent
tag: ""
imagePullSecrets: []
serviceAccount:
# Specifies whether a service account should be created
create: false
# Annotations to add to the service account
annotations: {}
# The name of the service account to use.
# If not set and create is true, a name is generated using the fullname template
name: ""
podAnnotations: {}
podSecurityContext: {}
securityContext: {}
service:
type: ClusterIP
port: 80
ingress:
ssl: false
className: ""
annotations:
nginx.ingress.kubernetes.io/rewrite-target: /$2
nginx.ingress.kubernetes.io/ssl-redirect: "false"
nginx.ingress.kubernetes.io/use-regex: "true"
hosts:
- host: kube-exam.local
paths:
- path: /()(.*)
pathType: ImplementationSpecific
name: "client"
port: 8080
- path: /api(/|$)(.*)
pathType: ImplementationSpecific
name: "api"
port: 5000
tls: []
# - secretName: chart-example-tls
# hosts:
# - chart-example.local
resources: {}
nodeSelector: {}
tolerations: []
affinity: {}
services:
- api:
name: "api"
tier: "backend"
port: 5000
target: 0
- postgres:
name: "postgres"
tier: "backend"
port: 5432
target: 0
- client:
name: "client"
tier: "frontend"
port: 8080
target: 80
secrets:
password: "username"
username: "password1234"
pvc:
storageClass: manual
storageRequest: 1Gi