mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-02-03 07:49:03 +00:00
[focalboard] Add serviceLinks docs (#1324)
Signed-off-by: Bᴇʀɴᴅ Sᴄʜᴏʀɢᴇʀs <me@bjw-s.dev>
This commit is contained in:
parent
7dfd78ed73
commit
8e7885b65b
@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
appVersion: 0.9.0
|
appVersion: 0.9.0
|
||||||
description: Focalboard is an open source, self-hosted alternative to Trello, Notion, and Asana.
|
description: Focalboard is an open source, self-hosted alternative to Trello, Notion, and Asana.
|
||||||
name: focalboard
|
name: focalboard
|
||||||
version: 4.1.0
|
version: 4.1.1
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- focalboard
|
- focalboard
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# focalboard
|
# 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.
|
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
|
## 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
|
## 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).
|
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]
|
### [4.0.0]
|
||||||
|
|
||||||
#### Changed
|
#### 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
|
- First version of the helm chart for Focalboard
|
||||||
|
|
||||||
|
[4.1.1]: #411
|
||||||
|
[4.0.0]: #400
|
||||||
[3.0.0]: #300
|
[3.0.0]: #300
|
||||||
[2.0.0]: #200
|
[2.0.0]: #200
|
||||||
[1.0.2]: #102
|
[1.0.2]: #102
|
||||||
|
@ -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).
|
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]
|
### [4.0.0]
|
||||||
|
|
||||||
#### Changed
|
#### 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
|
- First version of the helm chart for Focalboard
|
||||||
|
|
||||||
|
[4.1.1]: #411
|
||||||
|
[4.0.0]: #400
|
||||||
[3.0.0]: #300
|
[3.0.0]: #300
|
||||||
[2.0.0]: #200
|
[2.0.0]: #200
|
||||||
[1.0.2]: #102
|
[1.0.2]: #102
|
||||||
|
@ -5,5 +5,10 @@
|
|||||||
{{- define "custom.custom.configuration" -}}
|
{{- define "custom.custom.configuration" -}}
|
||||||
{{ template "custom.custom.configuration.header" . }}
|
{{ 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 -}}
|
{{- end -}}
|
||||||
|
Loading…
Reference in New Issue
Block a user