diff --git a/charts/linkwarden/Chart.lock b/charts/linkwarden/Chart.lock new file mode 100644 index 0000000..f6203cf --- /dev/null +++ b/charts/linkwarden/Chart.lock @@ -0,0 +1,6 @@ +dependencies: +- name: common + repository: https://git.octopusx.de/api/packages/octopusx/helm + version: 4.5.2 +digest: sha256:165f53dee97a3d49f63ee809cca05105c20a4e8901f428b154eb28f28dcc7f3f +generated: "2023-11-09T09:32:40.067707353+01:00" diff --git a/charts/linkwarden/Chart.yaml b/charts/linkwarden/Chart.yaml new file mode 100644 index 0000000..88438df --- /dev/null +++ b/charts/linkwarden/Chart.yaml @@ -0,0 +1,24 @@ +--- +apiVersion: v2 +appVersion: "v2.0.0" +description: Open source link aggregator, bookmark manager and website cache. +name: linkwarden +version: 0.1.0 +kubeVersion: ">= 1.16.0-0" +keywords: + - link + - bookmark + - website + - cache +home: https://teapot.octopusx.de/octocloudlab/chart-catalog/src/branch/main/charts/linkwarden +icon: https://github.com/linkwarden/linkwarden/blob/main/assets/logo.png +sources: + - https://github.com/linkwarden/linkwarden +maintainers: + - name: accidentallycompetent + email: accidentallycompetent@octopusx.de +dependencies: + - name: common + repository: https://git.octopusx.de/api/packages/octopusx/helm + version: 4.5.2 + diff --git a/charts/linkwarden/README.md b/charts/linkwarden/README.md new file mode 100644 index 0000000..a11b667 --- /dev/null +++ b/charts/linkwarden/README.md @@ -0,0 +1,40 @@ +# linkwarden + +![Version: 0.1.0](https://img.shields.io/badge/Version-0.1.0-informational?style=flat-square) ![AppVersion: v2.0.0](https://img.shields.io/badge/AppVersion-v2.0.0-informational?style=flat-square) + +Open source link aggregator, bookmark manager and website cache. + +**Homepage:** + +## Maintainers + +| Name | Email | Url | +| ---- | ------ | --- | +| accidentallycompetent | | | + +## Source Code + +* + +## Requirements + +Kubernetes: `>= 1.16.0-0` + +| Repository | Name | Version | +|------------|------|---------| +| https://git.octopusx.de/api/packages/octopusx/helm | common | 4.5.2 | + +## Values + +| Key | Type | Default | Description | +|-----|------|---------|-------------| +| env | object | See below | environment variables. See more environment variables in the [linkwarden documentation](https://docs.linkwarden.app/self-hosting/environment-variables) | +| image.pullPolicy | string | `"IfNotPresent"` | image pull policy | +| image.repository | string | `"ghcr.io/linkwarden/linkwarden"` | image repository | +| image.tag | string | chart.appVersion | 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. | +| service | object | See values.yaml | Configures service settings for the chart. | + +---------------------------------------------- +Autogenerated from chart metadata using [helm-docs v1.11.3](https://github.com/norwoodj/helm-docs/releases/v1.11.3) diff --git a/charts/linkwarden/charts/common-4.5.2.tgz b/charts/linkwarden/charts/common-4.5.2.tgz new file mode 100644 index 0000000..cba1a9a Binary files /dev/null and b/charts/linkwarden/charts/common-4.5.2.tgz differ diff --git a/charts/linkwarden/templates/NOTES.txt b/charts/linkwarden/templates/NOTES.txt new file mode 100644 index 0000000..90f7b65 --- /dev/null +++ b/charts/linkwarden/templates/NOTES.txt @@ -0,0 +1 @@ +{{- include "common.notes.defaultNotes" . -}} diff --git a/charts/linkwarden/templates/common.yaml b/charts/linkwarden/templates/common.yaml new file mode 100644 index 0000000..a6613c2 --- /dev/null +++ b/charts/linkwarden/templates/common.yaml @@ -0,0 +1 @@ +{{ include "common.all" . }} diff --git a/charts/linkwarden/values.yaml b/charts/linkwarden/values.yaml new file mode 100644 index 0000000..68bef12 --- /dev/null +++ b/charts/linkwarden/values.yaml @@ -0,0 +1,45 @@ +# +# IMPORTANT NOTE +# +# This chart inherits from our common library chart. You can check the default values/options here: +# https://teapot.octopusx.de/octocloudlab/library-chart/src/branch/main/chart/values.yaml +# + +image: + # -- image repository + repository: ghcr.io/linkwarden/linkwarden + # -- image tag + # @default -- chart.appVersion + tag: v2.0.0 + # -- image pull policy + pullPolicy: IfNotPresent + +# -- environment variables. See more environment variables in the [linkwarden documentation](https://docs.linkwarden.app/self-hosting/environment-variables) +# @default -- See below +env: + NEXTAUTH_SECRET: very_sensitive_secret + DATABASE_URL: postgresql://user:password@localhost:5432/linkwarden + NEXTAUTH_URL: http://localhost:3000 + +# -- Configures service settings for the chart. +# @default -- See values.yaml +service: + main: + ports: + http: + port: 3000 + +ingress: + # -- 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: {} + # data: + # enabled: false + # accessMode: ReadWriteOnce + # size: 10Gi + # mountPath: /data/data