-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Your Name
committed
Nov 5, 2019
1 parent
e1cb92a
commit e09c07e
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,25 @@ | ||
# virtVNC | ||
|
||
noVNC for kubevirt | ||
|
||
## Deploy | ||
|
||
```bash | ||
kubectl apply -f https://github.com/wavezhang/virtVNC/raw/master/k8s/virtvnc.yaml | ||
``` | ||
|
||
## Usage | ||
|
||
1. Get node port of ```virtvnc``` service | ||
```bash | ||
kubectl get svc -n kubevirt virtvnc | ||
``` | ||
2. Visit following url in browser | ||
``` | ||
http://NODEIP:NODEPORT/ | ||
``` | ||
|
||
If you want manager virtual machines in other namespace, you can specify namespace using query param namespace like following: | ||
``` | ||
http://NODEIP:NODEPORT/index.html?namespace=test | ||
``` |