Skip to content

Commit 1852ca9

Browse files
committed
refactor: adapt chart for v4
1 parent 84f4a7c commit 1852ca9

7 files changed

Lines changed: 354 additions & 150 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
A Helm chart for running Tinyauth in a Kubernetes cluster.
44

55
> [!WARNING]
6-
> This Helm chart is a community project. Im not a Helm expert, so complex issues might be beyond my debugging skills. If you run into problems, please visit the [Discord](https://discord.gg/eHzVaCzRRd) server for help from contributors who know their way around Helm better than I do.
6+
> This Helm chart is a community project. I'm not a Helm expert, so complex issues might be beyond my debugging skills. If you run into problems, please visit the [Discord](https://discord.gg/eHzVaCzRRd) server for help from contributors who know their way around Helm better than I do.
77
88
## Development
99

charts/tinyauth/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 0.5.0
18+
version: 1.0.0
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to

charts/tinyauth/README.md

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# tinyauth
22

3-
![Version: 0.5.0](https://img.shields.io/badge/Version-0.5.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v4.1.0](https://img.shields.io/badge/AppVersion-v4.1.0-informational?style=flat-square)
3+
![Version: 1.0.0](https://img.shields.io/badge/Version-1.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v4.1.0](https://img.shields.io/badge/AppVersion-v4.1.0-informational?style=flat-square)
44

55
The simplest way to protect your apps with a login screen.
66

@@ -59,19 +59,25 @@ The simplest way to protect your apps with a login screen.
5959
| serviceAccount.create | bool | `true` | |
6060
| serviceAccount.name | string | `""` | |
6161
| tinyauth.general.address | string | `"0.0.0.0"` | |
62-
| tinyauth.general.appTitle | string | `""` | |
62+
| tinyauth.general.appTitle | string | `"Tinyauth"` | |
6363
| tinyauth.general.appUrl | string | `""` | |
64-
| tinyauth.general.backgroundImage | string | `""` | |
65-
| tinyauth.general.disableContinue | bool | `false` | |
64+
| tinyauth.general.backgroundImage | string | `"/background.jpg"` | |
65+
| tinyauth.general.databasePath | string | `"/data/tinyauth.db"` | |
66+
| tinyauth.general.disableAnalytics | bool | `false` | |
67+
| tinyauth.general.disableResources | bool | `false` | |
68+
| tinyauth.general.disableUiWarnings | bool | `false` | |
6669
| tinyauth.general.forgotPasswordMessage | string | `""` | |
6770
| tinyauth.general.logLevel | string | `"info"` | |
6871
| tinyauth.general.loginMaxRetries | int | `5` | |
6972
| tinyauth.general.loginTimeout | int | `300` | |
70-
| tinyauth.general.oauthAutoRedirect | string | `""` | |
73+
| tinyauth.general.oauthAutoRedirect | string | `"none"` | |
7174
| tinyauth.general.oauthWhitelist | string | `""` | |
7275
| tinyauth.general.port | int | `3000` | |
76+
| tinyauth.general.resourcesDir | string | `"/data/resources"` | |
7377
| tinyauth.general.secureCookie | bool | `false` | |
7478
| tinyauth.general.sessionExpiry | int | `86400` | |
79+
| tinyauth.general.socketPath | string | `""` | |
80+
| tinyauth.general.trustedProxies | string | `""` | |
7581
| tinyauth.general.users | string | `""` | |
7682
| tinyauth.general.usersFile | string | `""` | |
7783
| tinyauth.ldap.address | string | `""` | |
@@ -80,7 +86,6 @@ The simplest way to protect your apps with a login screen.
8086
| tinyauth.ldap.bindPassword | string | `""` | |
8187
| tinyauth.ldap.bindPasswordSecretRef.key | string | `""` | |
8288
| tinyauth.ldap.bindPasswordSecretRef.name | string | `""` | |
83-
| tinyauth.ldap.enabled | bool | `false` | |
8489
| tinyauth.ldap.insecure | bool | `false` | |
8590
| tinyauth.ldap.searchFilter | string | `"(uid=%s)"` | |
8691
| tinyauth.providers[0].authUrl | string | `""` | |
@@ -90,9 +95,9 @@ The simplest way to protect your apps with a login screen.
9095
| tinyauth.providers[0].clientSecretSecretRef.key | string | `""` | |
9196
| tinyauth.providers[0].clientSecretSecretRef.name | string | `""` | |
9297
| tinyauth.providers[0].id | string | `""` | |
98+
| tinyauth.providers[0].insecureSkipVerify | bool | `false` | |
9399
| tinyauth.providers[0].name | string | `""` | |
94100
| tinyauth.providers[0].scopes | string | `""` | |
95-
| tinyauth.providers[0].skipSsl | bool | `false` | |
96101
| tinyauth.providers[0].tokenUrl | string | `""` | |
97102
| tinyauth.providers[0].userInfoUrl | string | `""` | |
98103
| tolerations | list | `[]` | |

0 commit comments

Comments
 (0)