Skip to content
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

feature: improve support for kind ingress #81

Closed
1 task
pdettori opened this issue Oct 17, 2023 · 0 comments · Fixed by #82
Closed
1 task

feature: improve support for kind ingress #81

pdettori opened this issue Oct 17, 2023 · 0 comments · Fixed by #82
Assignees

Comments

@pdettori
Copy link
Collaborator

Feature Description

Currently we are patching kind ingress to enable ingress on port 9443. We can avoid that by setting up proper port mapping when creating the kind cluster.

Proposed Solution

Use following configuration for kind:

apiVersion: kind.x-k8s.io/v1alpha4
networking:
  ipFamily: dual
nodes:
- role: control-plane
  kubeadmConfigPatches:
  - |
    kind: InitConfiguration
    nodeRegistration:
      kubeletExtraArgs:
        node-labels: "ingress-ready=true"
  extraPortMappings:
  - containerPort: 80
    hostPort: 9080
    protocol: TCP
  - containerPort: 443
    hostPort: 9443
    protocol: TCP

Want to contribute?

  • I would like to work on this issue.

Additional Context

No response

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant