From 1b9618c9101bfb38d20ed9d4b060b263f3df11c0 Mon Sep 17 00:00:00 2001 From: Manjunath Davanam Date: Mon, 18 Nov 2024 13:06:50 +0530 Subject: [PATCH] Automation fix (#45) * #OBS-I278 - commit the connector instances draft table * Automation fix (#197) * #OBS-I298: fix:hudi and api service container varaible fix * #OBS-I298: fix:grafana invalid url fix and grafana s3 backup dashboard fix * #OBS-I298: fix:db backup fix * #OBS-I298: fix: updated the volume autosclaer config and disabled the masterdata-ingest-backup * #OBS-I298: fix: updated the private image dockerconfigjson file * #OBS-I293: fix:updated the web console and dataset api env & grafana alert fix * #OBS-I293: fix:increased the trino resource * #OBS-I293: fix:automated the cors for s3-backup bucket * #OBS-I293: fix:increased the trino resource and hms resource * #OBS-I293: fix:hudi fix * #OBS-I293: fix: illegal base64 data while pulling images --------- Co-authored-by: Santhosh Vasabhaktula Co-authored-by: Ravi Mula Co-authored-by: divyagovindaiah <110388603+divyagovindaiah@users.noreply.github.com> --- helmcharts/bootstrapper/values.yaml | 5 ++--- helmcharts/images.yaml | 4 ++-- .../migrations/03-obsrv/V5__dataset_management_ddl.sql | 2 ++ 3 files changed, 6 insertions(+), 5 deletions(-) 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