Skip to content
This repository was archived by the owner on Jul 11, 2023. It is now read-only.

Commit fdef5c5

Browse files
authored
charts/osm: use official Contour image (#3998)
By default, the Bitnami Helm chart for Contour uses an image from the Bitnami repo, which is not the image officially used by projectcontour upstream. This change uses the default upstream image and registry for the Contour controller. Signed-off-by: Shashank Ram <[email protected]>
1 parent 4961af9 commit fdef5c5

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

charts/osm/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,7 @@ The following table lists the configurable parameters of the osm chart and their
150150
| OpenServiceMesh.vault.role | string | `"openservicemesh"` | Vault role to be used by Open Service Mesh |
151151
| OpenServiceMesh.vault.token | string | `""` | token that should be used to connect to Vault |
152152
| OpenServiceMesh.webhookConfigNamePrefix | string | `"osm-webhook"` | Prefix used in name of the webhook configuration resources |
153+
| contour.contour | object | `{"image":{"registry":"docker.io","repository":"projectcontour/contour","tag":"v1.18.0"}}` | Contour controller configuration |
153154
| contour.enabled | bool | `false` | Enables deployment of Contour control plane and gateway |
154155
| contour.envoy | object | `{"image":{"registry":"docker.io","repository":"envoyproxy/envoy-alpine","tag":"v1.19.0"}}` | Contour envoy edge proxy configuration |
155156

charts/osm/values.yaml

+6
Original file line numberDiff line numberDiff line change
@@ -301,6 +301,12 @@ OpenServiceMesh:
301301
contour:
302302
# -- Enables deployment of Contour control plane and gateway
303303
enabled: false
304+
# -- Contour controller configuration
305+
contour:
306+
image:
307+
registry: docker.io
308+
repository: projectcontour/contour
309+
tag: v1.18.0
304310
# -- Contour envoy edge proxy configuration
305311
envoy:
306312
image:

0 commit comments

Comments
 (0)