mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-06-12 09:24:23 +00:00
19 lines
340 B
YAML
19 lines
340 B
YAML
apiVersion: extensions/v1beta1
|
|
kind: Ingress
|
|
metadata:
|
|
name: nginx
|
|
labels:
|
|
app.kubernetes.io/component: nginx
|
|
spec:
|
|
rules:
|
|
- host: $(DEPLOYMENT_NAME).example.com
|
|
http:
|
|
paths:
|
|
- backend:
|
|
serviceName: nginx
|
|
servicePort: 80
|
|
path: /
|
|
tls:
|
|
- hosts:
|
|
- $(DEPLOYMENT_NAME).example.com
|