Compare commits
38 commits
d38eea0edf
...
d03c601a5a
Author | SHA1 | Date | |
---|---|---|---|
d03c601a5a | |||
3401b9959b | |||
9f9d2291e1 | |||
6be6f216a3 | |||
0cf554d66f | |||
945937b59c | |||
bda9106af2 | |||
5b1ac8ab40 | |||
9df073eaea | |||
1a5b22ec9c | |||
5137706f14 | |||
4d96065d81 | |||
215a394bf2 | |||
2734e27745 | |||
8c543f74ce | |||
821158b12b | |||
d8bc1b0846 | |||
fdc5f9c013 | |||
d23065af9e | |||
dc93791c99 | |||
e813e5a3a9 | |||
d0a631d430 | |||
6598e55d95 | |||
3ea1d2feee | |||
594c5c618f | |||
c2fb8c2864 | |||
24a60c6c1f | |||
7a96b01ac1 | |||
2fce057054 | |||
87fa9d0efa | |||
a3bdedc3df | |||
da0ad97810 | |||
89b093b947 | |||
03b2c2b14f | |||
9335c045cd | |||
68b6c98ea6 | |||
6bf9892827 | |||
3321b8c336 |
9 changed files with 31 additions and 18 deletions
|
@ -5,7 +5,7 @@ metadata:
|
|||
name: authentik
|
||||
namespace: default
|
||||
spec:
|
||||
interval: 14m
|
||||
interval: 15m
|
||||
chart:
|
||||
spec:
|
||||
chart: authentik
|
||||
|
@ -14,7 +14,7 @@ spec:
|
|||
kind: HelmRepository
|
||||
name: authentik-chart
|
||||
namespace: flux-system
|
||||
interval: 14m
|
||||
interval: 15m
|
||||
install:
|
||||
remediation:
|
||||
retries: 5
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
# all invalid values, pushed to git for testing with flux.
|
||||
apiVersion: v1
|
||||
kind: ConfigMap
|
||||
metadata:
|
||||
|
|
|
@ -74,26 +74,30 @@ spec:
|
|||
protocol: TCP
|
||||
type: ClusterIP
|
||||
---
|
||||
apiVersion: traefik.io/v1alpha1
|
||||
kind: IngressRoute
|
||||
apiVersion: networking.k8s.io/v1
|
||||
kind: Ingress
|
||||
metadata:
|
||||
name: bazarr
|
||||
namespace: default
|
||||
annotations:
|
||||
kubernetes.io/ingress.class: traefik-external
|
||||
spec:
|
||||
entryPoints:
|
||||
- websecure
|
||||
routes:
|
||||
- match: Host(`bazarr.${LOCAL_DOMAIN}`)
|
||||
kind: Rule
|
||||
services:
|
||||
- name: headless-bazarr
|
||||
port: 6767
|
||||
middlewares:
|
||||
- name: default-headers
|
||||
rules:
|
||||
- host: "bazarr.mafyuh.com"
|
||||
http:
|
||||
paths:
|
||||
- path: /
|
||||
pathType: Prefix
|
||||
backend:
|
||||
service:
|
||||
name: headless-bazarr
|
||||
port:
|
||||
number: 6767
|
||||
tls:
|
||||
secretName: local-mafyuh-com-production-tls
|
||||
- hosts:
|
||||
- "bazarr.local.mafyuh.com"
|
||||
secretName: local-mafyuh-com-production-tls
|
||||
|
||||
---
|
||||
apiVersion: traefik.io/v1alpha1
|
||||
kind: IngressRoute
|
||||
|
|
|
@ -6,3 +6,4 @@ metadata:
|
|||
data:
|
||||
LOCAL_DOMAIN: "local.mafyuh.com"
|
||||
PUBLIC_DOMAIN: "mafyuh.com"
|
||||
NAS_IP: "10.0.0.10"
|
||||
|
|
|
@ -17,7 +17,7 @@ spec:
|
|||
spec:
|
||||
containers:
|
||||
- name: prowlarr
|
||||
image: ghcr.io/linuxserver/prowlarr@sha256:3e23c577e77a92dfdddcccb8988bccc89d142dfd3669c616c5b3ce1cdc500022
|
||||
image: ghcr.io/linuxserver/prowlarr@sha256:7c3e7840c726828643131583514b66f38e7af29021d5a7b05ed8ed5c8ec0b596
|
||||
imagePullPolicy: IfNotPresent
|
||||
env:
|
||||
- name: PUID
|
||||
|
|
|
@ -42,7 +42,7 @@ spec:
|
|||
- name: nas
|
||||
nfs:
|
||||
path: /mnt/thePool/thePoolShare
|
||||
server: 10.0.0.10
|
||||
server: nas.local.mafyuh.com
|
||||
- name: radarr-config
|
||||
persistentVolumeClaim:
|
||||
claimName: radarr-config
|
||||
|
|
|
@ -17,7 +17,7 @@ spec:
|
|||
spec:
|
||||
containers:
|
||||
- name: sonarr
|
||||
image: ghcr.io/linuxserver/sonarr@sha256:3f193d343c1225676c1ea0547c5022fd83c4459a493870179dff9e87c54dbbc9
|
||||
image: ghcr.io/linuxserver/sonarr@sha256:8414846e440ca34c1cbed96daf7d5b3bcde20aab79761aaaaef496f24cec8d20
|
||||
imagePullPolicy: IfNotPresent
|
||||
env:
|
||||
- name: PUID
|
||||
|
|
7
secrets/flux-secrets.yaml
Normal file
7
secrets/flux-secrets.yaml
Normal file
|
@ -0,0 +1,7 @@
|
|||
apiVersion: v1
|
||||
kind: ConfigMap
|
||||
metadata:
|
||||
name: apps
|
||||
namespace: flux-system
|
||||
data:
|
||||
path: /mnt/thePool/thePoolShare
|
Loading…
Reference in a new issue