From eed5562fa89824b2f5ea915af1e03cf190772842 Mon Sep 17 00:00:00 2001 From: Adrien Ballet Date: Fri, 7 Jun 2024 04:39:56 +0200 Subject: [PATCH] fix: typo in datastore.waitForMigrations (#137) --- charts/openfga/templates/deployment.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/openfga/templates/deployment.yaml b/charts/openfga/templates/deployment.yaml index 771551e..d3d9aec 100644 --- a/charts/openfga/templates/deployment.yaml +++ b/charts/openfga/templates/deployment.yaml @@ -36,7 +36,7 @@ spec: {{- toYaml .Values.podSecurityContext | nindent 8 }} {{ if or (and (has .Values.datastore.engine (list "postgres" "mysql")) .Values.datastore.applyMigrations .Values.datastore.waitForMigrations) .Values.extraInitContainers }} initContainers: - {{- if and (has .Values.datastore.engine (list "postgres" "mysql")) .Values.datastore.applyMigrations .Values.datastore.waitForMigration }} + {{- if and (has .Values.datastore.engine (list "postgres" "mysql")) .Values.datastore.applyMigrations .Values.datastore.waitForMigrations }} - name: wait-for-migration securityContext: {{- toYaml .Values.securityContext | nindent 12 }}