diff --git a/README.adoc b/README.adoc index 2a791063d..3d289261e 100644 --- a/README.adoc +++ b/README.adoc @@ -19,6 +19,7 @@ To install the operator, run: [source,bash] ---- +kubectl create -f https://raw.githubusercontent.com/jaegertracing/jaeger-operator/master/deploy/crd/io_v1alpha1_jaeger_crd.yaml kubectl create -f https://raw.githubusercontent.com/jaegertracing/jaeger-operator/master/deploy/service_account.yaml kubectl create -f https://raw.githubusercontent.com/jaegertracing/jaeger-operator/master/deploy/role.yaml kubectl create -f https://raw.githubusercontent.com/jaegertracing/jaeger-operator/master/deploy/role_binding.yaml @@ -44,6 +45,7 @@ The instructions from the previous section also work on OpenShift given that the ---- oc login -u system:admin +oc create -f https://raw.githubusercontent.com/jaegertracing/jaeger-operator/master/deploy/crd/io_v1alpha1_jaeger_crd.yaml oc create -f https://raw.githubusercontent.com/jaegertracing/jaeger-operator/master/deploy/service_account.yaml oc create -f https://raw.githubusercontent.com/jaegertracing/jaeger-operator/master/deploy/role.yaml oc create -f https://raw.githubusercontent.com/jaegertracing/jaeger-operator/master/deploy/role_binding.yaml @@ -338,6 +340,9 @@ Similar to the installation, just run: [source,bash] ---- -kubectl delete -f deploy/operator.yaml -kubectl delete -f deploy/rbac.yaml +kubectl delete -f https://raw.githubusercontent.com/jaegertracing/jaeger-operator/master/deploy/operator.yaml +kubectl delete -f https://raw.githubusercontent.com/jaegertracing/jaeger-operator/master/deploy/role_binding.yaml +kubectl delete -f https://raw.githubusercontent.com/jaegertracing/jaeger-operator/master/deploy/role.yaml +kubectl delete -f https://raw.githubusercontent.com/jaegertracing/jaeger-operator/master/deploy/service_account.yaml +kubectl delete -f https://raw.githubusercontent.com/jaegertracing/jaeger-operator/master/deploy/crd/io_v1alpha1_jaeger_crd.yaml ----