Skip to content

Commit 0d020ae

Browse files
piotrjaniktoscott
andauthored
fix: invalid helm template for ingress annotations (#51)
* fix: invalid helm template for ingress annotations Signed-off-by: Piotr Janik <piotrjanik@nautilia.pl> * Increment version, rerun docs --------- Signed-off-by: Piotr Janik <piotrjanik@nautilia.pl> Co-authored-by: Tony Scott <toscott1@gmail.com>
1 parent f595870 commit 0d020ae

File tree

4 files changed

+4
-7
lines changed

4 files changed

+4
-7
lines changed

charts/opencost/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ keywords:
99
- kubecost
1010
- opencost
1111
- monitoring
12-
version: 1.9.2
12+
version: 1.10.0
1313
maintainers:
1414
- name: mattray
1515
url: https://mattray.dev

charts/opencost/README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
OpenCost and OpenCost UI
44

5-
![Version: 1.9.1](https://img.shields.io/badge/Version-1.9.1-informational?style=flat-square)
5+
![Version: 1.10.0](https://img.shields.io/badge/Version-1.10.0-informational?style=flat-square)
66
![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
77
![AppVersion: 1.101.2](https://img.shields.io/badge/AppVersion-1.101.2-informational?style=flat-square)
88

@@ -74,6 +74,7 @@ $ helm install opencost opencost/opencost
7474
| podAnnotations | object | `{}` | Annotations to add to the OpenCost Pod |
7575
| podLabels | object | `{}` | Labels to add to the OpenCost Pod |
7676
| podSecurityContext | object | `{}` | Holds pod-level security attributes and common container settings |
77+
| priorityClassName | string | `nil` | Pod priority |
7778
| secretAnnotations | object | `{}` | Annotations to add to the Secret |
7879
| service.annotations | object | `{}` | Annotations to add to the service |
7980
| service.labels | object | `{}` | Labels to add to the service account |
@@ -84,5 +85,3 @@ $ helm install opencost opencost/opencost
8485

8586
----------------------------------------------
8687
Autogenerated from chart metadata using [helm-docs v1.11.0](https://github.com/norwoodj/helm-docs/releases/v1.11.0)
87-
## Docs Generated by [helm-docs](https://github.com/norwoodj/helm-docs)
88-
`helm-docs -t ./README.md.gotmpl`

charts/opencost/README.md.gotmpl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,3 @@ $ helm install opencost opencost/{{ template "chart.name" . }}
2121
{{ template "chart.valuesSection" . }}
2222

2323
{{ template "helm-docs.versionFooter" . }}
24-
## Docs Generated by [helm-docs](https://github.com/norwoodj/helm-docs)
25-
`helm-docs -t ./README.md.gotmpl`

charts/opencost/templates/ingress.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
labels:
77
{{- include "opencost.labels" . | nindent 4 }}
88
{{- with .Values.opencost.ui.ingress.annotations }}
9-
annotations: {{ toYaml .Values.opencost.ui.ingress.annotations | nindent 4 }}
9+
annotations: {{ toYaml . | nindent 4 }}
1010
{{- end }}
1111
spec:
1212
{{- if .Values.opencost.ui.ingress.ingressClassName }}

0 commit comments

Comments
 (0)