Partially revert usage of kustomize for installation (#4159)

This commit is contained in:
Manuel Alejandro de Brito Fontes 2019-06-05 10:59:38 -04:00 committed by GitHub
parent 73d7806b48
commit 78d6ce6e6e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 746 additions and 78 deletions

View file

@ -0,0 +1,24 @@
kind: Service
apiVersion: v1
metadata:
name: ingress-nginx
namespace: ingress-nginx
labels:
app.kubernetes.io/name: ingress-nginx
app.kubernetes.io/part-of: ingress-nginx
spec:
externalTrafficPolicy: Local
type: LoadBalancer
selector:
app.kubernetes.io/name: ingress-nginx
app.kubernetes.io/part-of: ingress-nginx
ports:
- name: http
port: 80
targetPort: http
- name: https
port: 443
targetPort: https
---