From c695af6a23a8c3bf35236b577cddf425976d625a Mon Sep 17 00:00:00 2001 From: Giorgio Salluzzo Date: Tue, 4 Feb 2025 14:24:58 +0100 Subject: [PATCH 1/2] Force value to be a string It started failing in my deployment. --- charts/postgrest/templates/deployment.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/postgrest/templates/deployment.yaml b/charts/postgrest/templates/deployment.yaml index cc27516..86c2287 100644 --- a/charts/postgrest/templates/deployment.yaml +++ b/charts/postgrest/templates/deployment.yaml @@ -114,7 +114,7 @@ spec: {{- end }} {{- if .Values.postgrest.maxRows }} - name: PGRST_DB_MAX_ROWS - value: {{ .Values.postgrest.maxRows }} + value: !!str {{ .Values.postgrest.maxRows }} {{- end }} {{- if .Values.postgrest.preRequest }} - name: PGRST_PRE_REQUEST From 9a172b0bb34cada713949a13cbc729c5d507be88 Mon Sep 17 00:00:00 2001 From: Giorgio Salluzzo Date: Tue, 4 Feb 2025 14:30:36 +0100 Subject: [PATCH 2/2] Python 3.7 is not available --- .github/workflows/chart-test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/chart-test.yaml b/.github/workflows/chart-test.yaml index bb6320e..1bd00fe 100644 --- a/.github/workflows/chart-test.yaml +++ b/.github/workflows/chart-test.yaml @@ -28,7 +28,7 @@ jobs: - uses: actions/setup-python@v2 with: - python-version: 3.7 + python-version: 3.8 - name: Set up chart-testing uses: helm/chart-testing-action@v2.1.0