mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-01-24 07:59:02 +00:00
[duplicati] Migrate to common v3 (#987)
* [duplicati] Migrate to common v3 Signed-off-by: nιcнolaѕ wιlde <ncwilde43@gmail.com> * Change repository to ghcr.io/linuxserver/duplicati Signed-off-by: nιcнolaѕ wιlde <ncwilde43@gmail.com>
This commit is contained in:
parent
2caae48b99
commit
7d1d105aa8
@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
appVersion: latest
|
appVersion: latest
|
||||||
description: Store securely encrypted backups on cloud storage services!
|
description: Store securely encrypted backups on cloud storage services!
|
||||||
name: duplicati
|
name: duplicati
|
||||||
version: 3.1.0
|
version: 4.0.0
|
||||||
keywords:
|
keywords:
|
||||||
- duplicati
|
- duplicati
|
||||||
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/duplicati
|
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/duplicati
|
||||||
@ -16,4 +16,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
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# duplicati
|
# duplicati
|
||||||
|
|
||||||
![Version: 3.1.0](https://img.shields.io/badge/Version-3.1.0-informational?style=flat-square) ![AppVersion: latest](https://img.shields.io/badge/AppVersion-latest-informational?style=flat-square)
|
![Version: 4.0.0](https://img.shields.io/badge/Version-4.0.0-informational?style=flat-square) ![AppVersion: latest](https://img.shields.io/badge/AppVersion-latest-informational?style=flat-square)
|
||||||
|
|
||||||
Store securely encrypted backups on cloud storage services!
|
Store securely encrypted backups on cloud storage services!
|
||||||
|
|
||||||
@ -17,7 +17,7 @@ Store securely encrypted backups on cloud storage services!
|
|||||||
|
|
||||||
| 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
|
||||||
|
|
||||||
@ -79,22 +79,15 @@ If you get `Error: rendered manifests contain a resource that already exists. Un
|
|||||||
|
|
||||||
| Key | Type | Default | Description |
|
| Key | Type | Default | Description |
|
||||||
|-----|------|---------|-------------|
|
|-----|------|---------|-------------|
|
||||||
| env | object | `{}` | |
|
| env.PGID | string | `"1000"` | Specify the group ID the application will run as |
|
||||||
| image.pullPolicy | string | `"IfNotPresent"` | |
|
| env.PUID | string | `"1000"` | Specify the user ID the application will run as |
|
||||||
| image.repository | string | `"linuxserver/duplicati"` | |
|
| env.TZ | string | `"UTC"` | Set the container timezone |
|
||||||
| image.tag | string | `"latest"` | |
|
| image.pullPolicy | string | `"IfNotPresent"` | image pull policy |
|
||||||
| ingress.enabled | bool | `false` | |
|
| image.repository | string | `"ghcr.io/linuxserver/duplicati"` | image repository |
|
||||||
| persistence.backups.emptyDir.enabled | bool | `false` | |
|
| image.tag | string | `"latest"` | image tag |
|
||||||
| persistence.backups.enabled | bool | `false` | |
|
| ingress.main | object | See values.yaml | Enable and configure ingress settings for the chart under this key. |
|
||||||
| persistence.backups.mountPath | string | `"/backups"` | |
|
| persistence | object | See values.yaml | Configure persistence settings for the chart under this key. |
|
||||||
| persistence.config.emptyDir.enabled | bool | `false` | |
|
| service | object | See values.yaml | Configures service settings for the chart. |
|
||||||
| persistence.config.enabled | bool | `false` | |
|
|
||||||
| persistence.config.mountPath | string | `"/config"` | |
|
|
||||||
| persistence.source.emptyDir.enabled | bool | `false` | |
|
|
||||||
| persistence.source.enabled | bool | `false` | |
|
|
||||||
| persistence.source.mountPath | string | `"/source"` | |
|
|
||||||
| service.port.port | int | `8200` | |
|
|
||||||
| strategy.type | string | `"Recreate"` | |
|
|
||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
|
|
||||||
@ -102,6 +95,13 @@ 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.0.0]
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- **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.
|
||||||
|
|
||||||
### [3.0.0]
|
### [3.0.0]
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
@ -113,6 +113,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
- **BREAKING** Migrate to the common library, a lot of configuration has changed.
|
- **BREAKING** Migrate to the common library, a lot of configuration has changed.
|
||||||
- Updated icon.
|
- Updated icon.
|
||||||
- Changed image tag to latest
|
- Changed image tag to latest
|
||||||
|
- Changed repository to `ghcr.io/linuxserver/duplicati`
|
||||||
|
|
||||||
#### Removed
|
#### Removed
|
||||||
|
|
||||||
@ -132,8 +133,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
|
|
||||||
- N/A
|
- N/A
|
||||||
|
|
||||||
[3.0.0]: #3.0.0
|
[4.0.0]: #400
|
||||||
[2.1.1]: #2.1.1
|
[3.0.0]: #300
|
||||||
|
[2.1.1]: #211
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
|
|
||||||
|
@ -9,6 +9,13 @@ 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.0.0]
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- **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.
|
||||||
|
|
||||||
### [3.0.0]
|
### [3.0.0]
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
@ -20,6 +27,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
- **BREAKING** Migrate to the common library, a lot of configuration has changed.
|
- **BREAKING** Migrate to the common library, a lot of configuration has changed.
|
||||||
- Updated icon.
|
- Updated icon.
|
||||||
- Changed image tag to latest
|
- Changed image tag to latest
|
||||||
|
- Changed repository to `ghcr.io/linuxserver/duplicati`
|
||||||
|
|
||||||
#### Removed
|
#### Removed
|
||||||
|
|
||||||
@ -39,6 +47,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
|
|
||||||
- N/A
|
- N/A
|
||||||
|
|
||||||
[3.0.0]: #3.0.0
|
[4.0.0]: #400
|
||||||
[2.1.1]: #2.1.1
|
[3.0.0]: #300
|
||||||
|
[2.1.1]: #211
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
@ -6,38 +6,43 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
image:
|
image:
|
||||||
repository: linuxserver/duplicati
|
# -- image repository
|
||||||
|
repository: ghcr.io/linuxserver/duplicati
|
||||||
|
# -- image tag
|
||||||
tag: latest
|
tag: latest
|
||||||
|
# -- image pull policy
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
|
|
||||||
strategy:
|
# See more environment variables in the [duplicati documentation](https://github.com/linuxserver/docker-duplicati#parameters)
|
||||||
type: Recreate
|
# @default -- See below
|
||||||
|
env:
|
||||||
# See more environment variables in the duplicati documentation
|
# -- Set the container timezone
|
||||||
# https://hub.docker.com/r/linuxserver/duplicati
|
TZ: UTC
|
||||||
env: {}
|
# -- Specify the user ID the application will run as
|
||||||
# TZ:
|
PUID: "1000"
|
||||||
|
# -- Specify the group ID the application will run as
|
||||||
|
PGID: "1000"
|
||||||
|
|
||||||
|
# -- Configures service settings for the chart.
|
||||||
|
# @default -- See values.yaml
|
||||||
service:
|
service:
|
||||||
port:
|
main:
|
||||||
|
ports:
|
||||||
|
http:
|
||||||
port: 8200
|
port: 8200
|
||||||
|
|
||||||
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
|
|
||||||
mountPath: /config
|
|
||||||
source:
|
source:
|
||||||
enabled: false
|
enabled: false
|
||||||
emptyDir:
|
|
||||||
enabled: false
|
|
||||||
mountPath: /source
|
|
||||||
backups:
|
backups:
|
||||||
enabled: false
|
enabled: false
|
||||||
emptyDir:
|
|
||||||
enabled: false
|
|
||||||
mountPath: /backups
|
|
||||||
|
Loading…
Reference in New Issue
Block a user