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 was archived by the owner on Apr 26, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+11Lines changed: 11 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -111,6 +111,17 @@ Use following `devcontainer.json` to start:
111
111
Unfortunately `devcontainer.json` is not yet supported with VScode Remote-SSH plugin. You can track recent development [here](https://github.com/microsoft/vscode-remote-release/issues/2994).
112
112
The easiest way to use avd-all-in-one container with remote SSH is creating a simple alias: `alias avd="sudo docker run --rm -it -v $(pwd):/home/avd/projects/ avdteam/avd-all-in-one"`
113
113
114
+
115
+
### run avd-all-in-one in k8s
116
+
117
+
[k8s-avd-cvp.yml](k8s-avd-cvp.yml) is an example pod definition for running avd-all-in-one on CloudVision (CentOS), however
118
+
it should work on other linux distributions (the CVP env vars won't be needed in that case).
119
+
120
+
1. Download the docker image: `docker pull avdteam/avd-all-in-one`
121
+
2. Create avd group and user: `groupadd -g 1000 avd && useradd avd -u 1000 -g 1000`
122
+
3. Create projects in `/home/avd`
123
+
4. Deploy the k8s pod: `kubectl apply -f /cvpi/conf/kubernetes/k8s-avd-cvp.yml`
0 commit comments