File tree Expand file tree Collapse file tree 4 files changed +8
-5
lines changed
charts/yet-another-cloudwatch-exporter Expand file tree Collapse file tree 4 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v2
2
2
name : yet-another-cloudwatch-exporter
3
3
description : Yace - Yet Another CloudWatch Exporter
4
4
type : application
5
- version : 0.36 .0
5
+ version : 0.37 .0
6
6
appVersion : " v0.60.0"
7
7
home : https://github.com/nerdswords/helm-charts
8
8
sources :
Original file line number Diff line number Diff line change 1
1
# yet-another-cloudwatch-exporter
2
2
3
- ![ Version: 0.36 .0] ( https://img.shields.io/badge/Version-0.36 .0-informational?style=flat-square ) ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square ) ![ AppVersion: v0.60.0] ( https://img.shields.io/badge/AppVersion-v0.60.0-informational?style=flat-square )
3
+ ![ Version: 0.37 .0] ( https://img.shields.io/badge/Version-0.37 .0-informational?style=flat-square ) ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square ) ![ AppVersion: v0.60.0] ( https://img.shields.io/badge/AppVersion-v0.60.0-informational?style=flat-square )
4
4
5
5
Yace - Yet Another CloudWatch Exporter
6
6
@@ -28,6 +28,7 @@ helm install nerdswords/yet-another-cloudwatch-exporter
28
28
| aws.secret.includesSessionToken | bool | ` false ` | |
29
29
| aws.secret.name | string | ` nil ` | |
30
30
| config | string | `"apiVersion: v1alpha1\nsts-region: eu-west-1\ndiscovery:\n exportedTagsOnMetrics:\n AWS/ES:\n - Name\n jobs:\n - type: AWS/ES\n regions:\n - eu-west-1\n searchTags:\n - key: type\n value: ^(easteregg| k8s)$\n metrics:\n - name: FreeStorageSpace\n statistics:\n - Sum\n period: 60\n length: 600\n - name: ClusterStatus.green\n statistics:\n - Minimum\n period: 60\n length: 600\n - name: ClusterStatus.yellow\n statistics:\n - Maximum\n period: 60\n length: 600\n - name: ClusterStatus.red\n statistics:\n - Maximum\n period: 60\n length: 600"` | |
31
+ | containerPort | int | ` 5000 ` | |
31
32
| extraArgs | object | ` {} ` | |
32
33
| extraEnv | list | ` [] ` | |
33
34
| extraEnvFrom | list | ` [] ` | |
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ metadata:
6
6
labels :
7
7
{{- include "yet-another-cloudwatch-exporter.labels" . | nindent 4 }}
8
8
{{- with .Values.podAnnotations }}
9
- annotations :
9
+ annotations :
10
10
{{- toYaml . | nindent 4 }}
11
11
{{- end }}
12
12
spec :
48
48
- --{{ $key }}={{ $value }}
49
49
{{- end }}
50
50
{{- if .Values.lifecycle }}
51
- lifecycle :
51
+ lifecycle :
52
52
{{- toYaml .Values.lifecycle | nindent 12 }}
53
53
{{- end }}
54
54
volumeMounts :
99
99
{{- end }}
100
100
ports :
101
101
- name : {{ .Values.portName }}
102
- containerPort : 5000
102
+ containerPort : {{ .Values.containerPort }}
103
103
protocol : TCP
104
104
livenessProbe :
105
105
httpGet :
Original file line number Diff line number Diff line change @@ -36,6 +36,8 @@ podLabels: {}
36
36
37
37
portName : http
38
38
39
+ containerPort : 5000
40
+
39
41
podSecurityContext : {}
40
42
# fsGroup: 2000
41
43
You can’t perform that action at this time.
0 commit comments