Skip to content

Commit

Permalink
Merge pull request #51 from bcgov/dev
Browse files Browse the repository at this point in the history
chore: clean up and log level
  • Loading branch information
ychung-mot authored Mar 27, 2024
2 parents 51d59a3 + 4a05cbb commit 4678c80
Show file tree
Hide file tree
Showing 10 changed files with 22 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-uat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion crunchydb/charts/tools/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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

6 changes: 5 additions & 1 deletion crunchydb/values-uat.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,8 @@ crunchy-postgres:
memory: 32Mi
limits:
cpu: 50m
memory: 64Mi
memory: 64Mi
crunchy-postgres-tools:
networking:
route:
host: uat-strdata-db.apps.silver.devops.gov.bc.ca
4 changes: 3 additions & 1 deletion helm/main/values-dev.yaml
Original file line number Diff line number Diff line change
@@ -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'
Expand Down
4 changes: 3 additions & 1 deletion helm/main/values-prod.yaml
Original file line number Diff line number Diff line change
@@ -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'
Expand Down
4 changes: 3 additions & 1 deletion helm/main/values-test.yaml
Original file line number Diff line number Diff line change
@@ -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'
Expand Down
4 changes: 3 additions & 1 deletion helm/main/values-uat.yaml
Original file line number Diff line number Diff line change
@@ -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'
Expand Down

0 comments on commit 4678c80

Please sign in to comment.