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
{{ message }}
This repository has been archived by the owner on Aug 3, 2020. It is now read-only.
After running kubectl create -f deploy/ranchervm.yaml, I got a deployment like below. I am curious what is svclb-frontend, where did it come from? It is not define in the yaml as I see.
iserver [~]$ kubectl -n ranchervm-system get all
NAME READY STATUS RESTARTS AGE
pod/backend-6f99c67d5-7g4t7 1/1 Running 0 23m
pod/frontend-f4697b7db-n4wch 1/1 Running 0 23m
pod/ip-controller-86c9f98d94-ptxdn 2/2 Running 0 23m
pod/svclb-frontend-55wsw 0/1 Pending 0 2m17s
pod/vm-controller-8699fb5c95-4wdpx 1/1 Running 0 23m
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
service/backend ClusterIP 10.43.86.11 <none> 9500/TCP 23m
service/frontend ClusterIP 10.43.22.230 <none> 8000/TCP 23m
NAME DESIRED CURRENT READY UP-TO-DATE AVAILABLE NODE SELECTOR AGE
daemonset.apps/svclb-frontend 1 1 0 1 0 <none> 23m
NAME READY UP-TO-DATE AVAILABLE AGE
deployment.apps/backend 1/1 1 1 23m
deployment.apps/frontend 1/1 1 1 23m
deployment.apps/ip-controller 1/1 1 1 23m
deployment.apps/vm-controller 1/1 1 1 23m
NAME DESIRED CURRENT READY AGE
replicaset.apps/backend-6f99c67d5 1 1 1 23m
replicaset.apps/frontend-f4697b7db 1 1 1 23m
replicaset.apps/ip-controller-86c9f98d94 1 1 1 23m
replicaset.apps/vm-controller-8699fb5c95 1 1 1 23m
The text was updated successfully, but these errors were encountered:
@liyimeng the point of svclb-frontend is to provide access to the Rancher VM console/API. This can easily be replaced with an ingress object (or just use the kubernetes service proxy)
Thanks @Oats87 a lot! I have traefik lb deployed, and I have define ingress using traefik, it dose work. How to I remove this LB? I don't see when it was deployed from.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
After running
kubectl create -f deploy/ranchervm.yaml
, I got a deployment like below. I am curious what is svclb-frontend, where did it come from? It is not define in the yaml as I see.The text was updated successfully, but these errors were encountered: