Skip to content
This repository has been archived by the owner on Jun 29, 2022. It is now read-only.

Commit

Permalink
contour: Update to v1.9.0
Browse files Browse the repository at this point in the history
Release Notes:
https://github.com/projectcontour/contour/releases/tag/v1.9.0

Signed-off-by: knrt10 <kautilya@kinvolk.io>
  • Loading branch information
knrt10 committed Oct 29, 2020
1 parent 4bda536 commit 20070e6
Show file tree
Hide file tree
Showing 8 changed files with 1,149 additions and 1,139 deletions.
2 changes: 1 addition & 1 deletion assets/charts/components/contour/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ version: 0.3.0

# This is the version number of the upstream Contour
# https://github.com/projectcontour/contour/releases
appVersion: v1.7.0
appVersion: v1.9.0

description: Contour is a Kubernetes ingress controller using Lyft's Envoy proxy.
home: https://projectcontour.io/
Expand Down
2,207 changes: 1,092 additions & 1,115 deletions assets/charts/components/contour/crds/01-crds.yaml

Large diffs are not rendered by default.

16 changes: 16 additions & 0 deletions assets/charts/components/contour/templates/01-contour-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ metadata:
namespace: projectcontour
data:
contour.yaml: |
#
# server:
# determine which XDS Server implementation to utilize in Contour.
# xds-server-type: contour
# specify the xDS version to use when serving resources to Envoy.
# xds-server-version: v2
#
# should contour expect to be running inside a k8s cluster
# incluster: true
#
Expand All @@ -22,6 +29,9 @@ data:
# SNI defined for a vhost.
fallback-certificate:
# name: fallback-secret-name
# namespace: projectcontour
envoy-client-certificate:
# name: envoy-client-cert-secret-name
# namespace: projectcontour
# The following config shows the defaults for the leader election.
# leaderelection:
Expand Down Expand Up @@ -70,3 +80,9 @@ data:
# stream-idle-timeout: 5m
# max-connection-duration: infinity
# connection-shutdown-grace-period: 5s
#
# Envoy cluster settings.
# cluster:
# configure the cluster dns lookup family
# valid options are: auto (default), v4, v6
# dns-lookup-family: auto
10 changes: 3 additions & 7 deletions assets/charts/components/contour/templates/02-job-certgen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ metadata:
name: contour-certgen
namespace: projectcontour
---
apiVersion: rbac.authorization.k8s.io/v1beta1
apiVersion: rbac.authorization.k8s.io/v1
kind: RoleBinding
metadata:
name: contour
Expand All @@ -19,7 +19,7 @@ subjects:
name: contour-certgen
namespace: projectcontour
---
apiVersion: rbac.authorization.k8s.io/v1beta1
apiVersion: rbac.authorization.k8s.io/v1
kind: Role
metadata:
name: contour-certgen
Expand All @@ -36,7 +36,7 @@ rules:
apiVersion: batch/v1
kind: Job
metadata:
name: contour-certgen-v1.7.0
name: contour-certgen-v1.9.0
namespace: projectcontour
spec:
ttlSecondsAfterFinished: 0
Expand All @@ -47,10 +47,6 @@ spec:
spec:
containers:
- name: contour
# This version is set to latest because Job specs are immutable;
# if we change this on each version, you can no longer upgrade
# just by applying the deployment YAML.
# See #2423, #2395, #2150, and #2030 for earlier questions about this.
image: {{.Values.contour.image}}:latest
imagePullPolicy: Always
command:
Expand Down
3 changes: 1 addition & 2 deletions assets/charts/components/contour/templates/02-rbac.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---

apiVersion: rbac.authorization.k8s.io/v1beta1
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: contour
Expand All @@ -12,4 +12,3 @@ subjects:
- kind: ServiceAccount
name: contour
namespace: projectcontour

22 changes: 22 additions & 0 deletions assets/charts/components/contour/templates/02-role-contour.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,12 @@ rules:
- get
- list
- watch
- apiGroups:
- apiextensions.k8s.io
resources:
- customresourcedefinitions
verbs:
- list
- apiGroups:
- networking.k8s.io
resources:
Expand Down Expand Up @@ -68,6 +74,22 @@ rules:
- create
- get
- update
- apiGroups:
- projectcontour.io
resources:
- extensionservices
verbs:
- get
- list
- watch
- apiGroups:
- projectcontour.io
resources:
- extensionservices/status
verbs:
- create
- get
- update
- apiGroups:
- projectcontour.io
resources:
Expand Down
4 changes: 2 additions & 2 deletions assets/charts/components/contour/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ monitoring:

contour:
image: docker.io/projectcontour/contour
tag: v1.7.0
tag: v1.9.0

envoy:
image: docker.io/envoyproxy/envoy
tag: v1.15.0
tag: v1.16.0
serviceType:

nodeAffinity: {}
Expand Down
24 changes: 12 additions & 12 deletions pkg/assets/generated_assets.go

Large diffs are not rendered by default.

0 comments on commit 20070e6

Please sign in to comment.