https://github.com/yaacov/minivirt-plugin
Mini virtualization console plugin
https://github.com/yaacov/minivirt-plugin
Last synced: 3 months ago
JSON representation
Mini virtualization console plugin
- Host: GitHub
- URL: https://github.com/yaacov/minivirt-plugin
- Owner: yaacov
- License: apache-2.0
- Created: 2022-12-06T10:38:23.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-03-01T10:28:02.000Z (over 2 years ago)
- Last Synced: 2025-03-16T23:42:17.174Z (7 months ago)
- Language: TypeScript
- Size: 477 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# minivirt-plugin
A minimalistic Openshift web console plugin.
## Development
``` bash
# set up a cluster, and a locally running web console
# see instructions below about how to set a minimal kubernetes env using KinD# run the development
npm installnpm run start
```## Build and run the container image
``` bash
# build
podman build -t quay.io/yaacov/minivirt-plugin .# run locally (with locally running Openshift web console, see below)
podman run -it -p 9001:8080 minivirt-plugin
```## Minimal kubernetes enviornment, with locally running web console
``` bash
# create new cluster, as root user
sudo kind create cluster# login as regular user
sudo cp /root/.kube/config ~/.kube/config# create a service account to run the web console
SERVICE_ACCOUNT=forklift-user
NAMESPACE=defaultcat <