Compare commits
3 Commits
mosquitto-
...
bookstack-
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
98603fdc8a | ||
|
|
3595da8ca5 | ||
|
|
4dfb13d356 |
@@ -1,9 +1,9 @@
|
|||||||
---
|
---
|
||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
appVersion: v21.04.2
|
appVersion: v21.05.1
|
||||||
description: A simple, self-hosted, easy-to-use platform for organising and storing information.
|
description: A simple, self-hosted, easy-to-use platform for organising and storing information.
|
||||||
name: bookstack
|
name: bookstack
|
||||||
version: 1.1.1
|
version: 2.0.0
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- bookstack
|
- bookstack
|
||||||
@@ -23,7 +23,7 @@ maintainers:
|
|||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 2.5.0
|
version: 3.0.1
|
||||||
- name: mariadb
|
- name: mariadb
|
||||||
version: 9.3.13
|
version: 9.3.13
|
||||||
repository: https://charts.bitnami.com/bitnami
|
repository: https://charts.bitnami.com/bitnami
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# bookstack
|
# bookstack
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
A simple, self-hosted, easy-to-use platform for organising and storing information.
|
A simple, self-hosted, easy-to-use platform for organising and storing information.
|
||||||
|
|
||||||
@@ -20,7 +20,7 @@ Kubernetes: `>=1.16.0-0`
|
|||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://charts.bitnami.com/bitnami | mariadb | 9.3.13 |
|
| https://charts.bitnami.com/bitnami | mariadb | 9.3.13 |
|
||||||
| https://library-charts.k8s-at-home.com | common | 2.5.0 |
|
| https://library-charts.k8s-at-home.com | common | 3.0.1 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@@ -77,22 +77,15 @@ N/A
|
|||||||
|
|
||||||
| Key | Type | Default | Description |
|
| Key | Type | Default | Description |
|
||||||
|-----|------|---------|-------------|
|
|-----|------|---------|-------------|
|
||||||
| env | object | `{}` | |
|
| env | object | See below | environment variables. See more environment variables in the [bookstack documentation](https://hub.docker.com/r/linuxserver/bookstack) |
|
||||||
| image.pullPolicy | string | `"IfNotPresent"` | |
|
| env.TZ | string | `"UTC"` | Set the container timezone |
|
||||||
| image.repository | string | `"ghcr.io/linuxserver/bookstack"` | |
|
| image.pullPolicy | string | `"IfNotPresent"` | image tag |
|
||||||
| image.tag | string | `"version-v21.04.2"` | |
|
| image.repository | string | `"ghcr.io/linuxserver/bookstack"` | image repository |
|
||||||
| ingress.enabled | bool | `false` | |
|
| image.tag | string | `"version-v21.05.1"` | image pull policy |
|
||||||
| mariadb.architecture | string | `"standalone"` | |
|
| ingress.main | object | See values.yaml | Enable and configure ingress settings for the chart under this key. |
|
||||||
| mariadb.auth.database | string | `"bookstack"` | |
|
| mariadb | object | See values.yaml | Enable and configure mariadb database subchart under this key. For more options see [mariadb chart documentation](https://github.com/bitnami/charts/tree/master/bitnami/mariadb). |
|
||||||
| mariadb.auth.password | string | `"bookstack"` | |
|
| persistence | object | See values.yaml | Configure persistence settings for the chart under this key. |
|
||||||
| mariadb.auth.username | string | `"bookstack"` | |
|
| service | object | See values.yaml | Configures service settings for the chart. |
|
||||||
| mariadb.enabled | bool | `false` | |
|
|
||||||
| mariadb.primary.persistence.enabled | bool | `false` | |
|
|
||||||
| persistence.config.emptyDir.enabled | bool | `false` | |
|
|
||||||
| persistence.config.enabled | bool | `false` | |
|
|
||||||
| persistence.config.mountPath | string | `"/config"` | |
|
|
||||||
| service.port.port | int | `80` | |
|
|
||||||
| strategy.type | string | `"Recreate"` | |
|
|
||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
|
|
||||||
@@ -100,6 +93,14 @@ 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).
|
||||||
|
|
||||||
|
### [2.0.0]
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- **BREAKING**: Upgraded the common library dependency to version 3.0.1. This introduces several breaking changes (`service`, `ingress` and `persistence` keys have been refactored).
|
||||||
|
Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-3.0.0/charts/stable/common/) for the up-to-date values.
|
||||||
|
- Changed image tag to `version-v21.05.1`.
|
||||||
|
|
||||||
### [1.0.0]
|
### [1.0.0]
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
@@ -114,7 +115,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
|
|
||||||
- N/A
|
- N/A
|
||||||
|
|
||||||
[1.0.0]: #1.0.0
|
[2.0.0]: #200
|
||||||
|
[1.0.0]: #100
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
|
|
||||||
|
|||||||
@@ -9,6 +9,14 @@ 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).
|
||||||
|
|
||||||
|
### [2.0.0]
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- **BREAKING**: Upgraded the common library dependency to version 3.0.1. This introduces several breaking changes (`service`, `ingress` and `persistence` keys have been refactored).
|
||||||
|
Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-3.0.0/charts/stable/common/) for the up-to-date values.
|
||||||
|
- Changed image tag to `version-v21.05.1`.
|
||||||
|
|
||||||
### [1.0.0]
|
### [1.0.0]
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
@@ -23,5 +31,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
|
|
||||||
- N/A
|
- N/A
|
||||||
|
|
||||||
[1.0.0]: #1.0.0
|
[2.0.0]: #200
|
||||||
|
[1.0.0]: #100
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|||||||
@@ -6,38 +6,47 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
image:
|
image:
|
||||||
|
# -- image repository
|
||||||
repository: ghcr.io/linuxserver/bookstack
|
repository: ghcr.io/linuxserver/bookstack
|
||||||
|
# -- image tag
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
tag: version-v21.04.2
|
# -- image pull policy
|
||||||
|
tag: version-v21.05.1
|
||||||
|
|
||||||
strategy:
|
# -- environment variables. See more environment variables in the [bookstack documentation](https://hub.docker.com/r/linuxserver/bookstack)
|
||||||
type: Recreate
|
# @default -- See below
|
||||||
|
env:
|
||||||
# See more environment variables in the bookstack documentation
|
# -- Set the container timezone
|
||||||
# https://hub.docker.com/r/linuxserver/bookstack
|
TZ: UTC
|
||||||
env: {}
|
|
||||||
# TZ:
|
|
||||||
# DB_HOST:
|
# DB_HOST:
|
||||||
# DB_USER:
|
# DB_USER:
|
||||||
# DB_PASS:
|
# DB_PASS:
|
||||||
# DB_DATABASE:
|
# DB_DATABASE:
|
||||||
|
|
||||||
|
# -- Configures service settings for the chart.
|
||||||
|
# @default -- See values.yaml
|
||||||
service:
|
service:
|
||||||
port:
|
main:
|
||||||
|
ports:
|
||||||
|
http:
|
||||||
port: 80
|
port: 80
|
||||||
|
|
||||||
ingress:
|
ingress:
|
||||||
|
# -- Enable and configure ingress settings for the chart under this key.
|
||||||
|
# @default -- See values.yaml
|
||||||
|
main:
|
||||||
enabled: false
|
enabled: false
|
||||||
|
|
||||||
persistence:
|
# -- Configure persistence settings for the chart under this key.
|
||||||
config:
|
# @default -- See values.yaml
|
||||||
enabled: false
|
persistence: {}
|
||||||
emptyDir:
|
# config:
|
||||||
enabled: false
|
# enabled: false
|
||||||
mountPath: /config
|
# mountPath: /config
|
||||||
|
|
||||||
# Enabled mariadb
|
# -- Enable and configure mariadb database subchart under this key.
|
||||||
# ... for more options see https://github.com/bitnami/charts/tree/master/bitnami/mariadb
|
# For more options see [mariadb chart documentation](https://github.com/bitnami/charts/tree/master/bitnami/mariadb).
|
||||||
|
# @default -- See values.yaml
|
||||||
mariadb:
|
mariadb:
|
||||||
enabled: false
|
enabled: false
|
||||||
architecture: standalone
|
architecture: standalone
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
appVersion: 2.6.2
|
appVersion: 2.7.1
|
||||||
description: A self-hosted and PHP-based URL shortener application with CLI and REST interfaces
|
description: A self-hosted and PHP-based URL shortener application with CLI and REST interfaces
|
||||||
name: shlink
|
name: shlink
|
||||||
version: 1.0.1
|
version: 2.0.0
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- shlink
|
- shlink
|
||||||
@@ -17,7 +17,7 @@ maintainers:
|
|||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 2.5.0
|
version: 3.0.1
|
||||||
- name: postgresql
|
- name: postgresql
|
||||||
version: 10.4.8
|
version: 10.4.8
|
||||||
repository: https://charts.bitnami.com/bitnami
|
repository: https://charts.bitnami.com/bitnami
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# shlink
|
# shlink
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
A self-hosted and PHP-based URL shortener application with CLI and REST interfaces
|
A self-hosted and PHP-based URL shortener application with CLI and REST interfaces
|
||||||
|
|
||||||
@@ -20,7 +20,7 @@ Kubernetes: `>=1.16.0-0`
|
|||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://charts.bitnami.com/bitnami | mariadb | 9.3.13 |
|
| https://charts.bitnami.com/bitnami | mariadb | 9.3.13 |
|
||||||
| https://charts.bitnami.com/bitnami | postgresql | 10.4.8 |
|
| https://charts.bitnami.com/bitnami | postgresql | 10.4.8 |
|
||||||
| https://library-charts.k8s-at-home.com | common | 2.5.0 |
|
| https://library-charts.k8s-at-home.com | common | 3.0.1 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@@ -77,31 +77,15 @@ N/A
|
|||||||
|
|
||||||
| Key | Type | Default | Description |
|
| Key | Type | Default | Description |
|
||||||
|-----|------|---------|-------------|
|
|-----|------|---------|-------------|
|
||||||
| env | object | `{}` | |
|
| env | object | `{}` | environment variables. See more environment variables in the [shlink documentation](https://shlink.io/documentation/install-docker-image/) |
|
||||||
| image.pullPolicy | string | `"IfNotPresent"` | |
|
| image.pullPolicy | string | `"IfNotPresent"` | image pull policy |
|
||||||
| image.repository | string | `"shlinkio/shlink"` | |
|
| image.repository | string | `"shlinkio/shlink"` | image repository |
|
||||||
| image.tag | string | `"2.6.2"` | |
|
| image.tag | string | `"2.7.1"` | image tag |
|
||||||
| ingress.enabled | bool | `false` | |
|
| ingress.main | object | See values.yaml | Enable and configure ingress settings for the chart under this key. |
|
||||||
| mariadb.architecture | string | `"standalone"` | |
|
| mariadb | object | See values.yaml | Enable and configure mariadb database subchart under this key. For more options see [mariadb chart documentation](https://github.com/bitnami/charts/tree/master/bitnami/mariadb). |
|
||||||
| mariadb.auth.database | string | `"shlink"` | |
|
| persistence | object | See values.yaml | Configure persistence settings for the chart under this key. |
|
||||||
| mariadb.auth.password | string | `"shlink-pass"` | |
|
| postgresql | object | See values.yaml | Enable and configure postgres database subchart under this key. For more options see [postgres chart documentation](https://github.com/bitnami/charts/tree/master/bitnami/postgresql) |
|
||||||
| mariadb.auth.rootPassword | string | `"shlinkrootpass"` | |
|
| service | object | See values.yaml | Configures service settings for the chart. |
|
||||||
| mariadb.auth.username | string | `"shlink"` | |
|
|
||||||
| mariadb.enabled | bool | `false` | |
|
|
||||||
| mariadb.primary.persistence.enabled | bool | `false` | |
|
|
||||||
| persistence.data.emptyDir.enabled | bool | `false` | |
|
|
||||||
| persistence.data.enabled | bool | `false` | |
|
|
||||||
| persistence.data.mountPath | string | `"/etc/shlink/data"` | |
|
|
||||||
| persistence.params.emptyDir.enabled | bool | `false` | |
|
|
||||||
| persistence.params.enabled | bool | `false` | |
|
|
||||||
| persistence.params.mountPath | string | `"/etc/shlink/config/params"` | |
|
|
||||||
| postgresql.enabled | bool | `false` | |
|
|
||||||
| postgresql.persistence.enabled | bool | `false` | |
|
|
||||||
| postgresql.postgresqlDatabase | string | `"shlink"` | |
|
|
||||||
| postgresql.postgresqlPassword | string | `"shlink-pass"` | |
|
|
||||||
| postgresql.postgresqlUsername | string | `"shlink"` | |
|
|
||||||
| service.port.port | int | `8080` | |
|
|
||||||
| strategy.type | string | `"Recreate"` | |
|
|
||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
|
|
||||||
@@ -109,12 +93,21 @@ 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).
|
||||||
|
|
||||||
|
### [2.0.0]
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- **BREAKING**: Upgraded the common library dependency to version 3.0.1. This introduces several breaking changes (`service`, `ingress` and `persistence` keys have been refactored).
|
||||||
|
Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-3.0.1/charts/stable/common/) for the up-to-date values.
|
||||||
|
- Changed image tag to `2.7.1`.
|
||||||
|
|
||||||
### [1.0.0]
|
### [1.0.0]
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
|
|
||||||
- Initial version
|
- Initial version
|
||||||
|
|
||||||
|
[2.0.0]: #200
|
||||||
[1.0.0]: #100
|
[1.0.0]: #100
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
|
|||||||
@@ -9,11 +9,20 @@ 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).
|
||||||
|
|
||||||
|
### [2.0.0]
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- **BREAKING**: Upgraded the common library dependency to version 3.0.1. This introduces several breaking changes (`service`, `ingress` and `persistence` keys have been refactored).
|
||||||
|
Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-3.0.1/charts/stable/common/) for the up-to-date values.
|
||||||
|
- Changed image tag to `2.7.1`.
|
||||||
|
|
||||||
### [1.0.0]
|
### [1.0.0]
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
|
|
||||||
- Initial version
|
- Initial version
|
||||||
|
|
||||||
|
[2.0.0]: #200
|
||||||
[1.0.0]: #100
|
[1.0.0]: #100
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|||||||
@@ -6,41 +6,46 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
image:
|
image:
|
||||||
|
# -- image repository
|
||||||
repository: shlinkio/shlink
|
repository: shlinkio/shlink
|
||||||
|
# -- image pull policy
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
tag: 2.6.2
|
# -- image tag
|
||||||
|
tag: 2.7.1
|
||||||
|
|
||||||
strategy:
|
# -- environment variables. See more environment variables in the [shlink documentation](https://shlink.io/documentation/install-docker-image/)
|
||||||
type: Recreate
|
|
||||||
|
|
||||||
# See more environment variables in the shlink documentation
|
|
||||||
# https://shlink.io/documentation/install-docker-image/
|
|
||||||
env: {}
|
env: {}
|
||||||
# SHORT_DOMAIN_HOST: "doma.in"
|
# SHORT_DOMAIN_HOST: "doma.in"
|
||||||
# SHORT_DOMAIN_SCHEMA: "https"
|
# SHORT_DOMAIN_SCHEMA: "https"
|
||||||
# GEOLITE_LICENSE_KEY: "kjh23ljkbndskj345"
|
# GEOLITE_LICENSE_KEY: "kjh23ljkbndskj345"
|
||||||
|
|
||||||
|
# -- Configures service settings for the chart.
|
||||||
|
# @default -- See values.yaml
|
||||||
service:
|
service:
|
||||||
port:
|
main:
|
||||||
|
ports:
|
||||||
|
http:
|
||||||
port: 8080
|
port: 8080
|
||||||
|
|
||||||
ingress:
|
ingress:
|
||||||
|
# -- Enable and configure ingress settings for the chart under this key.
|
||||||
|
# @default -- See values.yaml
|
||||||
|
main:
|
||||||
enabled: false
|
enabled: false
|
||||||
|
|
||||||
persistence:
|
# -- Configure persistence settings for the chart under this key.
|
||||||
params:
|
# @default -- See values.yaml
|
||||||
enabled: false
|
persistence: {}
|
||||||
emptyDir:
|
# params:
|
||||||
enabled: false
|
# enabled: false
|
||||||
mountPath: /etc/shlink/config/params
|
# mountPath: /etc/shlink/config/params
|
||||||
data:
|
# data:
|
||||||
enabled: false
|
# enabled: false
|
||||||
emptyDir:
|
# mountPath: /etc/shlink/data
|
||||||
enabled: false
|
|
||||||
mountPath: /etc/shlink/data
|
|
||||||
|
|
||||||
# Enabled mariadb
|
# -- Enable and configure mariadb database subchart under this key.
|
||||||
# ... for more options see https://github.com/bitnami/charts/tree/master/bitnami/mariadb
|
# For more options see [mariadb chart documentation](https://github.com/bitnami/charts/tree/master/bitnami/mariadb).
|
||||||
|
# @default -- See values.yaml
|
||||||
mariadb:
|
mariadb:
|
||||||
enabled: false
|
enabled: false
|
||||||
architecture: standalone
|
architecture: standalone
|
||||||
@@ -54,8 +59,9 @@ mariadb:
|
|||||||
enabled: false
|
enabled: false
|
||||||
# storageClass: ""
|
# storageClass: ""
|
||||||
|
|
||||||
# Enabled postgres
|
# -- Enable and configure postgres database subchart under this key.
|
||||||
# ... for more options see https://github.com/bitnami/charts/tree/master/bitnami/postgresql
|
# For more options see [postgres chart documentation](https://github.com/bitnami/charts/tree/master/bitnami/postgresql)
|
||||||
|
# @default -- See values.yaml
|
||||||
postgresql:
|
postgresql:
|
||||||
enabled: false
|
enabled: false
|
||||||
postgresqlUsername: shlink
|
postgresqlUsername: shlink
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
appVersion: "4.2.0"
|
appVersion: "4.2.0"
|
||||||
description: The Lounge, modern web IRC client designed for self-hosting
|
description: The Lounge, modern web IRC client designed for self-hosting
|
||||||
name: thelounge
|
name: thelounge
|
||||||
version: 1.2.0
|
version: 2.0.0
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- thelounge
|
- thelounge
|
||||||
@@ -20,4 +20,4 @@ maintainers:
|
|||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 2.5.0
|
version: 3.0.1
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# thelounge
|
# thelounge
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
The Lounge, modern web IRC client designed for self-hosting
|
The Lounge, modern web IRC client designed for self-hosting
|
||||||
|
|
||||||
@@ -18,7 +18,7 @@ Kubernetes: `>=1.16.0-0`
|
|||||||
|
|
||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://library-charts.k8s-at-home.com | common | 2.5.0 |
|
| https://library-charts.k8s-at-home.com | common | 3.0.0 |
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
@@ -75,14 +75,13 @@ N/A
|
|||||||
|
|
||||||
| Key | Type | Default | Description |
|
| Key | Type | Default | Description |
|
||||||
|-----|------|---------|-------------|
|
|-----|------|---------|-------------|
|
||||||
| env.THELOUNGE_HOME | string | `"/config"` | |
|
| env | object | See below | environment variables. See [image docs](https://hub.docker.com/r/thelounge/thelounge/) for more details. |
|
||||||
| image.pullPolicy | string | `"IfNotPresent"` | |
|
| image.pullPolicy | string | `"IfNotPresent"` | image pull policy |
|
||||||
| image.repository | string | `"thelounge/thelounge"` | |
|
| image.repository | string | `"thelounge/thelounge"` | image repository |
|
||||||
| image.tag | string | `"4.2.0-alpine"` | |
|
| image.tag | string | `"4.2.0-alpine"` | image tag |
|
||||||
| ingress.enabled | bool | `false` | |
|
| ingress.main | object | See values.yaml | Enable and configure ingress settings for the chart under this key. |
|
||||||
| persistence.config.emptyDir.enabled | bool | `false` | |
|
| persistence | object | See values.yaml | Configure persistence settings for the chart under this key. |
|
||||||
| persistence.config.enabled | bool | `false` | |
|
| service | object | See values.yaml | Configures service settings for the chart. Normally this does not need to be modified. |
|
||||||
| service.port.port | int | `9000` | |
|
|
||||||
| strategy.type | string | `"Recreate"` | |
|
| strategy.type | string | `"Recreate"` | |
|
||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
@@ -91,6 +90,21 @@ 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).
|
||||||
|
|
||||||
|
### [2.0.0]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- **BREAKING**: Upgraded the common library dependency to version 3.0.0. This introduces several breaking changes (`service`, `ingress` and `persistence` keys have been refactored).
|
||||||
|
Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-3.0.0/charts/stable/common/) for the up-to-date values.
|
||||||
|
|
||||||
|
#### Removed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
### [1.1.2]
|
### [1.1.2]
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
|
|||||||
@@ -9,6 +9,22 @@ 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).
|
||||||
|
|
||||||
|
### [2.0.0]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- **BREAKING**: Upgraded the common library dependency to version 3.0.0. This introduces several breaking changes (`service`, `ingress` and `persistence` keys have been refactored).
|
||||||
|
Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-3.0.0/charts/stable/common/) for the up-to-date values.
|
||||||
|
|
||||||
|
#### Removed
|
||||||
|
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
|
||||||
### [1.1.2]
|
### [1.1.2]
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
|
|||||||
@@ -6,27 +6,37 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
image:
|
image:
|
||||||
|
# -- image repository
|
||||||
repository: thelounge/thelounge
|
repository: thelounge/thelounge
|
||||||
|
# -- image pull policy
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
|
# -- image tag
|
||||||
tag: 4.2.0-alpine
|
tag: 4.2.0-alpine
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
type: Recreate
|
type: Recreate
|
||||||
|
|
||||||
# See more environment variables in the thelounge documentation
|
# -- environment variables. See [image docs](https://hub.docker.com/r/thelounge/thelounge/) for more details.
|
||||||
# https://hub.docker.com/r/thelounge/thelounge/
|
# @default -- See below
|
||||||
env:
|
env:
|
||||||
THELOUNGE_HOME: "/config"
|
THELOUNGE_HOME: "/config"
|
||||||
|
|
||||||
|
# -- Configures service settings for the chart. Normally this does not need to be modified.
|
||||||
|
# @default -- See values.yaml
|
||||||
service:
|
service:
|
||||||
port:
|
main:
|
||||||
|
ports:
|
||||||
|
http:
|
||||||
port: 9000
|
port: 9000
|
||||||
|
|
||||||
ingress:
|
ingress:
|
||||||
|
# -- Enable and configure ingress settings for the chart under this key.
|
||||||
|
# @default -- See values.yaml
|
||||||
|
main:
|
||||||
enabled: false
|
enabled: false
|
||||||
|
|
||||||
|
# -- Configure persistence settings for the chart under this key.
|
||||||
|
# @default -- See values.yaml
|
||||||
persistence:
|
persistence:
|
||||||
config:
|
config:
|
||||||
enabled: false
|
enabled: false
|
||||||
emptyDir:
|
|
||||||
enabled: false
|
|
||||||
|
|||||||
Reference in New Issue
Block a user