Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump proxy version to 13.7 #589

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
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
2 changes: 1 addition & 1 deletion collector/hack/deploy/kubernetes/6-wavefront-proxy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
65 changes: 65 additions & 0 deletions deploy/scenarios/wavefront-proxy-version.yaml
Original file line number Diff line number Diff line change
@@ -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
Loading