diff --git a/.github/workflows/deploy-dev.yml b/.github/workflows/deploy-dev.yml index e3c64bea..4d93568a 100644 --- a/.github/workflows/deploy-dev.yml +++ b/.github/workflows/deploy-dev.yml @@ -118,7 +118,7 @@ jobs: contents: read environment: name: dev - url: https://dev-strdss.f4a30d-dev.apps.silver.devops.gov.bc.ca/ + url: https://dev-strdata.apps.silver.devops.gov.bc.ca/ steps: - uses: hmarr/debug-action@a701ed95a46e6f2fb0df25e1a558c16356fae35a diff --git a/.github/workflows/deploy-prod.yml b/.github/workflows/deploy-prod.yml index 6dd8ab1d..ba124606 100644 --- a/.github/workflows/deploy-prod.yml +++ b/.github/workflows/deploy-prod.yml @@ -12,7 +12,7 @@ jobs: contents: read environment: name: prod - url: https://prod-strdss.f4a30d-prod.apps.silver.devops.gov.bc.ca/ + url: https://prod-strdata.apps.silver.devops.gov.bc.ca/ steps: - uses: hmarr/debug-action@a701ed95a46e6f2fb0df25e1a558c16356fae35a diff --git a/.github/workflows/deploy-test.yml b/.github/workflows/deploy-test.yml index f47ae678..b95b734f 100644 --- a/.github/workflows/deploy-test.yml +++ b/.github/workflows/deploy-test.yml @@ -80,7 +80,7 @@ jobs: contents: read environment: name: test - url: https://test-strdss.f4a30d-dev.apps.silver.devops.gov.bc.ca/ + url: https://test-strdata.apps.silver.devops.gov.bc.ca/ steps: - uses: hmarr/debug-action@a701ed95a46e6f2fb0df25e1a558c16356fae35a diff --git a/.github/workflows/deploy-uat.yml b/.github/workflows/deploy-uat.yml index 23ea956b..3f147ad7 100644 --- a/.github/workflows/deploy-uat.yml +++ b/.github/workflows/deploy-uat.yml @@ -10,7 +10,7 @@ jobs: contents: read environment: name: uat - url: https://uat-strdss.f4a30d-test.apps.silver.devops.gov.bc.ca/ + url: https://uat-strdata.apps.silver.devops.gov.bc.ca/ steps: - uses: hmarr/debug-action@a701ed95a46e6f2fb0df25e1a558c16356fae35a diff --git a/crunchydb/charts/tools/values.yaml b/crunchydb/charts/tools/values.yaml index 2d77f315..1278d91c 100644 --- a/crunchydb/charts/tools/values.yaml +++ b/crunchydb/charts/tools/values.yaml @@ -27,5 +27,5 @@ networking: # Enable OpenShift route whitch allows you to host your application at a public URL route: enabled: true - host: # eg: crunchy-postgres.apps.silver.devops.gov.bc.ca + host: uat-strdata-db.apps.silver.devops.gov.bc.ca diff --git a/crunchydb/values-uat.yaml b/crunchydb/values-uat.yaml index 2fe1b715..1b2b9f97 100644 --- a/crunchydb/values-uat.yaml +++ b/crunchydb/values-uat.yaml @@ -18,4 +18,8 @@ crunchy-postgres: memory: 32Mi limits: cpu: 50m - memory: 64Mi \ No newline at end of file + memory: 64Mi +crunchy-postgres-tools: + networking: + route: + host: uat-strdata-db.apps.silver.devops.gov.bc.ca \ No newline at end of file diff --git a/helm/main/values-dev.yaml b/helm/main/values-dev.yaml index 4c900555..8f2847e4 100644 --- a/helm/main/values-dev.yaml +++ b/helm/main/values-dev.yaml @@ -1,6 +1,8 @@ global: env: - 'LOGGING__LOGLEVEL__DEFAULT': 'Information' + 'Logging__LogLevel__Default': 'Information' + 'Logging__LogLevel__Microsoft.EntityFrameworkCore': 'Warning' + 'Logging__LogLevel__Microsoft.AspNetCore': 'Warning' 'ASPNETCORE_ENVIRONMENT': 'Development' 'ENV_NAME': 'dev' 'AppBaseUrl': 'https://dev-strdata.apps.silver.devops.gov.bc.ca' diff --git a/helm/main/values-prod.yaml b/helm/main/values-prod.yaml index ac10273e..c2a0c7c2 100644 --- a/helm/main/values-prod.yaml +++ b/helm/main/values-prod.yaml @@ -1,6 +1,8 @@ global: env: - 'LOGGING__LOGLEVEL__DEFAULT': 'Information' + 'Logging__LogLevel__Default': 'Information' + 'Logging__LogLevel__Microsoft.EntityFrameworkCore': 'Warning' + 'Logging__LogLevel__Microsoft.AspNetCore': 'Warning' 'ASPNETCORE_ENVIRONMENT': 'Production' 'ENV_NAME': 'prod' 'AppBaseUrl': 'https://prod-strdata.apps.silver.devops.gov.bc.ca' diff --git a/helm/main/values-test.yaml b/helm/main/values-test.yaml index 94a92cf8..26f5263d 100644 --- a/helm/main/values-test.yaml +++ b/helm/main/values-test.yaml @@ -1,6 +1,8 @@ global: env: - 'LOGGING__LOGLEVEL__DEFAULT': 'Information' + 'Logging__LogLevel__Default': 'Information' + 'Logging__LogLevel__Microsoft.EntityFrameworkCore': 'Warning' + 'Logging__LogLevel__Microsoft.AspNetCore': 'Warning' 'ASPNETCORE_ENVIRONMENT': 'Test' 'ENV_NAME': 'test' 'AppBaseUrl': 'https://test-strdata.apps.silver.devops.gov.bc.ca' diff --git a/helm/main/values-uat.yaml b/helm/main/values-uat.yaml index d2de03cc..10fa2d8d 100644 --- a/helm/main/values-uat.yaml +++ b/helm/main/values-uat.yaml @@ -1,6 +1,8 @@ global: env: - 'LOGGING__LOGLEVEL__DEFAULT': 'Information' + 'Logging__LogLevel__Default': 'Information' + 'Logging__LogLevel__Microsoft.EntityFrameworkCore': 'Warning' + 'Logging__LogLevel__Microsoft.AspNetCore': 'Warning' 'ASPNETCORE_ENVIRONMENT': 'Staging' 'ENV_NAME': 'uat' 'AppBaseUrl': 'https://uat-strdata.apps.silver.devops.gov.bc.ca'