This chart will install the "2048 game" web application in a Kubernetes cluster.
Install the app with default settings:
# adds the repo
helm repo add suse-lab-setup https://opensource.suse.com/lab-setup
helm repo update
# installs the chart
helm upgrade --install game-2048 suse-lab-setup/game-2048 --namespace demo --create-namespace
Look at values.yaml for the configuration.
Clean-up:
helm delete game-2048
kubectl delete ns demo