Skip to content

Commit

Permalink
fix(homer): ensure image registry is passed to controller
Browse files Browse the repository at this point in the history
  • Loading branch information
pascaliske committed Jul 29, 2024
1 parent 270bdbc commit 322cd71
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 15 deletions.
16 changes: 3 additions & 13 deletions charts/homer/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ apiVersion: v2
type: application
name: homer
description: A Helm chart for Homer
version: 2.1.0
version: 2.1.1
# renovate: image=ghcr.io/bastienwirtz/homer
appVersion: "v24.05.1"

Expand All @@ -27,15 +27,5 @@ dependencies:
annotations:
# possible kinds: added, changed, deprecated, removed, fixed, security
artifacthub.io/changes: |
- kind: changed
description: 'Changed the default image to use the GitHub container registry.'
- kind: added
description: 'Add support for overwriting the image registry.'
- kind: added
description: 'Add support for additional containers.'
- kind: added
description: 'Add support for affinities.'
- kind: added
description: 'Add support for tolerations.'
- kind: added
description: 'Add support for valueFrom to environment variables.'
- kind: fixed
description: 'Ensure image registry is passed to controller.'
2 changes: 1 addition & 1 deletion charts/homer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

> A Helm chart for Homer
[![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ](https://charts.pascaliske.dev/charts/homer/)[![Version: 2.1.0](https://img.shields.io/badge/Version-2.1.0-informational?style=flat-square) ](https://charts.pascaliske.dev/charts/homer/)[![AppVersion: v24.05.1](https://img.shields.io/badge/AppVersion-v24.05.1-informational?style=flat-square) ](https://charts.pascaliske.dev/charts/homer/)
[![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ](https://charts.pascaliske.dev/charts/homer/)[![Version: 2.1.1](https://img.shields.io/badge/Version-2.1.1-informational?style=flat-square) ](https://charts.pascaliske.dev/charts/homer/)[![AppVersion: v24.05.1](https://img.shields.io/badge/AppVersion-v24.05.1-informational?style=flat-square) ](https://charts.pascaliske.dev/charts/homer/)

* <https://github.com/pascaliske/helm-charts>
* <https://github.com/bastienwirtz/homer>
Expand Down
2 changes: 1 addition & 1 deletion charts/homer/templates/controller.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ spec:
serviceAccountName: {{ include "homer.serviceAccountName" . }}
containers:
- name: {{ template "homer.name" . }}
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
image: "{{ .Values.image.registry }}/{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
ports:
{{- range $key, $val := .Values.ports }}
Expand Down

0 comments on commit 322cd71

Please sign in to comment.