ingress-controller
Here are 183 public repositories matching this topic...
-
Updated
Jul 29, 2022 - Go
Right now we have some basic information about how to get involved under https://projectcontour.io/community/. I think we could drive more attention to the community efforts if we had a more prevalent "Get involved" section on the front page, similar to what https://inclusivenaming.org/ does.
I see this as multiple parts:
- Update/modify the current /community page to look a bit better and hav
-
Updated
Jul 29, 2022 - Go
Most of our table driven unit tests goes in this format:
for idx, tt := range cases {
t.Run("case-name", func(t *testing.T) {
// do something on tt
})
}
The loop iteration variable tt is used in the inner function, while t.Run runs the function in param in a separated goroutine. If we use t.Parallel() to run test cases in parallel, the variable inside may not be the
-
Updated
Jul 29, 2022 - HCL
more cli commands
Is there an updated ARM template that uses VMSS for nodePool creations, add them to app gateway backend pool and I would like to know how we can egress the traffic through APP Gateway as it would be the only public IP for the cluster and I still get a random IP address when I try to access a web page from a pod.
https://raw.githubusercontent.com/Azure/application-gateway-kubernetes-ingress/ma
-
Updated
Jul 27, 2022 - Go
We run the controller with limited AWS STS credentials (issued by Vault). These credentials are not allowed to perform any operation in iam:*, which causes startup to fail. To get around this we've custom built the controller to comment out the IAM lookup, as all our certs are in ACM. It'd be nice if we could disable this in the official build via command line flag, or have it warn and move o
-
Updated
Jul 12, 2022 - HCL
-
Updated
Jul 28, 2022 - Go
-
Updated
Oct 27, 2020 - Go
-
Updated
Jul 27, 2022 - Go
-
Updated
Sep 6, 2021 - PHP
-
Updated
Dec 22, 2021 - Go
-
Updated
Jul 25, 2022 - Go
-
Updated
Jul 28, 2022 - Mustache
-
Updated
Apr 19, 2018 - Go
-
Updated
Feb 5, 2021 - Go
-
Updated
Apr 7, 2022 - Go
-
Updated
May 30, 2022
-
Updated
Jul 14, 2021 - Go
-
Updated
Dec 29, 2021 - HCL
-
Updated
Jul 16, 2019 - PowerShell
-
Updated
Jan 20, 2018 - Go
The impression from the values.yaml description regarding Redis Sentinel use, is to provide three config options, but does not make clear that the address also needs to be updated to reflect the Sentinel port (typically 26379). This is the relevant extract:
redis:
# The addrs value will allow you to set your Redis addresses. If you are
# using a redis cluster, you can l-
Updated
Feb 26, 2021
Improve this page
Add a description, image, and links to the ingress-controller topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the ingress-controller topic, visit your repo's landing page and select "manage topics."
The Helm chart provides the flag
controller.nodeSelectorfor the controller pod which allows to assign it to nodes with a specific label.It would be nice to have a
nodeSelectorflag for the admission jobs (create/patch) too, e.g.:controller.admissionWebhooks.patch.nodeSelector.