diff --git a/charts/invy-chart/templates/frontend-deployment.yaml b/charts/invy-chart/templates/frontend-deployment.yaml index 50ef9e4..8175eca 100644 --- a/charts/invy-chart/templates/frontend-deployment.yaml +++ b/charts/invy-chart/templates/frontend-deployment.yaml @@ -44,6 +44,10 @@ spec: - name: {{ $key }} value: {{ $value | quote }} {{- end }} + - name: VITE_ADMIN_USERNAME + value: {{ .Values.frontend.adminUsername | quote }} + - name: VITE_ADMIN_PASSWORD + value: {{ .Values.frontend.adminPassword | quote }} {{- end }} livenessProbe: httpGet: diff --git a/manifests/invy/cname.yaml b/manifests/invy/cname.yaml index bb333be..d5c3bd1 100644 --- a/manifests/invy/cname.yaml +++ b/manifests/invy/cname.yaml @@ -1,2 +1,2 @@ enabled: true -hostname: ipify.dvirlabs.com \ No newline at end of file +hostname: invy.dvirlabs.com \ No newline at end of file diff --git a/manifests/invy/values.yaml b/manifests/invy/values.yaml index 8613da6..077a1eb 100644 --- a/manifests/invy/values.yaml +++ b/manifests/invy/values.yaml @@ -57,6 +57,9 @@ frontend: targetPort: 80 env: VITE_API_URL: "https://api-invy.dvirlabs.com" + # Admin login credentials + adminUsername: "admin" + adminPassword: "wedding2025" resources: requests: cpu: 50m