Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions cluster/manifests/ingress-controller/01-rbac.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,15 @@ rules:
verbs:
- patch
- update
- apiGroups:
- ""
resources:
- pods
- pods/status
verbs:
- get
- list
- watch
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
Expand Down
4 changes: 3 additions & 1 deletion cluster/manifests/ingress-controller/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@ spec:
- name: controller
image: "{{ $image }}"
args:
- --target-access-mode=HostPort
- --target-access-mode=AWSCNI
- --target-cni-namespace=kube-system
- --target-cni-pod-labelselector=application=skipper-ingress,component=ingress
- --stack-termination-protection
- --ssl-policy={{ .Cluster.ConfigItems.kube_aws_ingress_controller_ssl_policy }}
- --idle-connection-timeout={{ .Cluster.ConfigItems.kube_aws_ingress_controller_idle_timeout }}
Expand Down