Skip to content

Commit 81d0504

Browse files
authored
Merge pull request #141 from bcgov/dev
add openmaps and maps to host cert mapping
2 parents 85ee843 + 01fa5e9 commit 81d0504

File tree

3 files changed

+17
-1
lines changed

3 files changed

+17
-1
lines changed

.github/workflows/jira.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on: [issues, issue_comment]
44
jobs:
55
sync-issues:
66
name: Sync issues to Jira
7-
runs-on: ubuntu-latest
7+
runs-on: ubuntu-22.04
88
steps:
99
- uses: ikethecoder/sync-issues-github-jira@dev
1010
with:

.github/workflows/pr-reminder.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: 'Send review reminders'
2+
on:
3+
schedule:
4+
- cron: '30 8 * * 1,2,3,4,5' # Scheduled to run at 1:30 AM, weekdays
5+
6+
jobs:
7+
remind:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Run PR reviewer reminder
11+
uses: bcgov/aps-devops/pr-reminder@dev
12+
with:
13+
token: ${{ secrets.GITHUB_TOKEN }}
14+
dry_run: "false"

microservices/kubeApi/clients/ocp_routes.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
host_cert_mapping = {
1919
"data.gov.bc.ca": "data-api.tls",
2020
"api.gov.bc.ca": "data-api.tls",
21+
"maps.gov.bc.ca": "data-api.tls",
22+
"openmaps.gov.bc.ca": "data-api.tls",
2123
"apps.gov.bc.ca": "apps.tls"
2224
}
2325

0 commit comments

Comments
 (0)