This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Connects Traefik with cloud provider's load balancer. | |
| # All external traffic comes through here. | |
| kind: Service | |
| apiVersion: v1 | |
| metadata: | |
| name: traefik-ingress-controller | |
| namespace: default | |
| spec: | |
| type: LoadBalancer | |
| loadBalancerIP: <put your load balancer IP address here> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| kind: Middleware | |
| apiVersion: traefik.containo.us/v1alpha1 | |
| metadata: | |
| name: traefik-dashboard-auth | |
| namespace: traefik | |
| spec: | |
| basicAuth: | |
| users: | |
| # admin:password <do not use in production> | |
| # better way would be to use Secret |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| kind: Middleware | |
| apiVersion: traefik.containo.us/v1alpha1 | |
| metadata: | |
| name: linkerd-dashboard-auth | |
| namespace: linkerd | |
| spec: | |
| basicAuth: | |
| users: | |
| # admin:password <do not use in production> | |
| - admin:$apr1$FGdrANYF$f0lAEDTXdWmxNfABopXX01 |
OlderNewer