-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: bundle redis, mariadb, and postgresql (#244)
Adds basic support for deploying Redis, MariaDB or PostgreSQL as part of an Authelia deployment. Fixes #89, Fixes #172
- Loading branch information
Showing
4 changed files
with
91 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,6 @@ | |
.idea | ||
*.tmproj | ||
*.png | ||
*.tgz | ||
docs/ | ||
screenshots/ | ||
scripts/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
apiVersion: v2 | ||
name: authelia | ||
version: 0.9.0-beta5 | ||
version: 0.9.0-beta6 | ||
kubeVersion: ">= 1.13.0-0" | ||
description: Authelia is a Single Sign-On Multi-Factor portal for web apps | ||
type: application | ||
|
@@ -20,7 +20,19 @@ home: https://www.authelia.com | |
sources: | ||
- https://github.com/authelia/chartrepo/tree/master/charts/authelia | ||
- https://www.github.com/authelia/authelia | ||
dependencies: [] | ||
dependencies: | ||
- name: postgresql | ||
version: ~15.5.11 | ||
repository: https://charts.bitnami.com/bitnami | ||
condition: configMap.storage.postgres.deploy | ||
- name: mariadb | ||
version: ~18.2.4 | ||
repository: https://charts.bitnami.com/bitnami | ||
condition: configMap.storage.mysql.deploy | ||
- name: redis | ||
version: ~19.6.0 | ||
repository: https://charts.bitnami.com/bitnami | ||
condition: configMap.session.redis.deploy | ||
maintainers: | ||
- name: james-d-elliott | ||
email: [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters