From 8e466ac94a9f55da33770dbb639fc92e54df689e Mon Sep 17 00:00:00 2001 From: sido Date: Wed, 30 May 2018 23:21:29 +0200 Subject: [PATCH] chore(docs): updated documentation --- README.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..a81d5ef --- /dev/null +++ b/README.md @@ -0,0 +1,25 @@ +# MOLGENIS Helm templates + + +## Usefull commands for Kubernetes + +- kubectl get pods + Gets alls running instances of containers from a certain deployment +- kubectl get services + Gets all services from a deployment +- kubectl get pv + Gets all persistant volumes +- kubectl get pvc + Gets all persistent volume claims +- kubectl get deployments + Gets all deployments (comparable with docker-compose) + +## Usefull commands for Helm + +- helm install . + Do it in the root of the project where the Chart.yaml is located + It installs a release of a kubernetes stack. You also store this as an artifact in a kubernetes repository +- helm list + Lists all installed releases +- helm delete #release# + Performs a sort of mvn clean on your workspace. Very handy for zombie persistant volumes or claims. \ No newline at end of file