diff --git a/charts/v3-backend/Chart.yaml b/charts/v3-backend/Chart.yaml index b47c53c7..342e18f5 100644 --- a/charts/v3-backend/Chart.yaml +++ b/charts/v3-backend/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v2 name: v3-backend -version: 3.4.1 -appVersion: v2.0.26 +version: 3.4.2 +appVersion: v2.0.27 kubeVersion: "^1.20.0-0" description: The StakeWise backend application. type: application diff --git a/charts/v3-backend/templates/common-configmap.yaml b/charts/v3-backend/templates/common-configmap.yaml index 33b2d90f..ba70a5db 100644 --- a/charts/v3-backend/templates/common-configmap.yaml +++ b/charts/v3-backend/templates/common-configmap.yaml @@ -57,6 +57,7 @@ data: FALLBACK_GRAPH_POSTGRES_PORT: {{ .Values.settings.fallbackGraph.postgresPort | quote }} FALLBACK_GRAPH_POSTGRES_DB: {{ .Values.settings.fallbackGraph.postgresDB | quote }} FALLBACK_GRAPH_VAULTS_TABLE: {{ .Values.settings.fallbackGraph.vaultsTable | quote }} + FALLBACK_GRAPH_EXIT_REQUESTS_TABLE: {{ .Values.settings.fallbackGraph.exitRequestsTable | quote }} {{- end }} {{- if .Values.settings.stageGraph.postgresHost }} @@ -64,4 +65,5 @@ data: STAGE_GRAPH_POSTGRES_PORT: {{ .Values.settings.stageGraph.postgresPort | quote }} STAGE_GRAPH_POSTGRES_DB: {{ .Values.settings.stageGraph.postgresDB | quote }} STAGE_GRAPH_VAULTS_TABLE: {{ .Values.settings.stageGraph.vaultsTable | quote }} + STAGE_GRAPH_EXIT_REQUESTS_TABLE: {{ .Values.settings.stageGraph.exitRequestsTable | quote }} {{- end }} \ No newline at end of file diff --git a/charts/v3-backend/values.yaml b/charts/v3-backend/values.yaml index 71c8bd0b..a18b4f3d 100644 --- a/charts/v3-backend/values.yaml +++ b/charts/v3-backend/values.yaml @@ -79,6 +79,7 @@ settings: postgresUser: "" postgresPassword: "" vaultsTable: "" + exitRequestsTable: "" stageGraph: postgresHost: "" postgresPort: "" @@ -86,6 +87,7 @@ settings: postgresUser: "" postgresPassword: "" vaultsTable: "" + exitRequestsTable: "" postgres: host: localhost @@ -97,7 +99,7 @@ settings: image: registry: "europe-west4-docker.pkg.dev" repository: "stakewiselabs/private/v3-backend" - tag: "v2.0.26" + tag: "v2.0.27" pullPolicy: IfNotPresent pullSecrets: []