diff --git a/charts/stable/founderyvtt/Chart.yaml b/charts/stable/founderyvtt/Chart.yaml index 25ac29b4..b9e8c5bf 100644 --- a/charts/stable/founderyvtt/Chart.yaml +++ b/charts/stable/founderyvtt/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 0.8.3 description: An easy-to-deploy Dockerized Foundry Virtual Tabletop server name: foundryvtt -version: 0.8.3 +version: 2.0.0 kubeVersion: ">=1.16.0-0" keywords: - foundryvtt @@ -16,4 +16,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 2.5.0 + version: 3.0.2 diff --git a/charts/stable/founderyvtt/README.md b/charts/stable/founderyvtt/README.md index 174f6c46..31d5d061 100644 --- a/charts/stable/founderyvtt/README.md +++ b/charts/stable/founderyvtt/README.md @@ -1,6 +1,6 @@ # foundryvtt -![Version: 0.8.3](https://img.shields.io/badge/Version-0.8.3-informational?style=flat-square) ![AppVersion: 0.8.3](https://img.shields.io/badge/AppVersion-0.8.3-informational?style=flat-square) +![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![AppVersion: 0.8.3](https://img.shields.io/badge/AppVersion-0.8.3-informational?style=flat-square) An easy-to-deploy Dockerized Foundry Virtual Tabletop server @@ -18,7 +18,7 @@ Kubernetes: `>=1.16.0-0` | Repository | Name | Version | |------------|------|---------| -| https://library-charts.k8s-at-home.com | common | 2.5.0 | +| https://library-charts.k8s-at-home.com | common | 3.0.2 | ## TL;DR @@ -75,15 +75,13 @@ N/A | Key | Type | Default | Description | |-----|------|---------|-------------| -| env | object | `{}` | | -| image.pullPolicy | string | `"IfNotPresent"` | | -| image.repository | string | `"felddy/foundryvtt"` | | -| image.tag | string | `"0.8.3"` | | -| ingress.enabled | bool | `false` | | -| persistence.data.emptyDir.enabled | bool | `false` | | -| persistence.data.enabled | bool | `false` | | -| persistence.data.mountPath | string | `"/data"` | | -| service.port.port | int | `30000` | | +| env | object | See below | environment variables. See [image docs](https://github.com/felddy/foundryvtt-docker#environment-variables) for more details. | +| image.pullPolicy | string | `"IfNotPresent"` | image pull policy | +| image.repository | string | `"felddy/foundryvtt"` | image repository | +| image.tag | string | `"0.8.3"` | image tag | +| ingress.main | object | See values.yaml | Enable and configure ingress settings for the chart under this key. | +| persistence | object | See values.yaml | Configure persistence settings for the chart under this key. Founderyvtt is hardcoded to use /data for its persistance for config | +| service | object | See values.yaml | Configures service settings for the chart. Normally this does not need to be modified. | | strategy.type | string | `"Recreate"` | | ## Changelog @@ -92,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). +### [2.0.0] + +#### Added + +- Initial version + +#### 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. + +#### Removed + +- N/A + ### [1.0.0] #### Added diff --git a/charts/stable/founderyvtt/README_CHANGELOG.md.gotmpl b/charts/stable/founderyvtt/README_CHANGELOG.md.gotmpl index 99c5085f..6e3d0a32 100644 --- a/charts/stable/founderyvtt/README_CHANGELOG.md.gotmpl +++ b/charts/stable/founderyvtt/README_CHANGELOG.md.gotmpl @@ -9,6 +9,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). +### [2.0.0] + +#### Added + +- Initial version + +#### 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. + +#### Removed + +- N/A + ### [1.0.0] #### Added diff --git a/charts/stable/founderyvtt/values.yaml b/charts/stable/founderyvtt/values.yaml index 4db822f1..a32e2441 100644 --- a/charts/stable/founderyvtt/values.yaml +++ b/charts/stable/founderyvtt/values.yaml @@ -6,28 +6,39 @@ # image: + # -- image repository repository: felddy/foundryvtt + # -- image pull policy pullPolicy: IfNotPresent + # -- image tag tag: 0.8.3 strategy: type: Recreate -# See more environment variables in the foundryvtt documentation -# https://github.com/felddy/foundryvtt-docker#environment-variables - +# -- environment variables. See [image docs](https://github.com/felddy/foundryvtt-docker#environment-variables) for more details. +# @default -- See below env: {} - # TZ: + # TZ + +# -- Configures service settings for the chart. Normally this does not need to be modified. +# @default -- See values.yaml service: - port: - port: 30000 + main: + ports: + http: + port: 30000 ingress: - enabled: false + # -- Enable and configure ingress settings for the chart under this key. + # @default -- See values.yaml + main: + enabled: false - -# Founderyvtt is hardcoded to use /data for its persistance for config and +# -- Configure persistence settings for the chart under this key. +# @default -- See values.yaml +# Founderyvtt is hardcoded to use /data for its persistance for config persistence: data: enabled: false