mirror of
https://github.com/alexandrev/xslt-lab.git
synced 2026-09-20 04:23:16 +00:00
61 lines
1.0 KiB
YAML
61 lines
1.0 KiB
YAML
replicaCount:
|
|
frontend: 1
|
|
backend: 1
|
|
|
|
image:
|
|
frontend:
|
|
repository: xslt-playground-frontend
|
|
tag: "latest"
|
|
pullPolicy: IfNotPresent
|
|
backend:
|
|
repository: xslt-playground-backend
|
|
tag: "latest"
|
|
pullPolicy: IfNotPresent
|
|
|
|
service:
|
|
frontend:
|
|
type: ClusterIP
|
|
port: 80
|
|
backend:
|
|
type: ClusterIP
|
|
port: 8000
|
|
|
|
ingress:
|
|
enabled: true
|
|
className: ""
|
|
annotations: {}
|
|
hosts:
|
|
- host: xslt.local
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
tls: []
|
|
|
|
resources:
|
|
frontend: {}
|
|
backend: {}
|
|
|
|
hpa:
|
|
frontend:
|
|
enabled: true
|
|
minReplicas: 1
|
|
maxReplicas: 5
|
|
targetCPUUtilizationPercentage: 80
|
|
backend:
|
|
enabled: true
|
|
minReplicas: 1
|
|
maxReplicas: 5
|
|
targetCPUUtilizationPercentage: 80
|
|
|
|
firebase:
|
|
enabled: true
|
|
secretName: firebase-config
|
|
credentialsKey: service-account.json
|
|
configKey: firebase-config.json
|
|
credentialsMountPath: /var/secrets/firebase
|
|
|
|
storage:
|
|
enabled: true
|
|
databaseUrl: postgres://postgres:postgres@db/xslt?sslmode=disable
|
|
|