We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The docs say:
kubectl port-forward --namespace=kube-system $(kubectl get pod --namespace=kube-system --selector=name=weave-scope-app -o jsonpath={.items..metadata.name}) 4040
We can simplify this, and align with kubectl create instructions, i.e.:
kubectl create
kubectl port-forward $(kubectl get pod --selector=name=weave-scope-app -o jsonpath={.items..metadata.name}) 4040
Or use --namespace=kube-system everywhere.
--namespace=kube-system
The text was updated successfully, but these errors were encountered:
@tomwilkie as you pointed this out, could you please suggest the preferred fix here?
Sorry, something went wrong.
Deploy Scope into kube-system namespace (fix #1475)
kube-system
c226e55
6408fdd
No branches or pull requests
The docs say:
We can simplify this, and align with
kubectl create
instructions, i.e.:Or use
--namespace=kube-system
everywhere.The text was updated successfully, but these errors were encountered: