Clone and install the helm chart to get going with the Bioc RedisParam on K8s.
Clone the repo
git clone https://github.com/mtmorgan/k8s-redis-bioc-example.git
Install the helm chart
helm install k8s-redis-bioc-example/helm-chart/
Get list of running helm charts
helm list <release name>
Get status of the installed chart
helm status <release name>
Stop the chart
helm delete <release name>
This should work
## minikube start
kubectl cluster-info
brew install helm
Very useful options to check how the templates are forming,
--dry-run
doesn't actually install the chart and run it.
helm install --dry-run k8s-redis-bioc-example/helm-chart/
--debug
prints out the templates with the values.yaml embedded in them
helm install --dry-run --debug k8s-redis-bioc-example/helm-chart/
Any setting in the values.yaml file of the helm chart, can be changed in two ways,
In the values.yaml file directly, where you can modify, for example,
the Rstudio login password rstudioPassword
or the number of
workers you want to deploy workers.poolSize
workers.poolSize: 5 # Number of workers in the cluster
...
rstudioPassword: bioc # RStudio password on manager
The other way is while deploying the helm chart,
helm install k8s-redis-bioc-example/helm-chart/ \
--set rstudioPassword=biocuser,workers.poolSize=10
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.