Fix names

This commit is contained in:
dvirlabs 2025-07-03 08:15:26 +03:00
parent badce03710
commit 3dbb363c45
18 changed files with 10 additions and 9 deletions

View File

@ -8,7 +8,7 @@ spec:
source: source:
repoURL: https://git.dvirlabs.com/dvirlabs/my-apps.git repoURL: https://git.dvirlabs.com/dvirlabs/my-apps.git
targetRevision: HEAD targetRevision: HEAD
path: charts/navix-helm path: charts/navix-chart
helm: helm:
valueFiles: valueFiles:
- ../../manifests/navix/values.yaml - ../../manifests/navix/values.yaml

View File

@ -8,7 +8,7 @@ spec:
source: source:
repoURL: https://git.dvirlabs.com/dvirlabs/my-apps.git repoURL: https://git.dvirlabs.com/dvirlabs/my-apps.git
targetRevision: HEAD targetRevision: HEAD
path: charts/oramap path: charts/oramap-chart
helm: helm:
valueFiles: valueFiles:
- ../../manifests/oramap/values.yaml - ../../manifests/oramap/values.yaml

View File

@ -1,7 +1,7 @@
frontend: frontend:
image: image:
repository: harbor.dvirlabs.com/my-apps/navix-front repository: harbor.dvirlabs.com/my-apps/navix-front
tag: v7-no-cicd tag: latest
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
service: service:
type: ClusterIP type: ClusterIP
@ -18,19 +18,21 @@ frontend:
- path: / - path: /
pathType: Prefix pathType: Prefix
env: env:
VITE_API_URL: "/api" API_BASE: "https://navix.dvirlabs.com/api"
tag: master-6e29436 MINIO_ENDPOINT: "s3.dvirlabs.com"
MINIO_BUCKET: "navix-icons"
backend: backend:
image: image:
repository: harbor.dvirlabs.com/my-apps/navix-back repository: harbor.dvirlabs.com/my-apps/navix-back
tag: v3-no-cicd tag: latest
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
service: service:
type: ClusterIP type: ClusterIP
port: 8000 port: 8000
env: env:
MINIO_ACCESS_KEY: "TDJvsBmbkpUXpCw5M7LA" MINIO_ACCESS_KEY: "your-access-key"
MINIO_SECRET_KEY: "n9scR7W0MZy6FF0bznV98fSgXpdebIQjqZvEr1Yu" MINIO_SECRET_KEY: "your-secret-key"
MINIO_ENDPOINT: "s3.dvirlabs.com" MINIO_ENDPOINT: "s3.dvirlabs.com"
MINIO_BUCKET: "navix-icons" MINIO_BUCKET: "navix-icons"
ingress: ingress:
@ -44,4 +46,3 @@ backend:
paths: paths:
- path: /api - path: /api
pathType: Prefix pathType: Prefix
tag: master-6e29436