Skip to content

test skipper-ingress with eks karpenter ipv6 with hostNetwork and hostPort #9637

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 24 commits into
base: dev
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
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
3 changes: 3 additions & 0 deletions cluster/cluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1884,6 +1884,9 @@ Resources:
- Action: 'ec2:DescribeVpcs'
Effect: Allow
Resource: '*'
- Action: 'ec2:DescribeVpcPeeringConnections'
Effect: Allow
Resource: '*'
- Action: 'iam:CreateServiceLinkedRole'
Effect: Allow
Resource: '*'
Expand Down
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
12 changes: 8 additions & 4 deletions cluster/manifests/ingress-controller/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ metadata:
namespace: kube-system
labels:
application: kube-ingress-aws-controller
version: "{{ $version }}"
version: pr-752-12
spec:
replicas: 1
selector:
Expand All @@ -18,7 +18,7 @@ spec:
metadata:
labels:
application: kube-ingress-aws-controller
version: "{{ $version }}"
version: pr-752-12
annotations:
kubernetes-log-watcher/scalyr-parser: |
[{"container": "controller", "parser": "keyValue"}]
Expand All @@ -35,9 +35,13 @@ spec:
serviceAccountName: kube-ingress-aws-controller
containers:
- name: controller
image: "{{ $image }}"
image: 926694233939.dkr.ecr.eu-central-1.amazonaws.com/staging_namespace/teapot/kube-ingress-aws-controller:pr-752-12
args:
- --target-access-mode=HostPort
- --ip-addr-type=dualstack
- --target-ip-addr-type=ipv6
- --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