Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 716 Bytes

README.md

File metadata and controls

25 lines (17 loc) · 716 Bytes

Helm chart for game 2048

This Helm chart will install Game 2048 on a Kubernetes cluster.

Usage

Helm must be installed to use the chart from the command line. Here is the flow to have the application running in your Kubernetes cluster:

# adds the repo (if not already done)
helm repo add devpro https://devpro.github.io/helm-charts

# retrieves recent information from added repos
helm repo update

# installs the chart (this command can be ran multiple times)
helm upgrade --install game-2048 devpro/game-2048 --create-namespace --namespace sample-apps

Once done, uninstall the chart and clean-up the cluster:

helm delete game-2048
kubectl delete ns sample-apps