Skip to content

Commit

Permalink
🐛 (headscale): Fix error when ingress does not have a host defined
Browse files Browse the repository at this point in the history
  • Loading branch information
gabe565 committed Feb 25, 2023
1 parent 01c16c6 commit e7187e5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions charts/headscale/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: An open source, self-hosted implementation of the Tailscale control
home: https://charts.gabe565.com/charts/headscale
icon: https://raw.githubusercontent.com/juanfont/headscale/641c6fd439a915150db3c2e83928e289b7e0c9d2/docs/logo/headscale3-dots.png
type: application
version: 0.8.3
version: 0.8.4
# renovate datasource=docker depName=ghcr.io/juanfont/headscale
appVersion: 0.20.0
kubeVersion: ">=1.22.0-0"
Expand All @@ -27,4 +27,4 @@ sources:
annotations:
artifacthub.io/changes: |-
- kind: changed
description: Update common Helm release to v1.3.2
description: Fix error when ingress does not have a host defined
2 changes: 1 addition & 1 deletion charts/headscale/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<img src="https://raw.githubusercontent.com/juanfont/headscale/641c6fd439a915150db3c2e83928e289b7e0c9d2/docs/logo/headscale3-dots.png" align="right" width="92" alt="headscale logo" style="padding-left: 20px">

![Version: 0.8.3](https://img.shields.io/badge/Version-0.8.3-informational?style=flat)
![Version: 0.8.4](https://img.shields.io/badge/Version-0.8.4-informational?style=flat)
![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat)
![AppVersion: 0.20.0](https://img.shields.io/badge/AppVersion-0.20.0-informational?style=flat)

Expand Down
2 changes: 1 addition & 1 deletion charts/headscale/templates/common.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ initContainers:
env:
{{- with .Values.ingress.main }}
{{- if .enabled }}
{{- if and .enabled .hosts }}
HEADSCALE_SERVER_URL: http{{ if .tls }}s{{ end }}://{{ (first .hosts).host }}
{{- end }}
{{- end }}
Expand Down

0 comments on commit e7187e5

Please sign in to comment.