-
Notifications
You must be signed in to change notification settings - Fork 8.1k
Closed
Labels
Milestone
Description
Passing this environment to the ansible installer:
{
"cluster_flavour": "ocp",
"istio": {
"release_tag_name": "",
"delete_resources": true,
"dest": "/tmp/istio",
"jaeger": true,
"samples": ["bookinfo"]
}
}
Notice the jaeger property is set to true. As per https://github.com/istio/istio/tree/master/install/ansible where it says:
An example of an invocation where we want to deploy Jaeger instead of Zipkin would be:
ansible-playbook main.yml -e '{"istio": {"jaeger": true}}'
I expect Jaeger to be installed and not Zipkin. However, after running the playbook, zipkin is installed, and jaeger is not:
$ oc get pods --selector=app=zipkin -n istio-system
NAME READY STATUS RESTARTS AGE
zipkin-3088650775-j2vbl 1/1 Running 0 14m
$ oc get pods --selector=app=jaeger -n istio-system
No resources found.