Compare commits
3 Commits
main
...
8b6b19cdcf
| Author | SHA1 | Date | |
|---|---|---|---|
|
8b6b19cdcf
|
|||
|
ff11a99999
|
|||
|
c186ee59f5
|
@@ -19,3 +19,8 @@ spec:
|
|||||||
copy:
|
copy:
|
||||||
- from: "@foundation/apps/lldap/**"
|
- from: "@foundation/apps/lldap/**"
|
||||||
to: "@artifact/"
|
to: "@artifact/"
|
||||||
|
- name: authelia
|
||||||
|
originRevision: "@foundation"
|
||||||
|
copy:
|
||||||
|
- from: "@foundation/apps/authelia/**"
|
||||||
|
to: "@artifact/"
|
||||||
|
|||||||
19
apps/authelia/authelia.yaml
Normal file
19
apps/authelia/authelia.yaml
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
apiVersion: kustomize.toolkit.fluxcd.io/v1
|
||||||
|
kind: Kustomization
|
||||||
|
metadata:
|
||||||
|
name: authelia
|
||||||
|
namespace: flux-system
|
||||||
|
spec:
|
||||||
|
interval: 1h
|
||||||
|
retryInterval: 2m
|
||||||
|
timeout: 5m
|
||||||
|
dependsOn:
|
||||||
|
- name: cnpg
|
||||||
|
- name: lldap-controller
|
||||||
|
- name: dragonfly-operator
|
||||||
|
sourceRef:
|
||||||
|
kind: ExternalArtifact
|
||||||
|
name: authelia
|
||||||
|
path: ./${cluster_env}
|
||||||
|
prune: true
|
||||||
|
wait: true
|
||||||
16
apps/authelia/base/cluster-restore.yaml
Normal file
16
apps/authelia/base/cluster-restore.yaml
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
apiVersion: postgresql.cnpg.io/v1
|
||||||
|
kind: Cluster
|
||||||
|
metadata:
|
||||||
|
name: db
|
||||||
|
spec:
|
||||||
|
bootstrap:
|
||||||
|
recovery:
|
||||||
|
source: source
|
||||||
|
externalClusters:
|
||||||
|
- name: source
|
||||||
|
plugin:
|
||||||
|
name: barman-cloud.cloudnative-pg.io
|
||||||
|
parameters:
|
||||||
|
barmanObjectName: garage-store
|
||||||
|
serverName: db
|
||||||
|
plugins: []
|
||||||
15
apps/authelia/base/cluster.yaml
Normal file
15
apps/authelia/base/cluster.yaml
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
apiVersion: postgresql.cnpg.io/v1
|
||||||
|
kind: Cluster
|
||||||
|
metadata:
|
||||||
|
name: db
|
||||||
|
namespace: authelia
|
||||||
|
# TODO: Add labels?
|
||||||
|
spec:
|
||||||
|
storage:
|
||||||
|
size: 8Gi
|
||||||
|
storageClass: local-path
|
||||||
|
plugins:
|
||||||
|
- name: barman-cloud.cloudnative-pg.io
|
||||||
|
isWALArchiver: true
|
||||||
|
parameters:
|
||||||
|
barmanObjectName: garage-store
|
||||||
29
apps/authelia/base/helm-release.yaml
Normal file
29
apps/authelia/base/helm-release.yaml
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
apiVersion: helm.toolkit.fluxcd.io/v2
|
||||||
|
kind: HelmRelease
|
||||||
|
metadata:
|
||||||
|
name: authelia
|
||||||
|
namespace: authelia
|
||||||
|
spec:
|
||||||
|
interval: 12h
|
||||||
|
install:
|
||||||
|
strategy:
|
||||||
|
name: RetryOnFailure
|
||||||
|
retryInterval: 2m
|
||||||
|
upgrade:
|
||||||
|
strategy:
|
||||||
|
name: RetryOnFailure
|
||||||
|
retryInterval: 3m
|
||||||
|
chart:
|
||||||
|
spec:
|
||||||
|
chart: authelia
|
||||||
|
version: "0.10.x"
|
||||||
|
sourceRef:
|
||||||
|
kind: HelmRepository
|
||||||
|
name: authelia
|
||||||
|
interval: 24h
|
||||||
|
valuesFrom:
|
||||||
|
- kind: ConfigMap
|
||||||
|
name: values-base
|
||||||
|
- kind: ConfigMap
|
||||||
|
name: values-overlay
|
||||||
|
optional: true
|
||||||
8
apps/authelia/base/helm-repository.yaml
Normal file
8
apps/authelia/base/helm-repository.yaml
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
apiVersion: source.toolkit.fluxcd.io/v1
|
||||||
|
kind: HelmRepository
|
||||||
|
metadata:
|
||||||
|
name: authelia
|
||||||
|
namespace: authelia
|
||||||
|
spec:
|
||||||
|
interval: 24h
|
||||||
|
url: https://charts.authelia.com
|
||||||
25
apps/authelia/base/kustomization.yaml
Normal file
25
apps/authelia/base/kustomization.yaml
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
|
kind: Kustomization
|
||||||
|
resources:
|
||||||
|
- namespace.yaml
|
||||||
|
- cluster.yaml
|
||||||
|
- service-user.yaml
|
||||||
|
- helm-repository.yaml
|
||||||
|
- helm-release.yaml
|
||||||
|
- secret-s3-garage.yaml
|
||||||
|
- object-store.yaml
|
||||||
|
|
||||||
|
configurations:
|
||||||
|
- name-reference.yaml
|
||||||
|
|
||||||
|
configMapGenerator:
|
||||||
|
- name: values-base
|
||||||
|
namespace: authelia
|
||||||
|
files:
|
||||||
|
- values.yaml
|
||||||
|
|
||||||
|
# Uncomment to restore database from backup
|
||||||
|
# patches:
|
||||||
|
# - path: cluster-restore.yaml
|
||||||
|
# target:
|
||||||
|
# kind: Cluster
|
||||||
6
apps/authelia/base/name-reference.yaml
Normal file
6
apps/authelia/base/name-reference.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
nameReference:
|
||||||
|
- kind: ConfigMap
|
||||||
|
version: v1
|
||||||
|
fieldSpecs:
|
||||||
|
- path: spec/valuesFrom/name
|
||||||
|
kind: HelmRelease
|
||||||
5
apps/authelia/base/namespace.yaml
Normal file
5
apps/authelia/base/namespace.yaml
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
apiVersion: v1
|
||||||
|
kind: Namespace
|
||||||
|
metadata:
|
||||||
|
name: authelia
|
||||||
|
namespace: authelia
|
||||||
20
apps/authelia/base/object-store.yaml
Normal file
20
apps/authelia/base/object-store.yaml
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
apiVersion: barmancloud.cnpg.io/v1
|
||||||
|
kind: ObjectStore
|
||||||
|
metadata:
|
||||||
|
name: garage-store
|
||||||
|
namespace: authelia
|
||||||
|
spec:
|
||||||
|
configuration:
|
||||||
|
destinationPath: s3://cnpg-backup/authelia
|
||||||
|
s3Credentials:
|
||||||
|
accessKeyId:
|
||||||
|
name: s3-garage
|
||||||
|
key: ACCESS_KEY_ID
|
||||||
|
secretAccessKey:
|
||||||
|
name: s3-garage
|
||||||
|
key: ACCESS_SECRET_KEY
|
||||||
|
region:
|
||||||
|
name: s3-garage
|
||||||
|
key: REGION
|
||||||
|
wal:
|
||||||
|
compression: gzip
|
||||||
9
apps/authelia/base/secret-s3-garage.yaml
Normal file
9
apps/authelia/base/secret-s3-garage.yaml
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
apiVersion: v1
|
||||||
|
kind: Secret
|
||||||
|
metadata:
|
||||||
|
name: s3-garage
|
||||||
|
namespace: authelia
|
||||||
|
annotations:
|
||||||
|
reflector.v1.k8s.emberstack.com/reflects: "cnpg-system/s3-garage"
|
||||||
|
type: Opaque
|
||||||
|
data: {}
|
||||||
6
apps/authelia/base/service-user.yaml
Normal file
6
apps/authelia/base/service-user.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
apiVersion: lldap.huizinga.dev/v1
|
||||||
|
kind: ServiceUser
|
||||||
|
metadata:
|
||||||
|
name: authelia
|
||||||
|
namespace: authelia
|
||||||
|
spec: {}
|
||||||
61
apps/authelia/base/values.yaml
Normal file
61
apps/authelia/base/values.yaml
Normal file
@@ -0,0 +1,61 @@
|
|||||||
|
pod:
|
||||||
|
kind: Deployment
|
||||||
|
replicas: 2
|
||||||
|
ingress:
|
||||||
|
enabled: true
|
||||||
|
gatewayAPI:
|
||||||
|
enabled: true
|
||||||
|
parentRefs:
|
||||||
|
- name: gateway
|
||||||
|
namespace: default
|
||||||
|
|
||||||
|
secret:
|
||||||
|
additionalSecrets:
|
||||||
|
db-app:
|
||||||
|
key: db-app
|
||||||
|
authelia-lldap-credentials:
|
||||||
|
key: authelia-lldap-credentials
|
||||||
|
|
||||||
|
configMap:
|
||||||
|
authentication_backend:
|
||||||
|
ldap:
|
||||||
|
enabled: true
|
||||||
|
implementation: lldap
|
||||||
|
address: ldap://lldap.lldap.svc.cluster.local:3890
|
||||||
|
base_dn: dc=huizinga,dc=dev
|
||||||
|
additional_users_dn: ou=people
|
||||||
|
users_filter: "(&(|({username_attribute}={input})({mail_attribute}={input}))(objectClass=person))"
|
||||||
|
additional_groups_dn: ou=groups
|
||||||
|
groups_filter: "(member={dn})"
|
||||||
|
attributes:
|
||||||
|
display_name: displayName
|
||||||
|
username: uid
|
||||||
|
group_name: cn
|
||||||
|
mail: mail
|
||||||
|
user: uid=authelia.authelia,ou=people,dc=huizinga,dc=dev
|
||||||
|
password:
|
||||||
|
secret_name: authelia-lldap-credentials
|
||||||
|
path: password
|
||||||
|
|
||||||
|
session:
|
||||||
|
redis:
|
||||||
|
enabled: true
|
||||||
|
host: dragonfly.authelia
|
||||||
|
|
||||||
|
storage:
|
||||||
|
postgres:
|
||||||
|
enabled: true
|
||||||
|
address: tcp://db-rw.authelia:5432
|
||||||
|
database: app
|
||||||
|
username: app
|
||||||
|
password:
|
||||||
|
secret_name: db-app
|
||||||
|
path: password
|
||||||
|
|
||||||
|
notifier:
|
||||||
|
filesystem:
|
||||||
|
enabled: true
|
||||||
|
|
||||||
|
# access_control:
|
||||||
|
# secret:
|
||||||
|
# existingSecret: authelia-acl
|
||||||
6
apps/authelia/production/cluster.yaml
Normal file
6
apps/authelia/production/cluster.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
apiVersion: postgresql.cnpg.io/v1
|
||||||
|
kind: Cluster
|
||||||
|
metadata:
|
||||||
|
name: db
|
||||||
|
spec:
|
||||||
|
instances: 2
|
||||||
6
apps/authelia/production/dragonfly.yaml
Normal file
6
apps/authelia/production/dragonfly.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
apiVersion: dragonflydb.io/v1alpha1
|
||||||
|
kind: Dragonfly
|
||||||
|
metadata:
|
||||||
|
name: dragonfly
|
||||||
|
spec:
|
||||||
|
replicas: 2
|
||||||
16
apps/authelia/production/kustomization.yaml
Normal file
16
apps/authelia/production/kustomization.yaml
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
|
kind: Kustomization
|
||||||
|
resources:
|
||||||
|
- ../base
|
||||||
|
- dragonfly.yaml
|
||||||
|
|
||||||
|
patches:
|
||||||
|
- path: cluster.yaml
|
||||||
|
target:
|
||||||
|
kind: Cluster
|
||||||
|
|
||||||
|
configMapGenerator:
|
||||||
|
- name: values-overlay
|
||||||
|
namespace: authelia
|
||||||
|
files:
|
||||||
|
- values.yaml
|
||||||
8
apps/authelia/production/values.yaml
Normal file
8
apps/authelia/production/values.yaml
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
pod:
|
||||||
|
replicas: 2
|
||||||
|
|
||||||
|
configMap:
|
||||||
|
session:
|
||||||
|
cookies:
|
||||||
|
- subdomain: auth
|
||||||
|
domain: huizinga.dev
|
||||||
6
apps/authelia/staging/cluster.yaml
Normal file
6
apps/authelia/staging/cluster.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
apiVersion: postgresql.cnpg.io/v1
|
||||||
|
kind: Cluster
|
||||||
|
metadata:
|
||||||
|
name: db
|
||||||
|
spec:
|
||||||
|
instances: 1
|
||||||
6
apps/authelia/staging/dragonfly.yaml
Normal file
6
apps/authelia/staging/dragonfly.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
apiVersion: dragonflydb.io/v1alpha1
|
||||||
|
kind: Dragonfly
|
||||||
|
metadata:
|
||||||
|
name: dragonfly
|
||||||
|
spec:
|
||||||
|
replicas: 1
|
||||||
19
apps/authelia/staging/kustomization.yaml
Normal file
19
apps/authelia/staging/kustomization.yaml
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
|
kind: Kustomization
|
||||||
|
resources:
|
||||||
|
- ../base
|
||||||
|
- dragonfly.yaml
|
||||||
|
|
||||||
|
patches:
|
||||||
|
- path: cluster.yaml
|
||||||
|
target:
|
||||||
|
kind: Cluster
|
||||||
|
- path: object-store.yaml
|
||||||
|
target:
|
||||||
|
kind: ObjectStore
|
||||||
|
|
||||||
|
configMapGenerator:
|
||||||
|
- name: values-overlay
|
||||||
|
namespace: authelia
|
||||||
|
files:
|
||||||
|
- values.yaml
|
||||||
8
apps/authelia/staging/object-store.yaml
Normal file
8
apps/authelia/staging/object-store.yaml
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
apiVersion: barmancloud.cnpg.io/v1
|
||||||
|
kind: ObjectStore
|
||||||
|
metadata:
|
||||||
|
name: garage-store
|
||||||
|
namespace: lldap
|
||||||
|
spec:
|
||||||
|
configuration:
|
||||||
|
endpointURL: http://192.168.1.1:3900
|
||||||
11
apps/authelia/staging/values.yaml
Normal file
11
apps/authelia/staging/values.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
pod:
|
||||||
|
replicas: 1
|
||||||
|
|
||||||
|
configMap:
|
||||||
|
log:
|
||||||
|
level: debug
|
||||||
|
|
||||||
|
session:
|
||||||
|
cookies:
|
||||||
|
- subdomain: auth
|
||||||
|
domain: staging.huizinga.dev
|
||||||
@@ -11,6 +11,7 @@ resources:
|
|||||||
- ../../controllers/cnpg/cnpg.yaml
|
- ../../controllers/cnpg/cnpg.yaml
|
||||||
- ../../controllers/reflector/reflector.yaml
|
- ../../controllers/reflector/reflector.yaml
|
||||||
- ../../controllers/lldap-controller/lldap-controller.yaml
|
- ../../controllers/lldap-controller/lldap-controller.yaml
|
||||||
|
- ../../controllers/dragonfly-operator/dragonfly-operator.yaml
|
||||||
|
|
||||||
- ../../configs/artifacts.yaml
|
- ../../configs/artifacts.yaml
|
||||||
- ../../configs/cilium-config/cilium-config.yaml
|
- ../../configs/cilium-config/cilium-config.yaml
|
||||||
@@ -21,3 +22,4 @@ resources:
|
|||||||
- ../../apps/artifacts.yaml
|
- ../../apps/artifacts.yaml
|
||||||
- ../../apps/spegel/spegel.yaml
|
- ../../apps/spegel/spegel.yaml
|
||||||
- ../../apps/lldap/lldap.yaml
|
- ../../apps/lldap/lldap.yaml
|
||||||
|
- ../../apps/authelia/authelia.yaml
|
||||||
|
|||||||
@@ -44,3 +44,8 @@ spec:
|
|||||||
copy:
|
copy:
|
||||||
- from: "@foundation/controllers/reflector/**"
|
- from: "@foundation/controllers/reflector/**"
|
||||||
to: "@artifact/"
|
to: "@artifact/"
|
||||||
|
- name: dragonfly-operator
|
||||||
|
originRevision: "@foundation"
|
||||||
|
copy:
|
||||||
|
- from: "@foundation/controllers/dragonfly-operator/**"
|
||||||
|
to: "@artifact/"
|
||||||
|
|||||||
@@ -29,3 +29,5 @@ gatewayAPI:
|
|||||||
enabled: true
|
enabled: true
|
||||||
enableAlpn: true
|
enableAlpn: true
|
||||||
enableAppProtocol: true
|
enableAppProtocol: true
|
||||||
|
loadBalancer:
|
||||||
|
mode: dsr
|
||||||
|
|||||||
15
controllers/dragonfly-operator/dragonfly-operator.yaml
Normal file
15
controllers/dragonfly-operator/dragonfly-operator.yaml
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
apiVersion: kustomize.toolkit.fluxcd.io/v1
|
||||||
|
kind: Kustomization
|
||||||
|
metadata:
|
||||||
|
name: dragonfly-operator
|
||||||
|
namespace: flux-system
|
||||||
|
spec:
|
||||||
|
interval: 1h
|
||||||
|
retryInterval: 2m
|
||||||
|
timeout: 5m
|
||||||
|
sourceRef:
|
||||||
|
kind: ExternalArtifact
|
||||||
|
name: dragonfly-operator
|
||||||
|
path: .
|
||||||
|
prune: true
|
||||||
|
wait: true
|
||||||
4
controllers/dragonfly-operator/kustomization.yaml
Normal file
4
controllers/dragonfly-operator/kustomization.yaml
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
|
kind: Kustomization
|
||||||
|
resources:
|
||||||
|
- https://raw.githubusercontent.com/dragonflydb/dragonfly-operator/v1.3.1/manifests/dragonfly-operator.yaml
|
||||||
Reference in New Issue
Block a user