From 1b67b5cbb670d874f06b7afdd2cc69d24badee4d Mon Sep 17 00:00:00 2001 From: Alex Lebens Date: Mon, 30 Dec 2024 16:59:49 -0600 Subject: [PATCH] add description of values --- charts/cloudflared/Chart.yaml | 2 +- charts/cloudflared/README.md | 15 ++++++--------- charts/cloudflared/values.yaml | 9 +++++++++ 3 files changed, 16 insertions(+), 10 deletions(-) diff --git a/charts/cloudflared/Chart.yaml b/charts/cloudflared/Chart.yaml index 37a7971..9ec9c02 100644 --- a/charts/cloudflared/Chart.yaml +++ b/charts/cloudflared/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 name: cloudflared -version: 1.12.1 +version: 1.12.2 description: Cloudflared Tunnel keywords: - cloudflare diff --git a/charts/cloudflared/README.md b/charts/cloudflared/README.md index 30a8327..c63251c 100644 --- a/charts/cloudflared/README.md +++ b/charts/cloudflared/README.md @@ -1,6 +1,6 @@ # cloudflared -![Version: 1.12.1](https://img.shields.io/badge/Version-1.12.1-informational?style=flat-square) ![AppVersion: 2024.12.2](https://img.shields.io/badge/AppVersion-2024.12.2-informational?style=flat-square) +![Version: 1.12.2](https://img.shields.io/badge/Version-1.12.2-informational?style=flat-square) ![AppVersion: 2024.12.2](https://img.shields.io/badge/AppVersion-2024.12.2-informational?style=flat-square) Cloudflared Tunnel @@ -25,14 +25,11 @@ Cloudflared Tunnel | Key | Type | Default | Description | |-----|------|---------|-------------| -| existingSecretKey | string | `"cf-tunnel-token"` | | -| existingSecretName | string | `"cloudflared-secret"` | | -| image.pullPolicy | string | `"IfNotPresent"` | | -| image.repository | string | `"cloudflare/cloudflared"` | | -| image.tag | string | `"2024.12.2"` | | -| name | string | `"cloudflared"` | | -| resources.requests.cpu | string | `"100m"` | | -| resources.requests.memory | string | `"128Mi"` | | +| existingSecretKey | string | `"cf-tunnel-token"` | Name of key that contains the token in the existingSecret | +| existingSecretName | string | `"cloudflared-secret"` | Name of existing secret that contains Cloudflare token | +| image | object | `{"pullPolicy":"IfNotPresent","repository":"cloudflare/cloudflared","tag":"2024.12.2"}` | Default image | +| name | string | `"cloudflared"` | Name override of release | +| resources | object | `{"requests":{"cpu":"100m","memory":"128Mi"}}` | Default resources | ---------------------------------------------- Autogenerated from chart metadata using [helm-docs v1.14.2](https://github.com/norwoodj/helm-docs/releases/v1.14.2) diff --git a/charts/cloudflared/values.yaml b/charts/cloudflared/values.yaml index 1857190..ab3ce88 100644 --- a/charts/cloudflared/values.yaml +++ b/charts/cloudflared/values.yaml @@ -1,10 +1,19 @@ +# -- Name override of release name: cloudflared + +# -- Name of existing secret that contains Cloudflare token existingSecretName: cloudflared-secret + +# -- Name of key that contains the token in the existingSecret existingSecretKey: cf-tunnel-token + +# -- Default image image: repository: cloudflare/cloudflared tag: "2024.12.2" pullPolicy: IfNotPresent + +# -- Default resources resources: requests: cpu: 100m