-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* use secret for env variables * add blueprints, bump version * add blueprint to test * bump remote too I guess * add missing loop * only mount blueprints into worker * set namespace * actually create ns * 8.2
- Loading branch information
Showing
14 changed files
with
129 additions
and
40 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
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
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
--- | ||
|
||
[![](https://img.shields.io/discord/809154715984199690?label=Discord&style=for-the-badge)](https://discord.gg/jg33eMhnj6) | ||
![Version: 1.0.2](https://img.shields.io/badge/Version-1.0.2-informational?style=for-the-badge) | ||
![Version: 1.0.3](https://img.shields.io/badge/Version-1.0.3-informational?style=for-the-badge) | ||
![AppVersion: 2021.10.2](https://img.shields.io/badge/AppVersion-2021.10.2-informational?style=for-the-badge) | ||
|
||
RBAC required for a remote cluster to be connected to authentik. | ||
|
@@ -16,8 +16,8 @@ RBAC required for a remote cluster to be connected to authentik. | |
|
||
| Name | Email | Url | | ||
| ---- | ------ | --- | | ||
| BeryJu | [email protected] | https://github.com/BeryJu | | ||
| dirtycajunrice | [email protected] | https://github.com/dirtycajunrice | | ||
| BeryJu | <[email protected]> | <https://github.com/BeryJu> | | ||
| dirtycajunrice | <[email protected]> | <https://github.com/dirtycajunrice> | | ||
|
||
## Source Code | ||
|
||
|
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
name: authentik-ci-blueprint | ||
data: | ||
test-blueprint.yaml: | | ||
version: 1 | ||
metadata: | ||
name: ci-test-blueprint | ||
entries: | ||
- attrs: | ||
designation: authentication | ||
name: ci-test-blueprint | ||
title: ci-test-blueprint | ||
identifiers: | ||
slug: ci-test-blueprint | ||
model: authentik_flows.flow | ||
id: flow |
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
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
apiVersion: v1 | ||
kind: Secret | ||
metadata: | ||
name: {{ printf "%s-secrets" (include "common.names.fullname" .) }} | ||
labels: | ||
{{- include "common.labels" . | nindent 4 }} | ||
type: Opaque | ||
data: | ||
{{- include "authentik.secret" (dict "root" . "values" .Values.authentik) | indent 2 }} | ||
{{- if $.Values.geoip.enabled }} | ||
GEOIPUPDATE_ACCOUNT_ID: {{ required "geoip account id required" .Values.geoip.accountId | toString | b64enc | quote }} | ||
GEOIPUPDATE_LICENSE_KEY: {{ required "geoip license key required" .Values.geoip.licenseKey | toString | b64enc | quote }} | ||
{{- end }} |
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