Skip to content

Commit da5b550

Browse files
authored
Merge pull request #6324 from bcgov/chore/oc-deployer
chore(0000): update Airflow image version
2 parents 3e2ff86 + f0143c6 commit da5b550

25 files changed

+45
-16
lines changed

helm/tools/Chart.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ dependencies:
1717
- name: sorry-cypress
1818
repository: https://sorry-cypress.github.io/charts
1919
version: 1.20.0
20-
digest: sha256:cb46129f6c0f305fd8e66be03de5212128a8f2d54b6b9c6b795b6b732e809ad3
21-
generated: "2025-08-15T06:11:31.228098616Z"
20+
digest: sha256:ae449569b2d3e0f09ecd8a68c242b2b7e21854a70f59d4ed9080488af58c50fe
21+
generated: "2025-08-18T12:32:09.384857059-07:00"

helm/tools/dags/mailchimp_subscription_prod.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
description="A DAG to update Mailchimp segment",
1818
schedule="0 3 * * *",
1919
start_date=datetime.now() - timedelta(weeks=1),
20-
is_paused_upon_creation=False,
20+
is_paused_upon_creation=True,
2121
catchup=False,
2222
) as dag:
2323
t1 = PythonOperator(

helm/tools/dags/provisioner_prod.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,12 @@
1313
REGISTRY_PROVISION_SA_ID = os.getenv("PROD_PROVISION_SA_ID")
1414
REGISTRY_PROVISION_SA_SECRET = os.getenv("PROD_PROVISION_SA_SECRET")
1515

16-
with DAG(dag_id="provisioner_prod", schedule="*/7 * * * *", start_date=datetime.now() - timedelta(minutes=8)) as dag:
16+
with DAG(
17+
dag_id="provisioner_prod",
18+
schedule="*/7 * * * *",
19+
start_date=datetime.now() - timedelta(minutes=8),
20+
is_paused_upon_creation=True,
21+
) as dag:
1722
t1 = PythonOperator(
1823
task_id="fetch-products-mark-completed-prod",
1924
python_callable=fetch_products_mark_completed,

helm/tools/dags/provisioner_test.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,12 @@
1313
REGISTRY_PROVISION_SA_ID = os.getenv("TEST_PROVISION_SA_ID")
1414
REGISTRY_PROVISION_SA_SECRET = os.getenv("TEST_PROVISION_SA_SECRET")
1515

16-
with DAG(dag_id="provisioner_test", schedule="*/7 * * * *", start_date=datetime.now() - timedelta(minutes=8)) as dag:
16+
with DAG(
17+
dag_id="provisioner_test",
18+
schedule="*/7 * * * *",
19+
start_date=datetime.now() - timedelta(minutes=8),
20+
is_paused_upon_creation=True,
21+
) as dag:
1722
t1 = PythonOperator(
1823
task_id="fetch-products-mark-completed-test",
1924
python_callable=fetch_products_mark_completed,

helm/tools/dags/request_review_reminder_dev.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
description="A DAG to send reminders for review of private cloud requests",
2525
schedule="0 0 * * *",
2626
start_date=datetime.now() - timedelta(weeks=1),
27-
is_paused_upon_creation=False,
27+
is_paused_upon_creation=True,
2828
catchup=False,
2929
) as dag:
3030
t1 = PythonOperator(

helm/tools/dags/request_review_reminder_prod.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
description="A DAG to send reminders for review of private cloud requests",
2525
schedule="20 0 * * *",
2626
start_date=datetime.now() - timedelta(weeks=1),
27-
is_paused_upon_creation=False,
27+
is_paused_upon_creation=True,
2828
catchup=False,
2929
) as dag:
3030
t1 = PythonOperator(

helm/tools/dags/request_review_reminder_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
description="A DAG to send reminders for review of private cloud requests",
2525
schedule="10 0 * * *",
2626
start_date=datetime.now() - timedelta(weeks=1),
27-
is_paused_upon_creation=False,
27+
is_paused_upon_creation=True,
2828
catchup=False,
2929
) as dag:
3030
t1 = PythonOperator(

helm/tools/dags/sonarscan_dev.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
schedule="0 3 * * *",
2121
start_date=YESTERDAY,
2222
max_active_tasks=CONCURRENCY,
23+
is_paused_upon_creation=True,
2324
) as dag:
2425

2526
# Step 1. Identify and gather information for all currently active projects, including their host details.

helm/tools/dags/sonarscan_prod.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
schedule="0 9 * * *",
2121
start_date=YESTERDAY,
2222
max_active_tasks=CONCURRENCY,
23+
is_paused_upon_creation=True,
2324
) as dag:
2425

2526
# Step 1. Identify and gather information for all currently active projects, including their host details.

helm/tools/dags/sonarscan_test.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
schedule="0 6 * * *",
2121
start_date=YESTERDAY,
2222
max_active_tasks=CONCURRENCY,
23+
is_paused_upon_creation=True,
2324
) as dag:
2425

2526
# Step 1. Identify and gather information for all currently active projects, including their host details.

0 commit comments

Comments
 (0)