headplane: added chart for headplane
Minimal configuration for the github.com/tale/headplane/ project. Signed-off-by: Hilmar Magnusson <hilmarmag@protonmail.com>
This commit is contained in:
parent
9eaeffef44
commit
475527afdc
|
@ -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"
|
|
@ -0,0 +1,23 @@
|
||||||
|
---
|
||||||
|
apiVersion: v2
|
||||||
|
appVersion: "0.1.3"
|
||||||
|
description: web-ui for the open source headscale server
|
||||||
|
name: headplane
|
||||||
|
version: 0.1.0
|
||||||
|
kubeVersion: ">= 1.16.0-0"
|
||||||
|
keywords:
|
||||||
|
- headscale
|
||||||
|
- tailscale
|
||||||
|
- vpn
|
||||||
|
home: https://teapot.octopusx.de/octocloudlab/chart-catalog/src/branch/main/charts/headplane
|
||||||
|
sources:
|
||||||
|
- https://github.com/tale/headplane
|
||||||
|
maintainers:
|
||||||
|
- name: accidentallycompetent
|
||||||
|
email: accidentallycompetent@octopusx.de
|
||||||
|
- name: hilmario
|
||||||
|
email: hilmarmag@protonmail.com
|
||||||
|
dependencies:
|
||||||
|
- name: common
|
||||||
|
repository: https://git.octopusx.de/api/packages/octopusx/helm
|
||||||
|
version: 4.5.2
|
|
@ -0,0 +1,40 @@
|
||||||
|
# headplane
|
||||||
|
|
||||||
|
![Version: 0.1.0](https://img.shields.io/badge/Version-0.1.0-informational?style=flat-square) ![AppVersion: 0.1.3](https://img.shields.io/badge/AppVersion-0.1.3-informational?style=flat-square)
|
||||||
|
|
||||||
|
web-ui for the open source headscale server
|
||||||
|
|
||||||
|
**Homepage:** <https://teapot.octopusx.de/octocloudlab/chart-catalog/src/branch/main/charts/headplane>
|
||||||
|
|
||||||
|
## Maintainers
|
||||||
|
|
||||||
|
| Name | Email | Url |
|
||||||
|
| ---- | ------ | --- |
|
||||||
|
| accidentallycompetent | <accidentallycompetent@octopusx.de> | |
|
||||||
|
| hilmario | <hilmarmag@protonmail.com> | |
|
||||||
|
|
||||||
|
## Source Code
|
||||||
|
|
||||||
|
* <https://github.com/tale/headplane>
|
||||||
|
|
||||||
|
## 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/tale/headplane"` | image repository |
|
||||||
|
| 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.13.1](https://github.com/norwoodj/helm-docs/releases/v1.13.1)
|
Binary file not shown.
|
@ -0,0 +1 @@
|
||||||
|
{{- include "common.notes.defaultNotes" . -}}
|
|
@ -0,0 +1 @@
|
||||||
|
{{ include "common.all" . }}
|
|
@ -0,0 +1,54 @@
|
||||||
|
#
|
||||||
|
# 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/tale/headplane
|
||||||
|
# -- 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: {}
|
||||||
|
# environment:
|
||||||
|
# HEADSCALE_URL: 'http://headscale:8080'
|
||||||
|
# COOKIE_SECRET: 'abcdefghijklmnopqrstuvwxyz'
|
||||||
|
|
||||||
|
# # These are all optional!
|
||||||
|
# HEADSCALE_CONTAINER: 'headscale'
|
||||||
|
# API_KEY: 'abcdefghijklmnopqrstuvwxyz'
|
||||||
|
# OIDC_CLIENT_ID: 'headscale'
|
||||||
|
# OIDC_ISSUER: 'https://sso.example.com'
|
||||||
|
# OIDC_CLIENT_SECRET: 'super_secret_client_secret'
|
||||||
|
# DISABLE_API_KEY_LOGIN: 'true'
|
||||||
|
|
||||||
|
# # These are the default values
|
||||||
|
# HOST: '0.0.0.0'
|
||||||
|
# PORT: '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: 1Gi
|
||||||
|
# mountPath: /data
|
Loading…
Reference in New Issue