33 lines
		
	
	
		
			742 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			742 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| apiVersion: kustomize.config.k8s.io/v1beta1
 | |
| kind: Kustomization
 | |
| 
 | |
| namespace: authelia
 | |
| 
 | |
| resources:
 | |
|   - namespace.yaml
 | |
|   # # As a user management tool, we use LDAP, more specifically, ligh ldap
 | |
|   - lldap-credentials.sealedsecret.yaml
 | |
|   - lldap.pvc.yaml
 | |
|   - lldap.deployment.yaml
 | |
|   - lldap.service.yaml
 | |
|   # Authelia itself is installed as a helm chart
 | |
|   - authelia-ldap.sealedsecret.yaml
 | |
|   - authelia-oidc.sealedsecret.yaml
 | |
|   - authelia-smtp.sealedsecret.yaml
 | |
|   - authelia-internal.sealedsecret.yaml
 | |
|   - ingress.yaml
 | |
| 
 | |
| 
 | |
| images:
 | |
|   - name: lldap
 | |
|     newName: nitnelave/lldap
 | |
|     newTag: latest
 | |
| 
 | |
| 
 | |
| helmCharts:
 | |
|   - name: authelia
 | |
|     releaseName: authelia
 | |
|     version: 0.10.10
 | |
|     repo: https://charts.authelia.com
 | |
|     valuesFile: authelia.values.yaml
 |