Last active
February 5, 2020 11:24
-
-
Save jwsy/aa301ce277bb201ae63e342a7462a91a to your computer and use it in GitHub Desktop.
rancher install log
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PS C:\Users\jyee> helm repo add rancher-stable https://releases.rancher.com/server-charts/stable | |
"rancher-stable" has been added to your repositories | |
PS C:\Users\jyee> helm repo update | |
Hang tight while we grab the latest from your chart repositories... | |
...Successfully got an update from the "rancher-stable" chart repository | |
...Successfully got an update from the "jetstack" chart repository | |
Update Complete. ⎈ Happy Helming!⎈ | |
PS C:\Users\jyee> kubectl create namespace cattle-system | |
namespace/cattle-system created | |
PS C:\Users\jyee> helm install rancher rancher-stable/rancher --namespace cattle-system --set hostname=rancher.localdev | |
NAME: rancher | |
LAST DEPLOYED: Sun Jan 19 08:46:02 2020 | |
NAMESPACE: cattle-system | |
STATUS: deployed | |
REVISION: 1 | |
TEST SUITE: None | |
NOTES: | |
Rancher Server has been installed. | |
NOTE: Rancher may take several minutes to fully initialize. Please standby while Certificates are being issued and Ingress comes up. | |
Check out our docs at https://rancher.com/docs/rancher/v2.x/en/ | |
Browse to https://rancher.localdev | |
Happy Containering! | |
PS C:\Users\jyee> kubectl.exe -n cattle-system get pods | |
NAME READY STATUS RESTARTS AGE | |
rancher-59d9584c98-4vtqv 1/1 Running 2 78s | |
rancher-59d9584c98-957p2 1/1 Running 1 78s | |
rancher-59d9584c98-jl9l7 1/1 Running 1 78s | |
PS C:\Users\jyee> kubectl.exe -n cattle-system get ingresses | |
NAME HOSTS ADDRESS PORTS AGE | |
rancher rancher.localdev 172.18.12.69 80, 443 2m3s | |
PS C:\Users\jyee> minikube ip | |
172.18.12.69 | |
PS C:\Users\jyee> kubectl get nodes | |
NAME STATUS ROLES AGE VERSION | |
minikube Ready master 19m v1.17.0 | |
PS C:\Users\jyee> kubectl get pods --all-namespaces | |
NAMESPACE NAME READY STATUS RESTARTS AGE | |
cattle-system rancher-59d9584c98-4vtqv 1/1 Running 2 4m51s | |
cattle-system rancher-59d9584c98-957p2 1/1 Running 1 4m51s | |
cattle-system rancher-59d9584c98-jl9l7 1/1 Running 1 4m51s | |
cert-manager cert-manager-754d9b75d9-lfxs5 1/1 Running 0 6m32s | |
cert-manager cert-manager-cainjector-85fbdf788-blgph 1/1 Running 0 6m32s | |
cert-manager cert-manager-webhook-76f9b64b45-bw65n 1/1 Running 0 6m32s | |
kube-system coredns-6955765f44-gfk5c 1/1 Running 0 19m | |
kube-system coredns-6955765f44-w75kp 1/1 Running 0 19m | |
kube-system etcd-minikube 1/1 Running 0 19m | |
kube-system kube-addon-manager-minikube 1/1 Running 0 19m | |
kube-system kube-apiserver-minikube 1/1 Running 0 19m | |
kube-system kube-controller-manager-minikube 1/1 Running 0 19m | |
kube-system kube-proxy-lmzfx 1/1 Running 0 19m | |
kube-system kube-scheduler-minikube 1/1 Running 0 19m | |
kube-system nginx-ingress-controller-6fc5bcc8c9-2vs5j 1/1 Running 0 13m | |
kube-system storage-provisioner 1/1 Running 0 19mPS C:\Users\jyee> kubectl.exe -n cattle-system get pods | |
NAME READY STATUS RESTARTS AGE | |
rancher-59d9584c98-4vtqv 0/1 Running 2 61s | |
rancher-59d9584c98-957p2 1/1 Running 1 61s | |
rancher-59d9584c98-jl9l7 0/1 Running 1 61s |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment