Skip to content
Snippets Groups Projects
Unverified Commit 88b502f2 authored by Keita Mochizuki's avatar Keita Mochizuki Committed by GitHub
Browse files

add ingress controller admission svc (#11309)

parent db316a56
Branches
Tags
No related merge requests found
...@@ -34,6 +34,7 @@ ...@@ -34,6 +34,7 @@
- { name: role-admission-webhook, file: role-admission-webhook.yml, type: role } - { name: role-admission-webhook, file: role-admission-webhook.yml, type: role }
- { name: rolebinding-admission-webhook, file: rolebinding-admission-webhook.yml, type: rolebinding } - { name: rolebinding-admission-webhook, file: rolebinding-admission-webhook.yml, type: rolebinding }
- { name: admission-webhook-job, file: admission-webhook-job.yml, type: job } - { name: admission-webhook-job, file: admission-webhook-job.yml, type: job }
- { name: svc-ingress-nginx-controller-admission, file: svc-ingress-nginx-controller-admission.yml, type: svc }
- name: NGINX Ingress Controller | Append extra templates to NGINX Ingress Template list for service - name: NGINX Ingress Controller | Append extra templates to NGINX Ingress Template list for service
set_fact: set_fact:
......
apiVersion: v1
kind: Service
metadata:
labels:
app.kubernetes.io/name: ingress-nginx
app.kubernetes.io/part-of: ingress-nginx
name: ingress-nginx-controller-admission
namespace: {{ ingress_nginx_namespace }}
spec:
type: ClusterIP
ports:
- appProtocol: https
name: https-webhook
port: 443
targetPort: webhook
selector:
app.kubernetes.io/name: ingress-nginx
app.kubernetes.io/part-of: ingress-nginx
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment