File tree Expand file tree Collapse file tree 5 files changed +10
-9
lines changed
charts/cloudcost-exporter Expand file tree Collapse file tree 5 files changed +10
-9
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ type: application
5
5
6
6
# This is the chart version. This version number should be incremented each time you make changes
7
7
# to the chart and its templates, including the app version.
8
- version : 1.0.1
8
+ version : 1.0.2
9
9
10
10
# This is the version of cloudcost-exporter to be deployed, which should be incremented
11
11
# with each release.
Original file line number Diff line number Diff line change 2
2
3
3
Cloud Cost Exporter exports cloud provider agnostic cost metrics to Prometheus.
4
4
5
- ![ Version: 1.0.1 ] ( https://img.shields.io/badge/Version-1.0.1 -informational?style=flat-square ) ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square ) ![ AppVersion: 0.7.13] ( https://img.shields.io/badge/AppVersion-0.7.13-informational?style=flat-square )
5
+ ![ Version: 1.0.2 ] ( https://img.shields.io/badge/Version-1.0.2 -informational?style=flat-square ) ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square ) ![ AppVersion: 0.7.13] ( https://img.shields.io/badge/AppVersion-0.7.13-informational?style=flat-square )
6
6
7
7
## Installing the Chart
8
8
@@ -38,6 +38,7 @@ Documentation per CSP will vary (especially when it comes to authentication). Be
38
38
| nameOverride | string | ` "" ` | Override the name of the release |
39
39
| nodeSelector | object | ` {} ` | Node selector |
40
40
| podAnnotations | object | ` {} ` | Annotations to add to the pod |
41
+ | portName | string | ` "http" ` | Container port name |
41
42
| replicaCount | int | ` 1 ` | Number of replicas |
42
43
| resources.limits.cpu | string | ` "2" ` | CPU limit |
43
44
| resources.limits.memory | string | ` "2Gi" ` | Memory limit |
@@ -46,7 +47,6 @@ Documentation per CSP will vary (especially when it comes to authentication). Be
46
47
| revisionHistoryLimit | int | ` 10 ` | Number of old versions to retain to allow rollback |
47
48
| securityContext.fsGroup | int | ` 10001 ` | Filesystem group to associate for each pod |
48
49
| service.port | int | ` 8080 ` | Service port |
49
- | service.portName | string | ` "http" ` | Service port name |
50
50
| service.protocol | string | ` "TCP" ` | Service protocol |
51
51
| service.type | string | ` "ClusterIP" ` | Service type |
52
52
| serviceAccount.annotations | object | ` {} ` | Annotations to add to the service account |
Original file line number Diff line number Diff line change @@ -34,17 +34,17 @@ spec:
34
34
- {{ . }}
35
35
{{- end }}
36
36
ports :
37
- - name : {{ .Values.service. portName }}
37
+ - name : {{ .Values.portName }}
38
38
containerPort : {{ .Values.service.port }}
39
39
protocol : TCP
40
40
livenessProbe :
41
41
httpGet :
42
42
path : /
43
- port : {{ .Values.service. portName }}
43
+ port : {{ .Values.portName }}
44
44
readinessProbe :
45
45
httpGet :
46
46
path : /
47
- port : {{ .Values.service. portName }}
47
+ port : {{ .Values.portName }}
48
48
resources :
49
49
{{- toYaml .Values.resources | nindent 12 }}
50
50
volumeMounts :
Original file line number Diff line number Diff line change 8
8
type : {{ .Values.service.type }}
9
9
ports :
10
10
- port : {{ .Values.service.port }}
11
- targetPort : http
11
+ targetPort : {{ .Values.portName }}
12
12
protocol : {{ .Values.service.protocol }}
13
13
name : http
14
14
selector :
Original file line number Diff line number Diff line change @@ -19,6 +19,9 @@ imagePullSecrets: []
19
19
# -- Override the name of the release
20
20
nameOverride : " "
21
21
22
+ # -- Container port name
23
+ portName : http
24
+
22
25
# -- Override the full name of the chart and release
23
26
fullnameOverride : " "
24
27
@@ -46,8 +49,6 @@ service:
46
49
type : ClusterIP
47
50
# -- Service port
48
51
port : 8080
49
- # -- Service port name
50
- portName : http
51
52
# -- Service protocol
52
53
protocol : TCP
53
54
You can’t perform that action at this time.
0 commit comments