Skip to content

Commit

Permalink
update image repo
Browse files Browse the repository at this point in the history
  • Loading branch information
cliffcolvin committed Feb 24, 2024
1 parent 4183ccf commit a4c5861
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions charts/opencost/README.md
Original file line number Diff line number Diff line change
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
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 a4c5861

Please sign in to comment.