23 lines
421 B
YAML
23 lines
421 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: caddy-config
|
|
namespace: default
|
|
data:
|
|
Caddyfile: |
|
|
{
|
|
debug
|
|
}
|
|
|
|
nginx1.local:8880 {
|
|
reverse_proxy nginx1-service.default.svc.cluster.local:80
|
|
}
|
|
|
|
nginx2.local:8880 {
|
|
reverse_proxy nginx2-service.default.svc.cluster.local:80
|
|
}
|
|
|
|
nginx3.local:8880 {
|
|
reverse_proxy nginx3-service.default.svc.cluster.local:80
|
|
}
|