37 lines
No EOL
893 B
YAML
37 lines
No EOL
893 B
YAML
---
|
|
kind: Ingress
|
|
apiVersion: networking.k8s.io/v1
|
|
metadata:
|
|
name: ingress-with-basicauth
|
|
namespace: default
|
|
annotations:
|
|
# Configuration basic authentication for the Ingress
|
|
nginx.ingress.kubernetes.io/auth-type: "basic"
|
|
nginx.ingress.kubernetes.io/auth-secret-type: "auth-file"
|
|
nginx.ingress.kubernetes.io/auth-secret: "default/basic-auth"
|
|
nginx.ingress.kubernetes.io/auth-realm: "Authentication Required"
|
|
|
|
spec:
|
|
ingressClassName: nginx
|
|
rules:
|
|
- host: whoami.localhost
|
|
http:
|
|
paths:
|
|
- path: /basicauth
|
|
pathType: Exact
|
|
backend:
|
|
service:
|
|
name: whoami
|
|
port:
|
|
number: 80
|
|
|
|
---
|
|
kind: Secret
|
|
apiVersion: v1
|
|
metadata:
|
|
name: basic-auth
|
|
namespace: default
|
|
type: Opaque
|
|
data:
|
|
# user:password
|
|
auth: dXNlcjp7U0hBfVc2cGg1TW01UHo4R2dpVUxiUGd6RzM3bWo5Zz0= |