Skip to content

Commit 95a0e17

Browse files
authored
Merge pull request #286 from cloudability/add-region-helm
add upload region to helm template
2 parents 3e5044a + 0c1a006 commit 95a0e17

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ On AWS, both AMD64 and ARM architectures are supported.
2828

2929
### Deploying with Helm
3030

31-
Instructions for deploying the metrics-agent using Helm can be found [here](https://cloudability.github.io/metrics-agent/). For helm versioning this repository follows the [simple 1-1 versioning](https://codefresh.io/docs/docs/new-helm/helm-best-practices/#simple-1-1-versioning) strategy where the chart version is in snyc with the actual application.
31+
Instructions for deploying the metrics-agent using Helm can be found [here](https://cloudability.github.io/metrics-agent/). For helm versioning this repository follows the [simple 1-1 versioning](https://codefresh.io/docs/docs/new-helm/helm-best-practices/#simple-1-1-versioning) strategy where the chart version is in sync with the actual application.
3232

3333
### Unsupported Configurations
3434

charts/metrics-agent/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ type: application
1414

1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
17-
version: 2.11.37
17+
version: 2.11.38
1818

1919
# This is the version number of the application being deployed. This version number should be
2020
# incremented each time you make changes to the application.
21-
appVersion: 2.11.37
21+
appVersion: 2.11.38

charts/metrics-agent/templates/deployment.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@ spec:
4949
value: {{ .Values.clusterName }}
5050
- name: CLOUDABILITY_POLL_INTERVAL
5151
value: {{ .Values.pollInterval | quote }}
52+
- name: CLOUDABILITY_UPLOAD_REGION
53+
value: {{ .Values.uploadRegion }}
5254
{{- if .Values.extraEnv }}
5355
{{- toYaml .Values.extraEnv | nindent 12 }}
5456
{{- end }}

charts/metrics-agent/values.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,12 @@ secretName: ""
2121
clusterName: ""
2222
# The interval in seconds to poll metrics.
2323
pollInterval: 180
24+
# The region to upload metrics data to. See README for accepted values
25+
uploadRegion: "us-west-2"
2426

2527
image:
2628
name: cloudability/metrics-agent
27-
tag: 2.11.37
29+
tag: 2.11.38
2830
pullPolicy: Always
2931

3032
imagePullSecrets: []

version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
package version
22

33
// VERSION is the current version of the agent
4-
var VERSION = "2.11.37"
4+
var VERSION = "2.11.38"

0 commit comments

Comments
 (0)