diff --git a/chart/Chart.yaml b/chart/Chart.yaml index fe7eef0..6943e37 100644 --- a/chart/Chart.yaml +++ b/chart/Chart.yaml @@ -1,3 +1,3 @@ apiVersion: v2 name: kubooboo-chart -version: 0.2.16 \ No newline at end of file +version: 0.2.17 \ No newline at end of file diff --git a/chart/templates/backend/deployment.yaml b/chart/templates/backend/deployment.yaml index 8e4318d..5a29fc6 100644 --- a/chart/templates/backend/deployment.yaml +++ b/chart/templates/backend/deployment.yaml @@ -23,7 +23,7 @@ spec: secretName: kubeconfig containers: - name: backend-pod - image: harbor.dinauer.dev/kubooboo/backend:39 + image: harbor.dinauer.dev/kubooboo/backend:41 resources: requests: memory: "256Mi" diff --git a/chart/templates/frontend/deployment.yaml b/chart/templates/frontend/deployment.yaml index 91bab05..9b22345 100644 --- a/chart/templates/frontend/deployment.yaml +++ b/chart/templates/frontend/deployment.yaml @@ -22,9 +22,13 @@ spec: cpu: "100m" limits: memory: "128Mi" - image: harbor.dinauer.dev/kubooboo/frontend:10 + image: harbor.dinauer.dev/kubooboo/frontend:12 ports: - containerPort: 3000 env: - - name: NUXT_PUBLIC_API_BASE - value: "{{ .Values.url }}/api" \ No newline at end of file + - name: NUXT_PUBLIC_API_SCHEMA + value: {{ .Values.url.schema }} + - name: NUXT_PUBLIC_API_WS_SCHEMA + value: {{ .Values.url.wsSchema }}r + - name: NUXT_PUBLIC_API_HOST + value: {{ .Values.url.host }} \ No newline at end of file diff --git a/chart/values.yaml b/chart/values.yaml index 38bbf93..9b1d43f 100644 --- a/chart/values.yaml +++ b/chart/values.yaml @@ -1,4 +1,7 @@ -url: https://kubooboo.dinauer.dev +url: + schema: https + wsSchema: wss + host: kubooboo.dinauer.dev frontend: replicas: 1