fix(db): track state of migrations and execute them again when necessary

This commit is contained in:
Peter 2025-02-13 09:29:47 +01:00
parent 264b30e8a2
commit 2d71a4a132
Signed by: prskr
GPG key ID: F56BED6903BC5E37
15 changed files with 59 additions and 33 deletions

View file

@ -43,7 +43,7 @@ var (
// projectImage is the name of the image which will be build and loaded
// with the code source changes to be tested.
projectImage = "example.com/supabase-operator:v0.0.1"
projectImage = "code.icb4dc0.de/prskr/supabase-operator:v0.0.1"
)
// TestE2E runs the end-to-end (e2e) test suite for the project. These tests execute in an isolated,

View file

@ -31,13 +31,13 @@ import (
)
// namespace where the project is deployed in
const namespace = "supabase-operator-system"
const namespace = "supabase-system"
// serviceAccountName created for the project
const serviceAccountName = "supabase-operator-controller-manager"
// metricsServiceName is the name of the metrics service of the project
const metricsServiceName = "supabase-operator-controller-manager-metrics-service"
const metricsServiceName = "supabase-controller-manager-metrics-service"
// metricsRoleBindingName is the name of the RBAC that will be created to allow get the metrics data
const metricsRoleBindingName = "supabase-operator-metrics-binding"