Created
April 5, 2018 00:06
-
-
Save ChimeraCoder/bdfe9e331411b89b6e9b99807a1d6990 to your computer and use it in GitHub Desktop.
veneur-global deployment yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: extensions/v1beta1 | |
kind: Deployment | |
metadata: | |
name: veneur-global | |
labels: | |
app: veneur-global | |
spec: | |
minReadySeconds: 10 | |
replicas: 1 | |
template: | |
metadata: | |
labels: | |
app: veneur-global | |
spec: | |
containers: | |
- name: veneur | |
image: index.docker.io/stripe/veneur:3.0.0 | |
ports: | |
- containerPort: 8126 | |
protocol: UDP | |
name: stastd-listen | |
- containerPort: 8127 | |
protocol: TCP | |
name: http | |
env: | |
- name: VENEUR_HTTPADDRESS | |
value: "0.0.0.0:8127" | |
- name: VENEUR_NUMWORKERS | |
value: "3" | |
- name: VENEUR_DATADOGTRACEAPIADDRESS | |
value: "" | |
- name: VENEUR_TAGS | |
value: "reachedglobal:true" | |
- name: VENEUR_DATADOGAPIKEY | |
valueFrom: | |
secretKeyRef: | |
name: datadog | |
key: datadog_api_key | |
terminationGracePeriodSeconds: 30 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment