mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-02-03 07:49:03 +00:00
[traefik-forward-auth] Add envFrom option (#304)
This commit is contained in:
parent
6ad3ba062a
commit
44fbca1fb8
@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
name: traefik-forward-auth
|
name: traefik-forward-auth
|
||||||
description: A minimal forward authentication service that provides OAuth/SSO login and authentication for the traefik reverse proxy/load balancer
|
description: A minimal forward authentication service that provides OAuth/SSO login and authentication for the traefik reverse proxy/load balancer
|
||||||
type: application
|
type: application
|
||||||
version: 1.0.3
|
version: 1.0.4
|
||||||
appVersion: 2.2.0
|
appVersion: 2.2.0
|
||||||
keywords:
|
keywords:
|
||||||
- traefik
|
- traefik
|
||||||
|
@ -65,6 +65,7 @@ helm install traefik-forward-auth k8s-at-home/traefik-forward-auth --values valu
|
|||||||
| default.action | string | `""` | [auth|allow] Default action (default: auth) |
|
| default.action | string | `""` | [auth|allow] Default action (default: auth) |
|
||||||
| default.provider | string | `""` | [google|oidc|generic-oauth] Default provider (default: google) |
|
| default.provider | string | `""` | [google|oidc|generic-oauth] Default provider (default: google) |
|
||||||
| env | list | `[]` | |
|
| env | list | `[]` | |
|
||||||
|
| envFrom | list | `[]` | Load environment variables from secrets or configmaps |
|
||||||
| fullnameOverride | string | `""` | |
|
| fullnameOverride | string | `""` | |
|
||||||
| image.pullPolicy | string | `"IfNotPresent"` | |
|
| image.pullPolicy | string | `"IfNotPresent"` | |
|
||||||
| image.repository | string | `"thomseddon/traefik-forward-auth"` | |
|
| image.repository | string | `"thomseddon/traefik-forward-auth"` | |
|
||||||
|
@ -38,6 +38,10 @@ spec:
|
|||||||
{{- end }}
|
{{- end }}
|
||||||
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
|
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
|
||||||
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
||||||
|
{{- with .Values.envFrom }}
|
||||||
|
envFrom:
|
||||||
|
{{- toYaml . | nindent 12 }}
|
||||||
|
{{- end }}
|
||||||
env:
|
env:
|
||||||
{{- if .Values.logging.level }}
|
{{- if .Values.logging.level }}
|
||||||
- name: LOG_LEVEL
|
- name: LOG_LEVEL
|
||||||
|
@ -96,6 +96,9 @@ providers:
|
|||||||
resource: ""
|
resource: ""
|
||||||
|
|
||||||
env: []
|
env: []
|
||||||
|
envFrom:
|
||||||
|
# - secretRef:
|
||||||
|
# name:
|
||||||
|
|
||||||
serviceAccount:
|
serviceAccount:
|
||||||
# Specifies whether a service account should be created
|
# Specifies whether a service account should be created
|
||||||
|
Loading…
Reference in New Issue
Block a user