Remove minikube and only use kind (#5059)
This commit is contained in:
parent
281139d1a7
commit
0365a7c172
8 changed files with 81 additions and 58 deletions
|
|
@ -7,3 +7,5 @@ bases:
|
|||
images:
|
||||
- name: quay.io/kubernetes-ingress-controller/nginx-ingress-controller
|
||||
newTag: dev
|
||||
patchesStrategicMerge:
|
||||
- service-hostport.yaml
|
||||
25
deploy/kind/service-hostport.yaml
Normal file
25
deploy/kind/service-hostport.yaml
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: nginx-ingress-controller
|
||||
spec:
|
||||
replicas: 1
|
||||
template:
|
||||
metadata:
|
||||
annotations:
|
||||
prometheus.io/port: "10254"
|
||||
prometheus.io/scrape: "true"
|
||||
spec:
|
||||
containers:
|
||||
- name: nginx-ingress-controller
|
||||
ports:
|
||||
- containerPort: 80
|
||||
hostPort: 80
|
||||
- containerPort: 443
|
||||
hostPort: 443
|
||||
nodeSelector:
|
||||
ingress-ready: "true"
|
||||
tolerations:
|
||||
- key: node-role.kubernetes.io/master
|
||||
operator: Equal
|
||||
effect: NoSchedule
|
||||
Loading…
Add table
Add a link
Reference in a new issue