This repository has been archived by the owner on Mar 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
jaeger
robbaronbu edited this page Aug 14, 2017
·
2 revisions
// jaeger-openshift
github: https://github.com/jaegertracing/jaeger-openshift
c login -u system:admin oc new-project jaeger oc process -f https://raw.githubusercontent.com/jaegertracing/jaeger-openshift/master/production/jaeger-production-template.yml | oc create -n jaeger -f -
The documentation says to use cluster-admin, though this is not needed as jaeger is not shutting down any projects, it is only tracing the projects. since logging uses cluster-reader privileges, I have given jaeger the same.
oc policy add-role-to-user cluster-reader developer -n jaeger
Hotrods was used to test jaeger. In the hotrod example, they seem to be using hostports. Edited the scc to enable host ports:
1) oc describe scc restricted
2) oc edit scc restricted
allowHostPorts: true (switched to true from false).