Skip to content

Commit 9b42dcc

Browse files
committed
Merge branch 'feat/support-ca-cert-secret-ref' into feat/update-service-handler-to-use-ca-cert-secret-ref
2 parents 3423084 + 75ba988 commit 9b42dcc

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

poetry.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ kopf = "^1.38.0"
1515
kubernetes = "^34.1.0"
1616
orjson = "^3.11.3"
1717
pendulum = "^3.1.0"
18-
pydantic = "^2.12.2"
18+
pydantic = "^2.12.3"
1919
pydantic-settings = "^2.11.0"
2020
requests = "^2.32.5"
2121
semantic-version = "^2.10.0"

tests_integration/test_connector_flows.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ def test_connector_flows_image_change(run_kopf, random_name_generator):
9696
name: {connector_name}
9797
hasStatusNotificationsEnabled: false
9898
image:
99-
tag: "1.74.0"
99+
tag: "1.77.0"
100100
"""
101101
wait_for_deployment = functools.partial(
102102
kubectl_wait_deployment_available,
@@ -120,7 +120,7 @@ def test_connector_flows_image_change(run_kopf, random_name_generator):
120120

121121
# Change image tag
122122
# kubectl patch tc/test-connector-image-local -p '{"spec": {"image": {"tag": "1.63.0"}}}' --type=merge
123-
kubectl_patch(f"tc/{connector_name}", {"spec": {"image": {"tag": "1.75.0"}}})
123+
kubectl_patch(f"tc/{connector_name}", {"spec": {"image": {"tag": "1.78.0"}}})
124124
time.sleep(5)
125125
wait_for_deployment()
126126

@@ -146,7 +146,7 @@ def test_connector_flows_deployment_gone_while_operator_down(
146146
name: {connector_name}
147147
hasStatusNotificationsEnabled: false
148148
image:
149-
tag: "1.63.0"
149+
tag: "1.77.0"
150150
"""
151151

152152
wait_for_deployment = functools.partial(

0 commit comments

Comments
 (0)