Skip to content

Commit

Permalink
Integrate net-istio-webhook rock (#248)
Browse files Browse the repository at this point in the history
* Integrate net-istio-webhook rock
  • Loading branch information
misohu authored Nov 29, 2024
1 parent c3f3600 commit a8973a6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charms/knative-serving/src/charm.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@


CUSTOM_IMAGE_CONFIG_NAME = "custom_images"
DEFAULT_IMAGES = {}
DEFAULT_IMAGES = {"net-istio-webhook/webhook": "charmedkubeflow/net-istio-webhook:1.12.3-b455143"}


class KnativeServingCharm(CharmBase):
Expand Down
4 changes: 2 additions & 2 deletions charms/knative-serving/tests/unit/test_charm.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,11 +204,11 @@ def test_context_changes(harness):
[
(
yaml.dump({"name1": "image1", "name2": "image2"}),
{"name1": "image1", "name2": "image2"},
{**{"name1": "image1", "name2": "image2"}, **DEFAULT_IMAGES},
),
(
yaml.dump({}),
{},
DEFAULT_IMAGES,
),
],
)
Expand Down

0 comments on commit a8973a6

Please sign in to comment.