Skip to content

Commit

Permalink
default value for DATADOG_APM_ENABLED in kops helmfile (#153)
Browse files Browse the repository at this point in the history
default to "false" since APM is an upgrade feature in datadog
  • Loading branch information
daveyu authored and osterman committed Jun 15, 2018
1 parent 0ad1884 commit c7b69c0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions rootfs/conf/kops/helmfile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -921,9 +921,10 @@ releases:

- name: "datadog.collectEvents"
value: "true"


### Optional: DATADOG_APM_ENABLED; e.g. true
- name: "datadog.apmEnabled"
value: '{{ env "DATADOG_APM_ENABLED" }}'
value: '{{ env "DATADOG_APM_ENABLED" | default "false" }}'

- name: "rbac.create"
value: "false"
Expand Down

0 comments on commit c7b69c0

Please sign in to comment.