An open API service indexing awesome lists of open source software.

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

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 install

npm 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=default

cat <