Compare commits
34 commits
renovate/g
...
main
Author | SHA1 | Date | |
---|---|---|---|
ec4deeec4c | |||
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 |
7 changed files with 28 additions and 22 deletions
|
@ -1,3 +1,4 @@
|
||||||
|
# all invalid values, pushed to git for testing with flux.
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
kind: ConfigMap
|
kind: ConfigMap
|
||||||
metadata:
|
metadata:
|
||||||
|
|
|
@ -74,26 +74,30 @@ spec:
|
||||||
protocol: TCP
|
protocol: TCP
|
||||||
type: ClusterIP
|
type: ClusterIP
|
||||||
---
|
---
|
||||||
apiVersion: traefik.io/v1alpha1
|
apiVersion: networking.k8s.io/v1
|
||||||
kind: IngressRoute
|
kind: Ingress
|
||||||
metadata:
|
metadata:
|
||||||
name: bazarr
|
name: bazarr
|
||||||
namespace: default
|
namespace: default
|
||||||
annotations:
|
annotations:
|
||||||
kubernetes.io/ingress.class: traefik-external
|
kubernetes.io/ingress.class: traefik-external
|
||||||
spec:
|
spec:
|
||||||
entryPoints:
|
rules:
|
||||||
- websecure
|
- host: "bazarr.mafyuh.com"
|
||||||
routes:
|
http:
|
||||||
- match: Host(`bazarr.${LOCAL_DOMAIN}`)
|
paths:
|
||||||
kind: Rule
|
- path: /
|
||||||
services:
|
pathType: Prefix
|
||||||
- name: headless-bazarr
|
backend:
|
||||||
port: 6767
|
service:
|
||||||
middlewares:
|
name: headless-bazarr
|
||||||
- name: default-headers
|
port:
|
||||||
|
number: 6767
|
||||||
tls:
|
tls:
|
||||||
secretName: local-mafyuh-com-production-tls
|
- hosts:
|
||||||
|
- "bazarr.local.mafyuh.com"
|
||||||
|
secretName: local-mafyuh-com-production-tls
|
||||||
|
|
||||||
---
|
---
|
||||||
apiVersion: traefik.io/v1alpha1
|
apiVersion: traefik.io/v1alpha1
|
||||||
kind: IngressRoute
|
kind: IngressRoute
|
||||||
|
|
|
@ -6,3 +6,4 @@ metadata:
|
||||||
data:
|
data:
|
||||||
LOCAL_DOMAIN: "local.mafyuh.com"
|
LOCAL_DOMAIN: "local.mafyuh.com"
|
||||||
PUBLIC_DOMAIN: "mafyuh.com"
|
PUBLIC_DOMAIN: "mafyuh.com"
|
||||||
|
NAS_IP: "10.0.0.10"
|
||||||
|
|
|
@ -17,7 +17,7 @@ spec:
|
||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: radarr
|
- name: radarr
|
||||||
image: ghcr.io/linuxserver/radarr@sha256:bf5aaf1577edbc3ba33db069676e7f8324eda33761ca59721942bc8ef56c015c
|
image: ghcr.io/linuxserver/radarr@sha256:c5b78b1f1e8556d781788194c4ee2b87ca7e3620b701bfce31499e60ee50eca3
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
env:
|
env:
|
||||||
- name: PUID
|
- name: PUID
|
||||||
|
@ -42,7 +42,7 @@ spec:
|
||||||
- name: nas
|
- name: nas
|
||||||
nfs:
|
nfs:
|
||||||
path: /mnt/thePool/thePoolShare
|
path: /mnt/thePool/thePoolShare
|
||||||
server: 10.0.0.10
|
server: nas.local.mafyuh.com
|
||||||
- name: radarr-config
|
- name: radarr-config
|
||||||
persistentVolumeClaim:
|
persistentVolumeClaim:
|
||||||
claimName: radarr-config
|
claimName: radarr-config
|
||||||
|
|
|
@ -1,7 +0,0 @@
|
||||||
{
|
|
||||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
||||||
"extends": ["config:recommended"],
|
|
||||||
"kubernetes": {
|
|
||||||
"fileMatch": ["\\.yaml$"]
|
|
||||||
}
|
|
||||||
}
|
|
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