Skip to content

Commit

Permalink
Merge pull request #2 in DEV/k8s-helm-charts from DEV-39795-support-s…
Browse files Browse the repository at this point in the history
…pecifying-an-escalation to develop

* commit '19cb6d08103676af5b9b3cfcf6baf4de2b6853e9':
  DEV-39795: Support specifying an escalation chain for collectors
  DEV-39795: Support specifying an escalation chain for collectors
  • Loading branch information
Jeremy Tang committed Oct 18, 2018
2 parents 453b400 + 19cb6d0 commit 7788b7a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions argus/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ $ helm upgrade \
--set imageTag="$IMAGE_TAG" \
--set collector.replicas="$COLLECTOR_REPLICAS" \
--set collector.size="$COLLECTOR_SIZE" \
--set collector.escalationChainID="$COLLECTOR_ESCALATION_CHAIN_ID" \
argus logicmonitor/argus
```

Expand All @@ -41,3 +42,4 @@ Optional Values:
- **imagePullPolicy (default: `"Always"`):**
- **imageRepository (default: `"logicmonitor/argus"`):** The respository to use for the Argus docker image.
- **imageTag:** The argus container image tag to use.
- **collector.escalationChainID:** The ID of the escalation chain of the collectors.
3 changes: 3 additions & 0 deletions argus/templates/collectorset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,6 @@ spec:
orchestrator: Kubernetes
replicas: {{ required "A valid .Values.collector.replicas entry is required!" .Values.collector.replicas }}
size: {{ required "A valid .Values.collector.size entry is required!" .Values.collector.size }}
{{- if .Values.collector.escalationChainID }}
escalationChainID: {{ .Values.collector.escalationChainID }}
{{- end }}

0 comments on commit 7788b7a

Please sign in to comment.