This chart provides example of some of the important features of Helm.
The chart installs a guestbook application.
Add the repository to your local environment:
$ helm repo add apphub https://apphub.aliyuncs.com
To install the chart with release name of guestbook
:
$ helm install guestbook apphub/guestbook
The following tables lists the configurable parameters of the chart and their default values.
Parameter | Description | Default |
---|---|---|
image.repository |
Image repository | resouer/guestbook |
image.tag |
Image tag | v1 |
image.pullPolicy |
Image pull policy | Always |
service.type |
Service type | LoadBalancer |
service.port |
Service port | 3000 |
redis.slaveEnabled |
Redis slave enabled | true |
redis.port |
Redis port | 6379 |
Specify each parameter using the --set [key=value]
argument to helm install
. For example,
$ helm install apphub/guestbook --set service.type=NodePort
TBD
TBD: Link to Kruise Tutorial
To completely uninstall/delete the guestbook
deployment:
$ helm delete --purge guestbook
The command removes all the Kubernetes components associated with the chart and deletes the release.