You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The question is whether we want to add a label "jaeger" again, to make it easier to query the objects related to simplest. The same can be done by querying based on the label app.kubernetes.io/instance, but that's a lot more work than just typing jaeger.
The README includes the following commands
kubectl get pods -l jaeger=simplest
kubectl logs -l jaeger=simplest
Currently neither of these work as the jaeger label doesn't exist. As a workaround we can do:
kubectl get pods -l app.kubernetes.io/instance=simplest
kubectl logs -l app.kubernetes.io/instance=simplest
NOTE: On Openshift the kubectl logs command also requires that the container name be specified.
The text was updated successfully, but these errors were encountered: