Skip to content

Instantly share code, notes, and snippets.

@bianpengyuan
Created June 25, 2018 23:02
Show Gist options
  • Save bianpengyuan/3b57b2126bf5dd81918d7eefda36323e to your computer and use it in GitHub Desktop.
Save bianpengyuan/3b57b2126bf5dd81918d7eefda36323e to your computer and use it in GitHub Desktop.
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: zipkin-to-stackdriver
namespace: istio-system
spec:
replicas: 1
selector:
matchLabels:
app: zipkin-to-stackdriver
template:
metadata:
name: zipkin-to-stackdriver
labels:
app: zipkin-to-stackdriver
annotations:
sidecar.istio.io/inject: "false"
spec:
containers:
- name: zipkin-to-stackdriver
image: gcr.io/stackdriver-trace-docker/zipkin-collector
imagePullPolicy: IfNotPresent
ports:
- name: zipkin
containerPort: 9411
---
apiVersion: v1
kind: Service
metadata:
name: zipkin
namespace: istio-system
spec:
ports:
- name: zipkin
port: 9411
selector:
app: zipkin-to-stackdriver
---
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment