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

Commit 951d403

Browse files
authored
Fix Contour helm chart (#4901)
Signed-off-by: Keith Mattix II <[email protected]>
1 parent d40f9b8 commit 951d403

File tree

7 files changed

+10
-9
lines changed

7 files changed

+10
-9
lines changed

.gitignore

+3-2
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@ creds.json
4545
screenlog.*
4646
demo/bin/
4747
*.tgz
48-
!**/charts/*.tgz # dependency charts pulled by Helm
48+
# dependency charts pulled by Helm
49+
!**/charts/*.tgz
4950
*.wasm
5051

5152
## Ignore test coverage files
@@ -84,4 +85,4 @@ rootfs/
8485
envoy_*.json
8586

8687
# Interim files that can stick around from a bad mockgen run.
87-
gomock_reflect_*/
88+
gomock_reflect_*/

charts/osm/Chart.lock

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
dependencies:
22
- name: contour
33
repository: https://charts.bitnami.com/bitnami
4-
version: 5.1.0
5-
digest: sha256:bbc686aab46f03b363c02b9d4423e328d3406f40ce87cfae45f587447175d9b9
6-
generated: "2021-08-03T16:19:34.9654452-07:00"
4+
version: 8.0.4
5+
digest: sha256:93fedd26b88a45f5e98392c050edf7418b89a609a96d1a4c4d0adc9dfe8d9038
6+
generated: "2022-07-13T18:00:50.820831-05:00"

charts/osm/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ kubeVersion: ">= 1.22.9-0"
2525

2626
dependencies:
2727
- name: contour
28-
version: 5.1.0
28+
version: 8.0.4
2929
repository: https://charts.bitnami.com/bitnami
3030
condition: contour.enabled

charts/osm/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ The following table lists the configurable parameters of the osm chart and their
5959

6060
| Key | Type | Default | Description |
6161
|-----|------|---------|-------------|
62-
| contour.contour | object | `{"image":{"registry":"docker.io","repository":"projectcontour/contour","tag":"v1.21.1"}}` | Contour controller configuration |
62+
| contour.contour | object | `{"image":{"registry":"ghcr.io","repository":"projectcontour/contour","tag":"v1.21.1"}}` | Contour controller configuration |
6363
| contour.enabled | bool | `false` | Enables deployment of Contour control plane and gateway |
6464
| contour.envoy | object | `{"image":{"registry":"docker.io","repository":"envoyproxy/envoy-distroless","tag":"v1.22.2"}}` | Contour envoy edge proxy configuration |
6565
| osm.caBundleSecretName | string | `"osm-ca-bundle"` | The Kubernetes secret name to store CA bundle for the root CA used in OSM |

charts/osm/charts/contour-5.1.0.tgz

-55.9 KB
Binary file not shown.

charts/osm/charts/contour-8.0.4.tgz

82.5 KB
Binary file not shown.

charts/osm/values.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -611,7 +611,7 @@ contour:
611611
# -- Contour controller configuration
612612
contour:
613613
image:
614-
registry: docker.io
614+
registry: ghcr.io
615615
repository: projectcontour/contour
616616
tag: v1.21.1
617617
# -- Contour envoy edge proxy configuration
@@ -625,4 +625,4 @@ contour:
625625
# -- SMI configuration
626626
smi:
627627
# -- Enables validation of SMI Traffic Target
628-
validateTrafficTarget: true
628+
validateTrafficTarget: true

0 commit comments

Comments
 (0)