35 lines
851 B
YAML
35 lines
851 B
YAML
frontend:
|
|
image:
|
|
repository: harbor.dvirlabs.com/my-apps/navix-front
|
|
tag: v2-no-cicd
|
|
pullPolicy: IfNotPresent
|
|
service:
|
|
type: ClusterIP
|
|
port: 80
|
|
ingress:
|
|
enabled: true
|
|
className: traefik
|
|
annotations:
|
|
traefik.ingress.kubernetes.io/router.entrypoints: websecure
|
|
traefik.ingress.kubernetes.io/router.tls: "true"
|
|
hosts:
|
|
- host: navix.dvirlabs.com
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
|
|
backend:
|
|
image:
|
|
repository: harbor.dvirlabs.com/my-apps/navix-back
|
|
tag: v1-no-cicd
|
|
pullPolicy: IfNotPresent
|
|
service:
|
|
type: ClusterIP
|
|
port: 8000
|
|
env:
|
|
MINIO_ACCESS_KEY: "TDJvsBmbkpUXpCw5M7LA"
|
|
MINIO_SECRET_KEY: "n9scR7W0MZy6FF0bznV98fSgXpdebIQjqZvEr1Yu"
|
|
MINIO_ENDPOINT: "s3.dvirlabs.com"
|
|
MINIO_BUCKET: "navix-icons"
|
|
ingress:
|
|
enabled: false |