Skip to content

test skipper-ingress with eks karpenter ipv6 #9627

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 18 commits into
base: dev
Choose a base branch
from
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
11 changes: 7 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-7
spec:
replicas: 1
selector:
Expand All @@ -18,7 +18,7 @@ spec:
metadata:
labels:
application: kube-ingress-aws-controller
version: "{{ $version }}"
version: pr-752-7
annotations:
kubernetes-log-watcher/scalyr-parser: |
[{"container": "controller", "parser": "keyValue"}]
Expand All @@ -35,9 +35,12 @@ 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-test-eks:pr-752-7
args:
- --target-access-mode=HostPort
- --ip-addr-type=dualstack
- --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
3 changes: 0 additions & 3 deletions cluster/manifests/skipper/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -96,20 +96,17 @@ spec:
serviceAccountName: skipper-ingress
terminationGracePeriodSeconds: {{ .Cluster.ConfigItems.skipper_termination_grace_period }}
dnsPolicy: ClusterFirstWithHostNet
hostNetwork: true
containers:
- name: skipper-ingress
image: "{{ .image }}"
terminationMessagePolicy: FallbackToLogsOnError
ports:
- name: ingress-port
containerPort: 9999
hostPort: 9999
protocol: TCP
{{ if or (eq .Cluster.ConfigItems.nlb_switch "pre") (eq .Cluster.ConfigItems.nlb_switch "exec") }}
- name: http-redirect
containerPort: 9998
hostPort: 9998
protocol: TCP
{{ end }}
env:
Expand Down