[haste-server] Updated to Commons 3.0.0 (#947)

* [haste-server] Updated to Commons 3.0.0

* Update charts/stable/haste-server/Chart.yaml

Co-authored-by: ᗪєνιη ᗷυнʟ <onedr0p@users.noreply.github.com>

* Inline docs for haste-server

* Update charts/stable/haste-server/README_CHANGELOG.md.gotmpl

Co-authored-by: Bᴇʀɴᴅ Sᴄʜᴏʀɢᴇʀs <me@bjw-s.dev>

* Update charts/stable/haste-server/values.yaml

Co-authored-by: Bᴇʀɴᴅ Sᴄʜᴏʀɢᴇʀs <me@bjw-s.dev>

* bump commons and regen doc

Co-authored-by: ᗪєνιη ᗷυнʟ <onedr0p@users.noreply.github.com>
Co-authored-by: Bᴇʀɴᴅ Sᴄʜᴏʀɢᴇʀs <me@bjw-s.dev>
This commit is contained in:
Ryan Walter 2021-06-10 11:57:43 -05:00 committed by GitHub
parent baedab9658
commit 6b8aaafbc3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 63 additions and 18 deletions

View File

@ -2,7 +2,7 @@ apiVersion: v2
appVersion: latest appVersion: latest
description: Simple text sharing description: Simple text sharing
name: haste-server name: haste-server
version: 1.1.0 version: 2.0.0
kubeVersion: ">=1.16.0-0" kubeVersion: ">=1.16.0-0"
keywords: keywords:
- haste - haste
@ -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.2

View File

@ -1,6 +1,6 @@
# haste-server # haste-server
![Version: 1.1.0](https://img.shields.io/badge/Version-1.1.0-informational?style=flat-square) ![AppVersion: latest](https://img.shields.io/badge/AppVersion-latest-informational?style=flat-square) ![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![AppVersion: latest](https://img.shields.io/badge/AppVersion-latest-informational?style=flat-square)
Simple text sharing Simple text sharing
@ -19,7 +19,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.2 |
## TL;DR ## TL;DR
@ -76,14 +76,15 @@ N/A
| Key | Type | Default | Description | | Key | Type | Default | Description |
|-----|------|---------|-------------| |-----|------|---------|-------------|
| env.STORAGE_FILEPATH | string | `"/config"` | | | env | object | See below | environment variables. See [image docs](https://github.com/seejohnrun/haste-server) for more details. |
| env.STORAGE_TYPE | string | `"file"` | | | env.STORAGE_FILEPATH | string | `"/config"` | filepath for persistance |
| image.pullPolicy | string | `"IfNotPresent"` | | | env.STORAGE_TYPE | string | `"file"` | sets backend |
| image.repository | string | `"ghcr.io/k8s-at-home/haste-server"` | | | image.pullPolicy | string | `"IfNotPresent"` | image pull policy |
| image.tag | string | `"latest"` | | | image.repository | string | `"ghcr.io/k8s-at-home/haste-server"` | image repository |
| ingress.enabled | bool | `false` | | | image.tag | string | `"latest"` | image tag |
| persistence.config.enabled | bool | `false` | | | ingress.main | object | See values.yaml | Enable and configure ingress settings for the chart under this key. |
| service.port.port | int | `7777` | | | persistence | object | See values.yaml | Configure persistence settings for the chart under this key. |
| service | object | See values.yaml | Configures service settings for the chart. Normally this does not need to be modified. |
| strategy.type | string | `"Recreate"` | | | strategy.type | string | `"Recreate"` | |
## Changelog ## Changelog
@ -92,6 +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]
#### Added
- N/A
#### 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.2] ### [1.0.2]
#### Added #### Added

View File

@ -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.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.2] ### [1.0.2]
#### Added #### Added

View File

@ -6,27 +6,40 @@
# #
image: image:
# -- image repository
repository: ghcr.io/k8s-at-home/haste-server repository: ghcr.io/k8s-at-home/haste-server
# -- image pull policy
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
# -- image tag
tag: latest tag: latest
strategy: strategy:
type: Recreate type: Recreate
# See more environment variables in the haste-server documentation # -- environment variables. See [image docs](https://github.com/seejohnrun/haste-server) for more details.
# https://github.com/rwaltr/haste-server # @default -- See below
env: env:
# -- filepath for persistance
STORAGE_FILEPATH: "/config" STORAGE_FILEPATH: "/config"
# -- sets backend
STORAGE_TYPE: "file" STORAGE_TYPE: "file"
# -- Configures service settings for the chart. Normally this does not need to be modified.
# @default -- See values.yaml
service: service:
port: main:
port: 7777 ports:
http:
port: 7777
ingress: ingress:
enabled: false # -- Enable and configure ingress settings for the chart under this key.
# @default -- See values.yaml
main:
enabled: false
# -- Configure persistence settings for the chart under this key.
# @default -- See values.yaml
persistence: persistence:
config: config:
enabled: false enabled: false
# size: 1Gi