[home-assistant] fix ingress example (#1257)

This commit is contained in:
Varac 2021-10-31 10:23:02 +01:00 committed by GitHub
parent d979e9309a
commit 728ebbfa23
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 30 additions and 8 deletions

View File

@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 2021.6.3 appVersion: 2021.6.3
description: Home Assistant description: Home Assistant
name: home-assistant name: home-assistant
version: 11.0.5 version: 11.0.6
kubeVersion: ">=1.16.0-0" kubeVersion: ">=1.16.0-0"
keywords: keywords:
- home-assistant - home-assistant

View File

@ -1,6 +1,6 @@
# home-assistant # home-assistant
![Version: 11.0.5](https://img.shields.io/badge/Version-11.0.5-informational?style=flat-square) ![AppVersion: 2021.6.3](https://img.shields.io/badge/AppVersion-2021.6.3-informational?style=flat-square) ![Version: 11.0.6](https://img.shields.io/badge/Version-11.0.6-informational?style=flat-square) ![AppVersion: 2021.6.3](https://img.shields.io/badge/AppVersion-2021.6.3-informational?style=flat-square)
Home Assistant Home Assistant
@ -129,9 +129,14 @@ Using NGINX as an example the following will need to be added to your values:
```yaml ```yaml
ingress: ingress:
main:
enabled: true enabled: true
annotations: annotations:
nginx.org/websocket-services: home-assistant nginx.org/websocket-services: home-assistant
hosts:
- host: home-assistant.example.org
paths:
- path: /
``` ```
The value derived is the name of the kubernetes service object for home-assistant The value derived is the name of the kubernetes service object for home-assistant
@ -175,6 +180,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
### [11.0.6]
#### Changed
- Fix home-assistant ingress example
### [11.0.5] ### [11.0.5]
#### Fixed #### Fixed

View File

@ -10,6 +10,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
### [11.0.6]
#### Changed
- Fix home-assistant ingress example
### [11.0.5] ### [11.0.5]
#### Fixed #### Fixed

View File

@ -62,9 +62,14 @@ Using NGINX as an example the following will need to be added to your values:
```yaml ```yaml
ingress: ingress:
main:
enabled: true enabled: true
annotations: annotations:
nginx.org/websocket-services: home-assistant nginx.org/websocket-services: home-assistant
hosts:
- host: home-assistant.example.org
paths:
- path: /
``` ```
The value derived is the name of the kubernetes service object for home-assistant The value derived is the name of the kubernetes service object for home-assistant