Skip to content

Commit

Permalink
Bump the Helm version to 1.30.0 and set the app version to 1.109.0 (#179
Browse files Browse the repository at this point in the history
)

* update image repo

Signed-off-by: Cliff Colvin <[email protected]>

* Bump the Helm version and set the app version to 1.109.0

Includes #178

Signed-off-by: Matt Ray <[email protected]>

---------

Signed-off-by: Cliff Colvin <[email protected]>
Signed-off-by: Matt Ray <[email protected]>
Co-authored-by: Cliff Colvin <[email protected]>
  • Loading branch information
mattray and cliffcolvin authored Mar 4, 2024
1 parent 4183ccf commit aacbdeb
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 17 deletions.
8 changes: 4 additions & 4 deletions charts/opencost/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
apiVersion: v2
appVersion: 1.108.0
appVersion: 1.109.0
name: opencost
description: OpenCost and OpenCost UI
type: application
keywords:
- cloud-costs
- cost-optimization
- finops
- kubecost
- opencost
- monitoring
version: 1.29.1
- opencost
version: 1.30.0
maintainers:
- name: mattray
- name: toscott
Expand Down
12 changes: 6 additions & 6 deletions charts/opencost/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

OpenCost and OpenCost UI

![Version: 1.29.0](https://img.shields.io/badge/Version-1.29.0-informational?style=flat-square)
![Version: 1.30.0](https://img.shields.io/badge/Version-1.30.0-informational?style=flat-square)
![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
![AppVersion: 1.108.0](https://img.shields.io/badge/AppVersion-1.108.0-informational?style=flat-square)
![AppVersion: 1.109.0](https://img.shields.io/badge/AppVersion-1.109.0-informational?style=flat-square)

## Maintainers

Expand Down Expand Up @@ -54,8 +54,8 @@ $ helm install opencost opencost/opencost
| opencost.exporter.extraEnv | object | `{}` | Any extra environment variables you would like to pass on to the pod |
| opencost.exporter.extraVolumeMounts | list | `[]` | A list of volume mounts to be added to the pod |
| opencost.exporter.image.pullPolicy | string | `"IfNotPresent"` | Exporter container image pull policy |
| opencost.exporter.image.registry | string | `"quay.io"` | Exporter container image registry |
| opencost.exporter.image.repository | string | `"kubecost1/kubecost-cost-model"` | Exporter container image name |
| opencost.exporter.image.registry | string | `"ghcr.io"` | Exporter container image registry |
| opencost.exporter.image.repository | string | `"opencost/opencost"` | Exporter container image name |
| opencost.exporter.image.tag | string | `""` (use appVersion in Chart.yaml) | Exporter container image tag |
| opencost.exporter.livenessProbe.enabled | bool | `true` | Whether probe is enabled |
| opencost.exporter.livenessProbe.failureThreshold | int | `3` | Number of failures for probe to be considered failed |
Expand Down Expand Up @@ -127,8 +127,8 @@ $ helm install opencost opencost/opencost
| opencost.ui.enabled | bool | `true` | Whether or not to deploy the `opencost-ui` container |
| opencost.ui.extraVolumeMounts | list | `[]` | A list of volume mounts to be added to the pod |
| opencost.ui.image.pullPolicy | string | `"IfNotPresent"` | UI container image pull policy |
| opencost.ui.image.registry | string | `"quay.io"` | UI container image name |
| opencost.ui.image.repository | string | `"kubecost1/opencost-ui"` | UI container image name |
| opencost.ui.image.registry | string | `"ghcr.io"` | UI container image name |
| opencost.ui.image.repository | string | `"opencost/opencost-ui"` | UI container image name |
| opencost.ui.image.tag | string | `""` (use appVersion in Chart.yaml) | UI container image tag |
| opencost.ui.ingress.annotations | object | `{}` | Annotations for Ingress resource |
| opencost.ui.ingress.enabled | bool | `false` | Ingress for OpenCost UI |
Expand Down
4 changes: 2 additions & 2 deletions charts/opencost/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ spec:
{{- if .Values.opencost.exporter.image.fullImageName }}
image: {{ .Values.opencost.exporter.image.fullImageName }}
{{- else }}
image: "{{ .Values.opencost.exporter.image.registry }}/{{ .Values.opencost.exporter.image.repository }}:{{ .Values.opencost.exporter.image.tag | default (printf "prod-%s" .Chart.AppVersion) }}"
image: "{{ .Values.opencost.exporter.image.registry }}/{{ .Values.opencost.exporter.image.repository }}:{{ .Values.opencost.exporter.image.tag | default (printf "%s" .Chart.AppVersion) }}"
{{- end}}
imagePullPolicy: {{ .Values.opencost.exporter.image.pullPolicy }}
args:
Expand Down Expand Up @@ -210,7 +210,7 @@ spec:
{{- if .Values.opencost.ui.image.fullImageName }}
image: {{ .Values.opencost.ui.image.fullImageName }}
{{- else}}
image: "{{ .Values.opencost.ui.image.registry }}/{{ .Values.opencost.ui.image.repository }}:{{ .Values.opencost.ui.image.tag | default (printf "prod-%s" .Chart.AppVersion) }}"
image: "{{ .Values.opencost.ui.image.registry }}/{{ .Values.opencost.ui.image.repository }}:{{ .Values.opencost.ui.image.tag | default (printf "%s" .Chart.AppVersion) }}"
{{- end }}
imagePullPolicy: {{ .Values.opencost.ui.image.pullPolicy }}
ports:
Expand Down
2 changes: 1 addition & 1 deletion charts/opencost/tests/deployment_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ tests:
pattern: -opencost$
- matchRegex:
path: spec.template.spec.containers[0].image
pattern: quay\.io\/kubecost1\/kubecost-cost-model:prod-[0-9]*\.[0-9]*\.[0-9]*
pattern: ghcr\.io\/opencost\/opencost:[0-9]*\.[0-9]*\.[0-9]*
8 changes: 4 additions & 4 deletions charts/opencost/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,9 @@ opencost:
defaultClusterId: 'default-cluster'
image:
# -- Exporter container image registry
registry: quay.io
registry: ghcr.io
# -- Exporter container image name
repository: kubecost1/kubecost-cost-model
repository: opencost/opencost
# -- Exporter container image tag
# @default -- `""` (use appVersion in Chart.yaml)
tag: ""
Expand Down Expand Up @@ -308,9 +308,9 @@ opencost:
enabled: true
image:
# -- UI container image registry
registry: quay.io
registry: ghcr.io
# -- UI container image name
repository: kubecost1/opencost-ui
repository: opencost/opencost-ui
# -- UI container image tag
# @default -- `""` (use appVersion in Chart.yaml)
tag: ""
Expand Down

0 comments on commit aacbdeb

Please sign in to comment.