kube/testapp/certman-istio-operator
2019-08-10 21:59:44 +02:00
..
hooks renamed controller to operator 2019-08-10 21:59:44 +02:00
cleanup.sh renamed controller to operator 2019-08-10 21:59:44 +02:00
crd.yaml renamed controller to operator 2019-08-10 21:59:44 +02:00
Dockerfile renamed controller to operator 2019-08-10 21:59:44 +02:00
Makefile renamed controller to operator 2019-08-10 21:59:44 +02:00
pod.yaml renamed controller to operator 2019-08-10 21:59:44 +02:00
rbac.yaml renamed controller to operator 2019-08-10 21:59:44 +02:00
README.md renamed controller to operator 2019-08-10 21:59:44 +02:00

Istio Cert Manager Operator

The Istio Cert Manager is an addon operator to support Cert-Manager's ACME HTTP01 Issuer with Istio Gateway and VirtualService integration.

Install

Create the Custom Resource Definition:

kubectl apply -f crd.yaml

Grant permissions for the new operator:

kubectl apply -f rbac.yaml

Create the operator pod:

kubectl apply -f pod.yaml

Cleanup

kubectl -n cert-manager exec certman-istio-operator /cleanup.sh
kubectl delete -f pod.yaml
kubectl delete -f rbac.yaml
kubectl delete -f crd.yaml