Skip to content
This repository was archived by the owner on Jan 16, 2026. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions wavefront/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ The following tables lists the configurable parameters of the Wavefront chart an
| `clusterName` | Unique name for the Kubernetes cluster | `KUBERNETES_CLUSTER_NAME` |
| `wavefront.url` | Wavefront URL for your cluster | `https://YOUR_CLUSTER.wavefront.com` |
| `wavefront.token` | Wavefront API Token | `YOUR_API_TOKEN` |
| `wavefront.tokenFromSecret` | Wavefront API Token from a Secret | `nil` |
| `collector.enabled` | Setup and enable the Wavefront collector to gather metrics | `true` |
| `collector.image.repository` | Wavefront collector image registry and name | `projects.registry.vmware.com/tanzu_observability/kubernetes-collector` |
| `collector.image.tag` | Wavefront collector image tag | `{TAG_NAME}` |
Expand Down
2 changes: 1 addition & 1 deletion wavefront/templates/api-token-secret.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{- if .Values.wavefront.token }}
{{- if and .Values.wavefront.token (not .Values.wavefront.tokenFromSecret) }}
apiVersion: v1
kind: Secret
metadata:
Expand Down
8 changes: 8 additions & 0 deletions wavefront/templates/proxy-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,19 @@ spec:
env:
- name: WAVEFRONT_URL
value: {{ .Values.wavefront.url }}/api
{{- if .Values.wavefront.tokenFromSecret }}
- name: WAVEFRONT_TOKEN
valueFrom:
secretKeyRef:
name: {{ .Values.wavefront.tokenFromSecret }}
key: api-token
{{- else }}
- name: WAVEFRONT_TOKEN
valueFrom:
secretKeyRef:
name: {{ template "wavefront.fullname" . }}
key: api-token
{{- end }}
- name: WAVEFRONT_PROXY_ARGS
value: {{ .Values.proxy.args }}
{{- if .Values.proxy.tracePort }} --traceListenerPorts {{ .Values.proxy.tracePort }}{{- end -}}
Expand Down
2 changes: 2 additions & 0 deletions wavefront/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ installationMethod: helm
wavefront:
url: https://YOUR_CLUSTER.wavefront.com
token: YOUR_API_TOKEN
# OPTIONAL, Allow to use a secret to pull the credentials, the required key is `api-token`
tokenFromSecret: ""


## Wavefront Collector is responsible to get all Kubernetes metrics from your cluster.
Expand Down