diff --git a/helmcharts/bootstrapper/values.yaml b/helmcharts/bootstrapper/values.yaml index 284abfe2..411faf25 100644 --- a/helmcharts/bootstrapper/values.yaml +++ b/helmcharts/bootstrapper/values.yaml @@ -29,7 +29,6 @@ namespaces: global: image: dockerRegistrySecretName: obsrv-docker-secret - #: Replace the dockerConfigJson below for the private images + # Replace the dockerConfigJson below for the private images dockerConfigJson: |- - {"auths": {"http://": {"auth": ""}}} - + {"auths":{"http://registry.your-domain.io":{"auth":"eW91cl9yZWdpc3RyeV91c2VybmFtZTp5b3VyX3JlZ2lzdHJ5X3Rva2Vu"}}} \ No newline at end of file diff --git a/helmcharts/images.yaml b/helmcharts/images.yaml index 931e5048..16907278 100644 --- a/helmcharts/images.yaml +++ b/helmcharts/images.yaml @@ -2,9 +2,9 @@ global: image: registry: &global_registry "sanketikahub" dockerRegistrySecretName: &dockerSecretName "registry-secret-name" - #: Replace the dockerConfigJson below for the private images + #Replace the dockerConfigJson below for the private images dockerConfigJson: |- - {"auths": {"http://": {"auth": ""}}} + {"auths":{"http://registry.your-domain.io":{"auth":"eW91cl9yZWdpc3RyeV91c2VybmFtZTp5b3VyX3JlZ2lzdHJ5X3Rva2Vu"}}} diff --git a/helmcharts/services/postgresql-migration/configs/migrations/03-obsrv/V5__dataset_management_ddl.sql b/helmcharts/services/postgresql-migration/configs/migrations/03-obsrv/V5__dataset_management_ddl.sql index acfa9fcd..10db9310 100644 --- a/helmcharts/services/postgresql-migration/configs/migrations/03-obsrv/V5__dataset_management_ddl.sql +++ b/helmcharts/services/postgresql-migration/configs/migrations/03-obsrv/V5__dataset_management_ddl.sql @@ -5,5 +5,7 @@ ALTER TABLE datasources UPDATE datasources SET is_primary = true, name = datasource; +ALTER TABLE connector_instances ADD COLUMN IF NOT EXISTS name TEXT; + GRANT ALL PRIVILEGES ON ALL TABLES IN SCHEMA public TO obsrv; GRANT ALL PRIVILEGES ON ALL SEQUENCES IN SCHEMA public TO obsrv; \ No newline at end of file