Installs the web analytics application Matomo.
helm install stable/matomoThis chart bootstraps a Matomo deployment on a Kubernetes cluster using the Helm package manager.
- Kubernetes 1.8+ with Beta APIs enabled
To install the chart with the release name my-release:
helm install --name my-release stable/matomoThe command deploys matomo on the Kubernetes cluster in the default configuration.
To uninstall/delete the my-release deployment:
helm delete my-releaseThe command removes all the Kubernetes components associated with the chart and deletes the release.
The following table lists the configurable parameters and their default values.
| Parameter | Description | Default |
|---|---|---|
replicas |
Number of nodes | 1 |
persistence.enabled |
Enable persistence using PVC | true |
persistence.storageClass |
PVC Storage Class for Matomo volume | nil (uses alpha storage annotation) |
persistence.accessMode |
PVC Access Mode for Matomo volume | ReadWriteOnce |
persistence.size |
PVC Storage Request for Matomo volume | 10Gi |
persistence.path |
Path to mount the volume at, to use other images | /var/www/html |
For more information please refer to the Matomo documentation.
Specify each parameter using the --set key=value[,key=value] argument to helm install. For example,
helm install --name my-release \
--set "phpFpm.scrapeUri=tcp://myphp-fpm:9000/status" \
stable/matomoAlternatively, a YAML file that specifies the values for the parameters can be provided while installing the chart. For example,
helm install --name my-release -f ./values.yaml stable/matomo