Skip to content

Commit

Permalink
add missing TLS section to values (#38)
Browse files Browse the repository at this point in the history
* add missing tls section to values

* fix tls defaults
  • Loading branch information
BeryJu authored Nov 24, 2021
1 parent 375c203 commit aa4190e
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

## authentik Chart

![Version: 4.0.2](https://img.shields.io/badge/Version-4.0.2-informational?style=for-the-badge)
![Version: 4.0.3](https://img.shields.io/badge/Version-4.0.3-informational?style=for-the-badge)
![AppVersion: 2021.10.4](https://img.shields.io/badge/AppVersion-2021.10.4-informational?style=for-the-badge)

See [README](./charts/authentik/README.md)
Expand Down
2 changes: 1 addition & 1 deletion charts/authentik/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ keywords:
- ldap
- idp
- sp
version: 4.0.2
version: 4.0.3
appVersion: 2021.10.4
icon: https://raw.githubusercontent.com/BeryJu/authentik/master/web/icons/icon.svg
maintainers:
Expand Down
4 changes: 3 additions & 1 deletion charts/authentik/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

[![Join Discord](https://img.shields.io/discord/809154715984199690?label=Discord&style=for-the-badge)](https://goauthentik.io/discord)
[![GitHub Workflow Status](https://img.shields.io/github/workflow/status/goauthentik/helm/Lint%20and%20Test%20Chart?label=cid&style=for-the-badge)](https://github.com/goauthentik/helm/actions/workflows/lint-test.yaml)
![Version: 4.0.2](https://img.shields.io/badge/Version-4.0.2-informational?style=for-the-badge)
![Version: 4.0.3](https://img.shields.io/badge/Version-4.0.3-informational?style=for-the-badge)
![AppVersion: 2021.10.4](https://img.shields.io/badge/AppVersion-2021.10.4-informational?style=for-the-badge)

authentik is an open-source Identity Provider focused on flexibility and versatility
Expand Down Expand Up @@ -115,6 +115,8 @@ redis:
| ingress.hosts[0].paths[0].pathType | string | `"Prefix"` | |
| ingress.ingressClassName | string | `""` | |
| ingress.labels | object | `{}` | |
| ingress.tls[0].hosts | list | `[]` | |
| ingress.tls[0].secretName | string | `""` | |
| livenessProbe.enabled | bool | `true` | enables or disables the livenessProbe |
| livenessProbe.httpGet.path | string | `"/-/health/live/"` | liveness probe url path |
| livenessProbe.httpGet.port | string | `"http"` | |
Expand Down
2 changes: 1 addition & 1 deletion charts/authentik/README.md.gotmpl
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

[![Join Discord](https://img.shields.io/discord/809154715984199690?label=Discord&style=for-the-badge)](https://goauthentik.io/discord)
[![GitHub Workflow Status](https://img.shields.io/github/workflow/status/goauthentik/helm/Lint%20and%20Test%20Chart?label=cid&style=for-the-badge)](https://github.com/goauthentik/helm/actions/workflows/lint-test.yaml)
![Version: 4.0.2](https://img.shields.io/badge/Version-4.0.2-informational?style=for-the-badge)
![Version: 4.0.3](https://img.shields.io/badge/Version-4.0.3-informational?style=for-the-badge)
![AppVersion: 2021.10.4](https://img.shields.io/badge/AppVersion-2021.10.4-informational?style=for-the-badge)

{{ template "chart.deprecationWarning" . }}
Expand Down
3 changes: 3 additions & 0 deletions charts/authentik/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ ingress:
paths:
- path: "/"
pathType: Prefix
tls:
- hosts: []
secretName: ""

authentik:
# -- Log level for server and worker
Expand Down

0 comments on commit aa4190e

Please sign in to comment.