|
You are here |
ectobit.com | ||
| | | | |
www.paulsblog.dev
|
|
| | | | | Use Traefik Ingress Controller as Proxy in Kubernetes (k8s) to provide load balancing, name-based virtual hosting, and SSL termination | |
| | | | |
xvnpw.github.io
|
|
| | | | | In my previous post about Apache APISIX I have found path traversal in uri-blocker plugin. In this text I will focus on yet another ingress controller which is Traefik. It has feature called forward auth. At the end I will mention HAProxy ingress controller. | |
| | | | |
blog.nobugware.com
|
|
| | | | | Following my earlier post about Traefik 2 and Kubernetes, here are some advanced configuration examples and a full yaml example at the end of this post: Protecting a route with a password Create an htpasswd file named users for a user admin htpasswd -c users admin Use kubectl to create the secret (easier for multi lines file). kubectl create secret generic admin-authsecret --from-file=users Create a middleware for authentication: apiVersion: traefik.containo.us/v1alpha1 kind: Middleware metadata: name: a... | |
| | | | |
managing.blue
|
|
| | | dexidp.io contains valueable information on how to configure and run DexIdp, but even though they provide a docker container, there is scarce information on how to configure and run it. So let's create a DexIdp deployment in a Docker Desktop kubectl create deployment dexidp --image dexidp/dex We see from the Dockerfile that dex is being... | ||