NOTES.txt 942 B

12345678910111213141516171819202122
  1. Rancher Server has been installed.
  2. NOTE: Rancher may take several minutes to fully initialize. Please standby while Certificates are being issued, Containers are started and the Ingress rule comes up.
  3. Check out our docs at https://rancher.com/docs/
  4. If you provided your own bootstrap password during installation, browse to https://{{ .Values.hostname }} to get started.
  5. If this is the first time you installed Rancher, get started by running this command and clicking the URL it generates:
  6. ```
  7. echo https://{{ .Values.hostname }}/dashboard/?setup=$(kubectl get secret --namespace cattle-system bootstrap-secret -o go-template='{{ "{{" }}.data.bootstrapPassword|base64decode{{ "}}" }}')
  8. ```
  9. To get just the bootstrap password on its own, run:
  10. ```
  11. kubectl get secret --namespace cattle-system bootstrap-secret -o go-template='{{ "{{" }}.data.bootstrapPassword|base64decode{{ "}}" }}{{ "{{" }} "\n" {{ "}}" }}'
  12. ```
  13. Happy Containering!