
- Add missing label `app.kubernetes.io/part-of: ingress-nginx` for deploy example - Update new labels for docs/deploy and docs/examples - Update new labels for test/e2e and test/manifests - Update new labels for images/nginx Also close #3001
18 lines
325 B
YAML
18 lines
325 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: ingress-nginx
|
|
spec:
|
|
type: NodePort
|
|
ports:
|
|
- name: http
|
|
port: 80
|
|
targetPort: 80
|
|
protocol: TCP
|
|
- name: https
|
|
port: 443
|
|
targetPort: 443
|
|
protocol: TCP
|
|
selector:
|
|
app.kubernetes.io/name: ingress-nginx
|
|
app.kubernetes.io/part-of: ingress-nginx
|