Compare commits
No commits in common. "096534120c0f5e195c1336e90ddd01f6d8482aae" and "68b6c98ea68478c1d71718eb3d51b6fa75c13b95" have entirely different histories.
096534120c
...
68b6c98ea6
9 changed files with 15 additions and 53 deletions
|
@ -1,4 +1,3 @@
|
||||||
# all invalid values, pushed to git for testing with flux.
|
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
kind: ConfigMap
|
kind: ConfigMap
|
||||||
metadata:
|
metadata:
|
||||||
|
|
|
@ -74,30 +74,26 @@ spec:
|
||||||
protocol: TCP
|
protocol: TCP
|
||||||
type: ClusterIP
|
type: ClusterIP
|
||||||
---
|
---
|
||||||
apiVersion: networking.k8s.io/v1
|
apiVersion: traefik.io/v1alpha1
|
||||||
kind: Ingress
|
kind: IngressRoute
|
||||||
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:
|
||||||
rules:
|
entryPoints:
|
||||||
- host: "bazarr.mafyuh.com"
|
- websecure
|
||||||
http:
|
routes:
|
||||||
paths:
|
- match: Host(`bazarr.${LOCAL_DOMAIN}`)
|
||||||
- path: /
|
kind: Rule
|
||||||
pathType: Prefix
|
services:
|
||||||
backend:
|
- name: headless-bazarr
|
||||||
service:
|
port: 6767
|
||||||
name: headless-bazarr
|
middlewares:
|
||||||
port:
|
- name: default-headers
|
||||||
number: 6767
|
|
||||||
tls:
|
tls:
|
||||||
- hosts:
|
secretName: local-mafyuh-com-production-tls
|
||||||
- "bazarr.local.mafyuh.com"
|
|
||||||
secretName: local-mafyuh-com-production-tls
|
|
||||||
|
|
||||||
---
|
---
|
||||||
apiVersion: traefik.io/v1alpha1
|
apiVersion: traefik.io/v1alpha1
|
||||||
kind: IngressRoute
|
kind: IngressRoute
|
||||||
|
|
|
@ -6,4 +6,3 @@ 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"
|
|
||||||
|
|
|
@ -1,4 +0,0 @@
|
||||||
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
||||||
kind: Kustomization
|
|
||||||
resources:
|
|
||||||
- radarr.yaml
|
|
|
@ -42,7 +42,7 @@ spec:
|
||||||
- name: nas
|
- name: nas
|
||||||
nfs:
|
nfs:
|
||||||
path: /mnt/thePool/thePoolShare
|
path: /mnt/thePool/thePoolShare
|
||||||
server: ${NAS_IP}
|
server: 10.0.0.10
|
||||||
- name: radarr-config
|
- name: radarr-config
|
||||||
persistentVolumeClaim:
|
persistentVolumeClaim:
|
||||||
claimName: radarr-config
|
claimName: radarr-config
|
||||||
|
|
|
@ -17,7 +17,7 @@ spec:
|
||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: sonarr
|
- name: sonarr
|
||||||
image: ghcr.io/linuxserver/sonarr@sha256:a9f25c54b7eb8ecf11e506e90ee7eab9e9786143e08eeb76d5bfc3e82531eeab
|
image: ghcr.io/linuxserver/sonarr@sha256:8414846e440ca34c1cbed96daf7d5b3bcde20aab79761aaaaef496f24cec8d20
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
env:
|
env:
|
||||||
- name: PUID
|
- name: PUID
|
||||||
|
|
|
@ -1,18 +0,0 @@
|
||||||
apiVersion: kustomize.toolkit.fluxcd.io/v1
|
|
||||||
kind: Kustomization
|
|
||||||
metadata:
|
|
||||||
name: apps
|
|
||||||
namespace: flux-system
|
|
||||||
spec:
|
|
||||||
interval: 10m0s
|
|
||||||
path: ./cluster/apps/production
|
|
||||||
prune: true
|
|
||||||
sourceRef:
|
|
||||||
kind: GitRepository
|
|
||||||
name: kub-repo
|
|
||||||
postBuild:
|
|
||||||
substitute:
|
|
||||||
NAS_IP: 10.0.0.10
|
|
||||||
substituteFrom:
|
|
||||||
- kind: ConfigMap
|
|
||||||
name: global-vars
|
|
|
@ -1,10 +0,0 @@
|
||||||
apiVersion: source.toolkit.fluxcd.io/v1
|
|
||||||
kind: GitRepository
|
|
||||||
metadata:
|
|
||||||
name: kub-repo
|
|
||||||
namespace: flux-system
|
|
||||||
spec:
|
|
||||||
interval: 10m0s
|
|
||||||
url: https://git.mafyuh.dev/mafyuh/kub
|
|
||||||
ref:
|
|
||||||
branch: main
|
|
Loading…
Reference in a new issue