-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Simplify getting the SSH key from the logs #1179
Comments
Now that #1212 is landed, shall we cut over our docs to tell people to download |
If yes, we should probably land this before the next release? :) |
Can you elaborate on this suggestion? I thought the objection to "just use fluxctl" is that it means you have to go on an excursion to explain where to download fluxctl and so on. |
Where to download was only one step. This was what we had documented before: fluxpod=$(kubectl get pod -l name=flux -o name | awk -F / '{ print $2; }')
kubectl port-forward "$fluxpod" 10080:3030 &
export FLUX_URL="http://localhost:10080/api/flux"
fluxctl list-controllers --all-namespaces |
Maybe we can do this once we put up packages for |
A quick update, fluxctl is
I personally feel we're not too far off from recommending the use of I'll start working on a PR for this. |
As part of #1130 @squaremo and I talked about how to most easily get the SSH keys from the log.
We currently
fluxctl identity
(which requires having downloaded the binary and put it into$PATH
) insite/using.md
.The latter can be convenient, but maybe we should agree on one way to go about it.
@squaremo brought up the idea of using something like
kubectl run --image weaveworks/flux -- identity
.The text was updated successfully, but these errors were encountered: