Attention: Deprecation notice for Bintray, JCenter, GoCenter and ChartCenter. Learn More
pnnl-miscscripts/console
Chart version: 1.0.12
Api version: v1
App version: 1.0.12
Console access from Kubernetes. Adds IPMI Support.
application
Chart Type
Active
Status
Unknown
License
4858
Downloads
https://pnnl-miscscripts.github.io/charts
Set me up:
helm repo add center https://repo.chartcenter.io
Install Chart:
helm install console center/pnnl-miscscripts/console
Versions (0)
View all
Console
The Console chart spawns a pod per console you have in your cluster.
Currently, the only driver is ipmitool.
Install Chart
To install the Chart into your Kubernetes cluster :
helm install --namespace "console" --name "console" pnnl-miscscripts/console
After installation succeeds, you can get a status of Chart
helm status "console"
If you want to delete your Chart, use this command:
helm delete --purge "console"
Console configuration
Add your hosts to the host list like:
hosts:
- host: p1
ip: 192.168.1.20
secret: ipmi
- host: p2
ip: 192.168.1.21
secret: ipmi
Where host is the name for the host. Ip is the ipmi bmc’s ip or hostname. Secret is a Kubernetes secret in the same namespace with key username = ipmi username and password = ipmi password.
For example, to create a secret named ipmi that can be used with this chart:
kubectl create secret generic ipmi --namespace console --from-literal=username=ADMIN --from-literal=password=ADMIN