This repository has been archived on 2024-02-11. You can view files and clone it, but cannot push or open issues or pull requests.
valinor/archive/security/authentik/redis/helmrelease.yaml

62 lines
1.5 KiB
YAML
Raw Permalink Normal View History

2023-10-06 15:40:53 -05:00
---
# yaml-language-server: $schema=https://raw.githubusercontent.com/fluxcd-community/flux2-schemas/main/helmrelease-helm-v2beta1.json
apiVersion: helm.toolkit.fluxcd.io/v2beta1
kind: HelmRelease
metadata:
name: authentik-redis
namespace: security
spec:
interval: 30m
chart:
spec:
chart: app-template
version: 2.0.3
2023-10-06 15:40:53 -05:00
interval: 30m
sourceRef:
kind: HelmRepository
name: bjw-s
namespace: flux-system
values:
controllers:
main:
annotations:
secret.reloader.stakater.com/reload: authentik-redis-secret
pod:
automountServiceAccountToken: false
containers:
main:
image:
repository: public.ecr.aws/docker/library/redis
tag: 7.2.2
2023-10-06 15:40:53 -05:00
command:
- sh
args:
- -c
- >-
redis-server --requirepass $REDIS_PASSWORD
env:
REDIS_PORT: &port 6379
REDIS_PASSWORD:
valueFrom:
secretKeyRef:
name: authentik-redis-secret
key: AUTHENTIK_REDIS_PASSWORD
resources:
requests:
cpu: 5m
memory: 128M
limits:
memory: 256M
service:
main:
ports:
http:
enabled: false
redis:
enabled: true
port: *port