From ccaf73d2a49c3719752bf2d5294d2a456bbf2b7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20Fr=C4=85tczak?= Date: Sun, 5 May 2024 11:06:35 +0200 Subject: [PATCH] add secret configmap defaults to headplane --- charts/headplane/Chart.yaml | 2 +- charts/headplane/README.md | 4 ++-- charts/headplane/values.yaml | 15 ++++++++++----- 3 files changed, 13 insertions(+), 8 deletions(-) diff --git a/charts/headplane/Chart.yaml b/charts/headplane/Chart.yaml index b255b72..3d68501 100644 --- a/charts/headplane/Chart.yaml +++ b/charts/headplane/Chart.yaml @@ -3,7 +3,7 @@ apiVersion: v2 appVersion: "0.1.3" description: web-ui for the open source headscale server name: headplane -version: 0.1.0 +version: 0.1.1 kubeVersion: ">= 1.16.0-0" keywords: - headscale diff --git a/charts/headplane/README.md b/charts/headplane/README.md index a4b4a54..d0a8f93 100644 --- a/charts/headplane/README.md +++ b/charts/headplane/README.md @@ -1,6 +1,6 @@ # 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) +![Version: 0.1.1](https://img.shields.io/badge/Version-0.1.1-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 @@ -37,4 +37,4 @@ Kubernetes: `>= 1.16.0-0` | 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) +Autogenerated from chart metadata using [helm-docs v1.11.3](https://github.com/norwoodj/helm-docs/releases/v1.11.3) diff --git a/charts/headplane/values.yaml b/charts/headplane/values.yaml index 1252d9d..9e602c9 100644 --- a/charts/headplane/values.yaml +++ b/charts/headplane/values.yaml @@ -47,8 +47,13 @@ ingress: # -- Configure persistence settings for the chart under this key. # @default -- See values.yaml persistence: {} - # data: - # enabled: false - # accessMode: ReadWriteOnce - # size: 1Gi - # mountPath: /data + # -- You need to create a copy of your headscale config file as a secret + # -- and mount it as a volume with `kubectl create secret generic headscale-conf --from-file=./config.yaml` + # config: + # enabled: true + # type: secret + # name: headscale-conf + # mountPath: /etc/tailscale + # items: + # - key: config.yaml + # path: config.yaml \ No newline at end of file