[heimdall] Migrate to common v3 (#1002)

This commit is contained in:
nιcнolaѕ wιlde 2021-06-13 00:38:01 -07:00 committed by GitHub
parent b2f256d380
commit 687ddf88ec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 46 additions and 52 deletions

View File

@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 2.2.2 appVersion: 2.2.2
description: An Application dashboard and launcher description: An Application dashboard and launcher
name: heimdall name: heimdall
version: 6.4.0 version: 7.0.0
kubeVersion: ">=1.16.0-0" kubeVersion: ">=1.16.0-0"
keywords: keywords:
- heimdall - heimdall
@ -17,4 +17,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 @@
# heimdall # heimdall
![Version: 6.4.0](https://img.shields.io/badge/Version-6.4.0-informational?style=flat-square) ![AppVersion: 2.2.2](https://img.shields.io/badge/AppVersion-2.2.2-informational?style=flat-square) ![Version: 7.0.0](https://img.shields.io/badge/Version-7.0.0-informational?style=flat-square) ![AppVersion: 2.2.2](https://img.shields.io/badge/AppVersion-2.2.2-informational?style=flat-square)
An Application dashboard and launcher An Application dashboard and launcher
@ -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,16 +76,16 @@ N/A
| Key | Type | Default | Description | | Key | Type | Default | Description |
|-----|------|---------|-------------| |-----|------|---------|-------------|
| env | object | `{}` | | | env | object | See below | environment variables. See more environment variables in the [heimdall documentation](https://github.com/linuxserver/docker-heimdall#parameters). |
| image.pullPolicy | string | `"IfNotPresent"` | | | env.PGID | string | `"1000"` | Set the container group id |
| image.repository | string | `"linuxserver/heimdall"` | | | env.PUID | string | `"1000"` | Set the container user id |
| image.tag | string | `"version-2.2.2"` | | | env.TZ | string | `"UTC"` | Set the container timezone |
| ingress.enabled | bool | `false` | | | image.pullPolicy | string | `"IfNotPresent"` | image pull policy |
| persistence.config.emptyDir.enabled | bool | `false` | | | image.repository | string | `"linuxserver/heimdall"` | image repository |
| persistence.config.enabled | bool | `false` | | | image.tag | string | `"version-2.2.2"` | image tag |
| probes.startup.enabled | bool | `true` | | | ingress.main | object | See values.yaml | Enable and configure ingress settings for the chart under this key. |
| service.port.port | int | `80` | | | persistence | object | See values.yaml | Configure persistence settings for the chart under this key. |
| strategy.type | string | `"Recreate"` | | | service | object | See values.yaml | Configures service settings for the chart. |
## Changelog ## Changelog
@ -93,21 +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).
### [1.0.0] ### [7.0.0]
#### Added
- N/A
#### Changed #### Changed
- N/A - **BREAKING**: Upgraded the common library dependency to version 3.0.2. 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.2/charts/stable/common/) for the up-to-date values.
#### Removed [7.0.0]: #700
- N/A
[1.0.0]: #1.0.0
## Support ## Support

View File

@ -9,19 +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).
### [1.0.0] ### [7.0.0]
#### Added
- N/A
#### Changed #### Changed
- N/A - **BREAKING**: Upgraded the common library dependency to version 3.0.2. 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.2/charts/stable/common/) for the up-to-date values.
#### Removed [7.0.0]: #700
- N/A
[1.0.0]: #1.0.0
{{- end -}} {{- end -}}

View File

@ -6,31 +6,39 @@
# #
image: image:
# -- image repository
repository: linuxserver/heimdall repository: linuxserver/heimdall
# -- image tag
tag: version-2.2.2 tag: version-2.2.2
# -- image pull policy
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
strategy: # -- environment variables. See more environment variables in the [heimdall documentation](https://github.com/linuxserver/docker-heimdall#parameters).
type: Recreate # @default -- See below
env:
env: {} # -- Set the container timezone
# TZ: TZ: UTC
# PUID: # -- Set the container user id
# PGID: PUID: "1000"
# -- Set the container group id
PGID: "1000"
# -- 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
probes: # -- Configure persistence settings for the chart under this key.
startup: # @default -- See values.yaml
enabled: true
persistence: persistence:
config: config:
enabled: false enabled: false
emptyDir:
enabled: false