[focalboard] Add serviceLinks docs (#1324)

Signed-off-by: Bᴇʀɴᴅ Sᴄʜᴏʀɢᴇʀs <me@bjw-s.dev>
This commit is contained in:
Bᴇʀɴᴅ Sᴄʜᴏʀɢᴇʀs 2021-12-24 11:08:05 +01:00 committed by GitHub
parent 7dfd78ed73
commit 8e7885b65b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 30 additions and 4 deletions

View File

@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 0.9.0
description: Focalboard is an open source, self-hosted alternative to Trello, Notion, and Asana.
name: focalboard
version: 4.1.0
version: 4.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- focalboard

View File

@ -1,6 +1,6 @@
# focalboard
![Version: 4.1.0](https://img.shields.io/badge/Version-4.1.0-informational?style=flat-square) ![AppVersion: 0.9.0](https://img.shields.io/badge/AppVersion-0.9.0-informational?style=flat-square)
![Version: 4.1.1](https://img.shields.io/badge/Version-4.1.1-informational?style=flat-square) ![AppVersion: 0.9.0](https://img.shields.io/badge/AppVersion-0.9.0-informational?style=flat-square)
Focalboard is an open source, self-hosted alternative to Trello, Notion, and Asana.
@ -69,7 +69,12 @@ helm install focalboard k8s-at-home/focalboard -f values.yaml
## Custom configuration
N/A
By default Kubernetes will create several environment variables called service links (see [here](https://kubernetes.io/docs/concepts/services-networking/connect-applications-service/#accessing-the-service) for more information).
Focalboard can be configured with environment variables, so when you deploy this Helm release with a name of `focalboard`,
these service links will conflict with the application.
In order to prevent this, you can disable the creation of these service links by setting `enableServiceLinks: false` in your `values.yaml.
## Values
@ -92,6 +97,12 @@ All notable changes to this application Helm chart will be documented in this fi
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).
### [4.1.1]
#### Changed
- Added information about disablin serviceLinks to the documentation.
### [4.0.0]
#### Changed
@ -132,6 +143,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
- First version of the helm chart for Focalboard
[4.1.1]: #411
[4.0.0]: #400
[3.0.0]: #300
[2.0.0]: #200
[1.0.2]: #102

View File

@ -9,6 +9,12 @@ All notable changes to this application Helm chart will be documented in this fi
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).
### [4.1.1]
#### Changed
- Added information about disablin serviceLinks to the documentation.
### [4.0.0]
#### Changed
@ -50,6 +56,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
- First version of the helm chart for Focalboard
[4.1.1]: #411
[4.0.0]: #400
[3.0.0]: #300
[2.0.0]: #200
[1.0.2]: #102

View File

@ -5,5 +5,10 @@
{{- define "custom.custom.configuration" -}}
{{ template "custom.custom.configuration.header" . }}
N/A
By default Kubernetes will create several environment variables called service links (see [here](https://kubernetes.io/docs/concepts/services-networking/connect-applications-service/#accessing-the-service) for more information).
Focalboard can be configured with environment variables, so when you deploy this Helm release with a name of `focalboard`,
these service links will conflict with the application.
In order to prevent this, you can disable the creation of these service links by setting `enableServiceLinks: false` in your `values.yaml.
{{- end -}}