Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add openmaps and maps to host cert mapping #141

Merged
merged 12 commits into from
Dec 18, 2024
2 changes: 1 addition & 1 deletion .github/workflows/jira.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: [issues, issue_comment]
jobs:
sync-issues:
name: Sync issues to Jira
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: ikethecoder/sync-issues-github-jira@dev
with:
Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/pr-reminder.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: 'Send review reminders'
on:
schedule:
- cron: '30 8 * * 1,2,3,4,5' # Scheduled to run at 1:30 AM, weekdays

jobs:
remind:
runs-on: ubuntu-latest
steps:
- name: Run PR reviewer reminder
uses: bcgov/aps-devops/pr-reminder@dev
with:
token: ${{ secrets.GITHUB_TOKEN }}
dry_run: "false"
2 changes: 2 additions & 0 deletions microservices/kubeApi/clients/ocp_routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
host_cert_mapping = {
"data.gov.bc.ca": "data-api.tls",
"api.gov.bc.ca": "data-api.tls",
"maps.gov.bc.ca": "data-api.tls",
"openmaps.gov.bc.ca": "data-api.tls",
"apps.gov.bc.ca": "apps.tls"
}

Expand Down
Loading