mirror of https://github.com/sgoudham/k8s
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
551 B
YAML
14 lines
551 B
YAML
2 years ago
|
# It's VERY hard to verify that kubernetes certificates are signed by them.
|
||
|
# Mostly due to: https://github.com/kubernetes/dashboard/issues/4684
|
||
|
|
||
|
# Traefik's insecureSkipVerify doesn't validate the internal chain of certifictes
|
||
|
# and therefore allows the entire thing to work. DON'T ACTUALLY RUN THIS IN PRODUCTION
|
||
|
# ref: https://doc.traefik.io/traefik/routing/services/#insecureskipverify
|
||
|
apiVersion: traefik.io/v1alpha1
|
||
|
kind: ServersTransport
|
||
|
metadata:
|
||
|
name: insecure-skip-verify
|
||
|
namespace: kubernetes-dashboard
|
||
|
spec:
|
||
|
insecureSkipVerify: true
|