Skip to content

Commit

Permalink
Add gateway CRDs to appmesh-controller (#190)
Browse files Browse the repository at this point in the history
  • Loading branch information
Fawad Khaliq authored Jul 10, 2020
1 parent c2cc3bf commit be8f3fa
Show file tree
Hide file tree
Showing 8 changed files with 780 additions and 12 deletions.
4 changes: 2 additions & 2 deletions stable/appmesh-controller/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apiVersion: v1
name: appmesh-controller
description: App Mesh controller Helm chart for Kubernetes
version: 1.0.2
appVersion: 1.0.0
version: 1.1.0
appVersion: 1.1.0
home: https://github.com/aws/eks-charts
icon: https://raw.githubusercontent.com/aws/eks-charts/master/docs/logo/aws.png
sources:
Expand Down
766 changes: 765 additions & 1 deletion stable/appmesh-controller/crds/crds.yaml

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions stable/appmesh-controller/templates/rbac.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ rules:
resources: [pods/status]
verbs: [get, patch, update]
- apiGroups: [appmesh.k8s.aws]
resources: [meshes, virtualnodes, virtualrouters, virtualservices]
resources: [gatewayroutes, meshes, virtualgateways, virtualnodes, virtualrouters, virtualservices]
verbs: [create, delete, get, list, patch, update, watch]
- apiGroups: [appmesh.k8s.aws]
resources: [meshes/status, virtualnodes/status, virtualrouters/status, virtualservices/status]
resources: [gatewayroutes/status, meshes/status, virtualgateways/status, virtualnodes/status, virtualrouters/status, virtualservices/status]
verbs: [get, patch, update]
---
apiVersion: rbac.authorization.k8s.io/v1
Expand Down
2 changes: 1 addition & 1 deletion stable/appmesh-controller/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ region: ""

image:
repository: 602401143452.dkr.ecr.us-west-2.amazonaws.com/amazon/appmesh-controller
tag: v1.0.0
tag: v1.1.0
pullPolicy: IfNotPresent

sidecar:
Expand Down
4 changes: 4 additions & 0 deletions stable/appmesh-controller/webhookconfig.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
# controller. This file is referenced in the templates for
# generating the admission webhooks for the resources
customResources:
- name: gatewayroute
resource: gatewayroutes
- name: mesh
resource: meshes
- name: virtualnode
Expand All @@ -12,3 +14,5 @@ customResources:
resource: virtualrouters
- name: virtualservice
resource: virtualservices
- name: virtualgateway
resource: virtualgateways
2 changes: 1 addition & 1 deletion stable/appmesh-gateway/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v1
name: appmesh-gateway
description: App Mesh Gateway Helm chart for Kubernetes
version: 0.1.1
version: 0.1.2
appVersion: 1.0.0
home: https://github.com/aws/eks-charts
icon: https://raw.githubusercontent.com/aws/eks-charts/master/docs/logo/aws.png
Expand Down
8 changes: 4 additions & 4 deletions stable/appmesh-gateway/templates/gateway.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ spec:
- portMapping:
port: 8088
protocol: http
logging:
accessLog:
file:
path: "/dev/stdout"
logging:
accessLog:
file:
path: "/dev/stdout"
{{- end }}
2 changes: 1 addition & 1 deletion stable/aws-calico/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ apiVersion: v1
description: A Helm chart for installing Calico on AWS
website: https://docs.aws.amazon.com/eks/latest/userguide/calico.html
name: aws-calico
version: 0.2.3
version: 0.2.4
appVersion: 3.8.1
icon: https://www.projectcalico.org/wp-content/uploads/2019/09/Calico_Logo_Large_Calico.png

0 comments on commit be8f3fa

Please sign in to comment.