diff --git a/collector/hack/deploy/kubernetes/6-wavefront-proxy.yaml b/collector/hack/deploy/kubernetes/6-wavefront-proxy.yaml index aff931b79..1bd2dca31 100644 --- a/collector/hack/deploy/kubernetes/6-wavefront-proxy.yaml +++ b/collector/hack/deploy/kubernetes/6-wavefront-proxy.yaml @@ -23,7 +23,7 @@ spec: value: arm64 containers: - name: wavefront-proxy - image: projects.registry.vmware.com/tanzu_observability/proxy:13.4 + image: wavefronthq/proxy:13.7 imagePullPolicy: IfNotPresent env: - name: WAVEFRONT_URL diff --git a/deploy/scenarios/wavefront-proxy-version.yaml b/deploy/scenarios/wavefront-proxy-version.yaml new file mode 100644 index 000000000..59f2502ef --- /dev/null +++ b/deploy/scenarios/wavefront-proxy-version.yaml @@ -0,0 +1,65 @@ +# Need to change YOUR_CLUSTER and YOUR_API_TOKEN accordingly +apiVersion: apps/v1 +kind: Deployment +metadata: + annotations: + kubectl.kubernetes.io/last-applied-configuration: "" + labels: + app.kubernetes.io/component: controller-manager + app.kubernetes.io/name: wavefront + name: wavefront-proxy + namespace: observability-system +spec: + replicas: 1 + selector: + matchLabels: + app: wavefront-proxy + template: + metadata: + labels: + app: wavefront-proxy + spec: + tolerations: + - effect: NoSchedule + key: kubernetes.io/arch + value: arm64 + containers: + - name: wavefront-proxy + image: wavefronthq/proxy:13.7 + imagePullPolicy: IfNotPresent + env: + - name: WAVEFRONT_URL + value: https://YOUR_CLUSTER.wavefront.com/api/ + - name: WAVEFRONT_TOKEN + value: YOUR_API_TOKEN + # Uncomment the below lines to consume Zipkin/Istio traces + #- name: WAVEFRONT_PROXY_ARGS + # value: --traceZipkinListenerPorts 9411 + ports: + - containerPort: 2878 + protocol: TCP + # Uncomment the below lines to consume Zipkin/Istio traces + #- containerPort: 9411 + # protocol: TCP + securityContext: + privileged: false +--- +apiVersion: v1 +kind: Service +metadata: + name: wavefront-proxy + labels: + app: wavefront-proxy + namespace: default +spec: + ports: + - name: wavefront + port: 2878 + protocol: TCP + # Uncomment the below lines to consume Zipkin/Istio traces + #- name: http + # port: 9411 + # targetPort: 9411 + # protocol: TCP + selector: + app: wavefront-proxy