stable/goldpinger/README.md
As of Nov 13, 2020, charts in this repo will no longer be updated. For more information, see the Helm Charts Deprecation and Archive Notice, and Update.
Goldpinger makes calls between its instances for visibility and alerting.
As part of the deprecation timeline, another repository has taken over the chart here
Please make PRs / Issues here from now on.
$ helm install stable/goldpinger
This chart bootstraps a Goldpinger deployment on a Kubernetes cluster using the Helm package manager.
To install the chart with the release name my-release:
$ helm install --name my-release stable/goldpinger
The command deploys Goldpinger on the Kubernetes cluster in the default configuration. The configuration section lists the parameters that can be configured during installation.
Tip: List all releases using
helm list
To uninstall/delete the my-release deployment:
$ helm delete my-release
The command removes all the Kubernetes components associated with the chart and deletes the release.
The following table lists the configurable parameters of the Goldpinger chart and their default values.
| Parameter | Description | Default |
|---|---|---|
image.repository | Goldpinger image | bloomberg/goldpinger |
image.tag | Goldpinger image tag | 2.0.0 |
pullPolicy | Image pull policy | IfNotPresent |
rbac.create | Install required rbac clusterrole | true |
serviceAccount.create | Enable ServiceAccount creation | true |
serviceAccount.name | ServiceAccount for Goldpinger pods | default |
goldpinger.port | Goldpinger app port listen to | 80 |
extraEnv | Extra environment variables | [] |
service.type | Kubernetes service type | LoadBalancer |
service.port | Service HTTP port | 80 |
service.annotations | Service annotations | {} |
ingress.enabled | Enable ingress controller resource | false |
ingress.annotations | Ingress annotations | {} |
ingress.path | Ingress path | / |
ingress.hosts | URLs to address your Goldpinger installation | goldpinger.local |
ingress.tls | Ingress TLS configuration | [] |
priorityClassName | Set a priorityClassName for pod | `` |
podAnnotations | Pod annotations | {} |
nodeSelector | Node labels for pod assignment | {} |
tolerations | List of node taints to tolerate | [] |
affinity | Map of node/pod affinities | {} |
resources | CPU/Memory resource requests/limits | {} |
podSecurityPolicy.enabled | Enable podSecuritypolicy | false |
podSecurityPolicy.policyName | PodSecurityPolicy Name | unrestricted-psp |
serviceMonitor.enabled | Set this to true to create ServiceMonitor for Prometheus operator | false |
serviceMonitor.additionalLabels | Additional labels that can be used so ServiceMonitor will be discovered by Prometheus | {} |
serviceMonitor.honorLabels | honorLabels chooses the metric's labels on collisions with target labels. | false |
serviceMonitor.namespace | namespace where servicemonitor resource should be created | the same namespace as goldpinger |
serviceMonitor.scrapeInterval | interval between Prometheus scraping | 30s |
Specify each parameter using the --set key=value[,key=value] argument to helm install. For example,
$ helm install --name my-release \
--set goldpinger.port=8080,serviceAccount.name=goldpinger \
stable/goldpinger
Alternatively, a YAML file that specifies the values for the above parameters can be provided while installing the chart. For example,
$ helm install --name my-release -f values.yaml stable/goldpinger
Tip: You can use the default values.yaml
This chart provides support for Ingress resource. If you have an available Ingress Controller such as Nginx or Traefik you maybe want to set ingress.enabled to true and choose an ingress.hostname for the URL. Then, you should be able to access the installation using that address.