Add piped
This commit is contained in:
parent
ee3cca95df
commit
ec13ec0232
6 changed files with 266 additions and 0 deletions
|
@ -100,6 +100,11 @@ spec:
|
||||||
- linkwarden
|
- linkwarden
|
||||||
password:
|
password:
|
||||||
type: AlphaNumeric
|
type: AlphaNumeric
|
||||||
|
- name: piped
|
||||||
|
databases:
|
||||||
|
- piped
|
||||||
|
password:
|
||||||
|
type: AlphaNumeric
|
||||||
- name: prowlarr
|
- name: prowlarr
|
||||||
databases:
|
databases:
|
||||||
- prowlarr_logs
|
- prowlarr_logs
|
||||||
|
|
|
@ -16,6 +16,7 @@ resources:
|
||||||
- ./nicehash/ks.yaml
|
- ./nicehash/ks.yaml
|
||||||
- ./omegabrr/ks.yaml
|
- ./omegabrr/ks.yaml
|
||||||
- ./overseerr/ks.yaml
|
- ./overseerr/ks.yaml
|
||||||
|
- ./piped/ks.yaml
|
||||||
- ./plex/ks.yaml
|
- ./plex/ks.yaml
|
||||||
- ./prowlarr/ks.yaml
|
- ./prowlarr/ks.yaml
|
||||||
- ./radarr/ks.yaml
|
- ./radarr/ks.yaml
|
||||||
|
|
34
kubernetes/apps/default/piped/app/externalsecret.yaml
Normal file
34
kubernetes/apps/default/piped/app/externalsecret.yaml
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
---
|
||||||
|
# yaml-language-server: $schema=https://raw.githubusercontent.com/datreeio/CRDs-catalog/main/external-secrets.io/externalsecret_v1beta1.json
|
||||||
|
apiVersion: external-secrets.io/v1beta1
|
||||||
|
kind: ExternalSecret
|
||||||
|
metadata:
|
||||||
|
name: piped
|
||||||
|
spec:
|
||||||
|
refreshInterval: 1m
|
||||||
|
secretStoreRef:
|
||||||
|
name: crunchy-pgo-secrets
|
||||||
|
kind: ClusterSecretStore
|
||||||
|
target:
|
||||||
|
name: piped-secret
|
||||||
|
template:
|
||||||
|
type: Opaque
|
||||||
|
data:
|
||||||
|
config.properties: |
|
||||||
|
API_URL: https://piped-api.hsn.dev
|
||||||
|
COMPROMISED_PASSWORD_CHECK: true
|
||||||
|
DISABLE_REGISTRATION: true
|
||||||
|
FEED_RETENTION: 30
|
||||||
|
FRONTEND_URL: https://piped.hsn.dev
|
||||||
|
HTTP_WORKERS: 4
|
||||||
|
MATRIX_SERVER: https://element.infosec.exchange
|
||||||
|
PORT: 8080
|
||||||
|
PROXY_PART: https://piped-proxy.hsn.dev
|
||||||
|
SENTRY_DSN:
|
||||||
|
hibernate.connection.driver_class: org.postgresql.Driver
|
||||||
|
hibernate.connection.url: jdbc:postgresql://{{ index . "host" }}:5432/{{ index . "dbname" }}
|
||||||
|
hibernate.connection.username: {{ index . "user" }}
|
||||||
|
hibernate.connection.password: {{ index . "password" }}
|
||||||
|
dataFrom:
|
||||||
|
- extract:
|
||||||
|
key: postgres-pguser-piped
|
196
kubernetes/apps/default/piped/app/helmrelease.yaml
Normal file
196
kubernetes/apps/default/piped/app/helmrelease.yaml
Normal file
|
@ -0,0 +1,196 @@
|
||||||
|
---
|
||||||
|
# yaml-language-server: $schema=https://raw.githubusercontent.com/bjw-s/helm-charts/main/charts/other/app-template/schemas/helmrelease-helm-v2.schema.json
|
||||||
|
apiVersion: helm.toolkit.fluxcd.io/v2
|
||||||
|
kind: HelmRelease
|
||||||
|
metadata:
|
||||||
|
name: piped
|
||||||
|
spec:
|
||||||
|
chart:
|
||||||
|
spec:
|
||||||
|
chart: app-template
|
||||||
|
version: 3.4.0
|
||||||
|
interval: 30m
|
||||||
|
sourceRef:
|
||||||
|
kind: HelmRepository
|
||||||
|
name: bjw-s
|
||||||
|
namespace: flux-system
|
||||||
|
interval: 30m
|
||||||
|
values:
|
||||||
|
defaultPodOptions:
|
||||||
|
automountServiceAccountToken: false
|
||||||
|
|
||||||
|
controllers:
|
||||||
|
backend:
|
||||||
|
strategy: RollingUpdate
|
||||||
|
annotations:
|
||||||
|
secret.reloader.stakater.com/reload: piped-secret
|
||||||
|
|
||||||
|
pod:
|
||||||
|
securityContext:
|
||||||
|
runAsUser: 1000
|
||||||
|
runAsGroup: 1000
|
||||||
|
fsGroup: 1000
|
||||||
|
fsGroupChangePolicy: "OnRootMismatch"
|
||||||
|
|
||||||
|
containers:
|
||||||
|
app:
|
||||||
|
image:
|
||||||
|
repository: 1337kavin/piped
|
||||||
|
tag: latest@sha256:e9938cdda0745c4986d4add0f255777d3989849b851f290d94a4ab2b21c25384
|
||||||
|
probes:
|
||||||
|
liveness:
|
||||||
|
enabled: true
|
||||||
|
readiness:
|
||||||
|
enabled: true
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
cpu: 10m
|
||||||
|
memory: 500Mi
|
||||||
|
limits:
|
||||||
|
memory: 2000Mi
|
||||||
|
securityContext:
|
||||||
|
allowPrivilegeEscalation: false
|
||||||
|
capabilities:
|
||||||
|
drop:
|
||||||
|
- ALL
|
||||||
|
seccompProfile:
|
||||||
|
type: RuntimeDefault
|
||||||
|
|
||||||
|
frontend:
|
||||||
|
strategy: RollingUpdate
|
||||||
|
pod:
|
||||||
|
securityContext:
|
||||||
|
runAsUser: 101
|
||||||
|
runAsGroup: 101
|
||||||
|
fsGroup: 101
|
||||||
|
fsGroupChangePolicy: "OnRootMismatch"
|
||||||
|
|
||||||
|
containers:
|
||||||
|
app:
|
||||||
|
image:
|
||||||
|
repository: ghcr.io/bjw-s-labs/piped-frontend
|
||||||
|
tag: latest@sha256:90356f6cc6dc4eb70a1f248f2509898fb1a11d1b5094d6237afe993e4f018273
|
||||||
|
env:
|
||||||
|
HTTP_PORT: 8080
|
||||||
|
HTTP_WORKERS: 4
|
||||||
|
BACKEND_HOSTNAME: piped-api.hsn.dev
|
||||||
|
probes:
|
||||||
|
liveness:
|
||||||
|
enabled: true
|
||||||
|
readiness:
|
||||||
|
enabled: true
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
cpu: 10m
|
||||||
|
memory: 32Mi
|
||||||
|
limits:
|
||||||
|
memory: 256Mi
|
||||||
|
securityContext:
|
||||||
|
allowPrivilegeEscalation: false
|
||||||
|
|
||||||
|
ytproxy:
|
||||||
|
strategy: RollingUpdate
|
||||||
|
pod:
|
||||||
|
securityContext:
|
||||||
|
runAsUser: 1000
|
||||||
|
runAsGroup: 1000
|
||||||
|
fsGroup: 1000
|
||||||
|
fsGroupChangePolicy: "OnRootMismatch"
|
||||||
|
|
||||||
|
containers:
|
||||||
|
app:
|
||||||
|
image:
|
||||||
|
repository: 1337kavin/piped-proxy
|
||||||
|
tag: latest@sha256:9a0547e412cbb87e0dc8c94a44ea81811541c9d1535b57a9a144901662df94b7
|
||||||
|
command:
|
||||||
|
- /app/piped-proxy
|
||||||
|
probes:
|
||||||
|
liveness:
|
||||||
|
enabled: true
|
||||||
|
readiness:
|
||||||
|
enabled: true
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
cpu: 10m
|
||||||
|
memory: 500Mi
|
||||||
|
limits:
|
||||||
|
memory: 2000Mi
|
||||||
|
securityContext:
|
||||||
|
allowPrivilegeEscalation: false
|
||||||
|
capabilities:
|
||||||
|
drop:
|
||||||
|
- ALL
|
||||||
|
seccompProfile:
|
||||||
|
type: RuntimeDefault
|
||||||
|
|
||||||
|
service:
|
||||||
|
backend:
|
||||||
|
controller: backend
|
||||||
|
ports:
|
||||||
|
http:
|
||||||
|
port: 8080
|
||||||
|
frontend:
|
||||||
|
controller: frontend
|
||||||
|
ports:
|
||||||
|
http:
|
||||||
|
port: 8080
|
||||||
|
ytproxy:
|
||||||
|
controller: ytproxy
|
||||||
|
ports:
|
||||||
|
http:
|
||||||
|
port: 8080
|
||||||
|
|
||||||
|
ingress:
|
||||||
|
backend:
|
||||||
|
className: "external-nginx"
|
||||||
|
annotations:
|
||||||
|
external-dns.alpha.kubernetes.io/target: external.hsn.dev
|
||||||
|
external-dns.alpha.kubernetes.io/cloudflare-proxied: "true"
|
||||||
|
nginx.ingress.kubernetes.io/enable-cors: "true"
|
||||||
|
nginx.ingress.kubernetes.io/cors-allow-origin: "https://piped.hsn.dev, https://piped-api.hsn.dev, https://piped-proxy.hsn.dev"
|
||||||
|
hosts:
|
||||||
|
- host: piped-api.hsn.dev
|
||||||
|
paths:
|
||||||
|
- path: /
|
||||||
|
service:
|
||||||
|
identifier: backend
|
||||||
|
port: http
|
||||||
|
frontend:
|
||||||
|
className: "external-nginx"
|
||||||
|
annotations:
|
||||||
|
external-dns.alpha.kubernetes.io/target: external.hsn.dev
|
||||||
|
external-dns.alpha.kubernetes.io/cloudflare-proxied: "true"
|
||||||
|
nginx.ingress.kubernetes.io/enable-cors: "true"
|
||||||
|
nginx.ingress.kubernetes.io/cors-allow-origin: "https://piped.hsn.dev, https://piped-api.hsn.dev, https://piped-proxy.hsn.dev"
|
||||||
|
hosts:
|
||||||
|
- host: piped.hsn.dev
|
||||||
|
paths:
|
||||||
|
- path: /
|
||||||
|
service:
|
||||||
|
identifier: frontend
|
||||||
|
port: http
|
||||||
|
ytproxy:
|
||||||
|
className: "external-nginx"
|
||||||
|
annotations:
|
||||||
|
external-dns.alpha.kubernetes.io/target: external.hsn.dev
|
||||||
|
external-dns.alpha.kubernetes.io/cloudflare-proxied: "true"
|
||||||
|
nginx.ingress.kubernetes.io/enable-cors: "true"
|
||||||
|
nginx.ingress.kubernetes.io/cors-allow-origin: "https://piped.hsn.dev, https://piped-api.hsn.dev, https://piped-proxy.hsn.dev"
|
||||||
|
hosts:
|
||||||
|
- host: piped-proxy.hsn.dev
|
||||||
|
paths:
|
||||||
|
- path: /
|
||||||
|
service:
|
||||||
|
identifier: ytproxy
|
||||||
|
port: http
|
||||||
|
|
||||||
|
persistence:
|
||||||
|
config:
|
||||||
|
type: secret
|
||||||
|
name: piped-secret
|
||||||
|
advancedMounts:
|
||||||
|
backend:
|
||||||
|
app:
|
||||||
|
- path: /app/config.properties
|
||||||
|
subPath: config.properties
|
||||||
|
readOnly: true
|
7
kubernetes/apps/default/piped/app/kustomization.yaml
Normal file
7
kubernetes/apps/default/piped/app/kustomization.yaml
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
---
|
||||||
|
# yaml-language-server: $schema=https://json.schemastore.org/kustomization
|
||||||
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
|
kind: Kustomization
|
||||||
|
resources:
|
||||||
|
- ./externalsecret.yaml
|
||||||
|
- ./helmrelease.yaml
|
23
kubernetes/apps/default/piped/ks.yaml
Normal file
23
kubernetes/apps/default/piped/ks.yaml
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
---
|
||||||
|
# yaml-language-server: $schema=https://raw.githubusercontent.com/fluxcd-community/flux2-schemas/main/kustomization-kustomize-v1.json
|
||||||
|
apiVersion: kustomize.toolkit.fluxcd.io/v1
|
||||||
|
kind: Kustomization
|
||||||
|
metadata:
|
||||||
|
name: &appname piped
|
||||||
|
namespace: flux-system
|
||||||
|
spec:
|
||||||
|
targetNamespace: media
|
||||||
|
commonMetadata:
|
||||||
|
labels:
|
||||||
|
app.kubernetes.io/name: *appname
|
||||||
|
interval: 10m
|
||||||
|
path: "./kubernetes/apps/media/piped/app"
|
||||||
|
prune: true
|
||||||
|
sourceRef:
|
||||||
|
kind: GitRepository
|
||||||
|
name: home-ops-kubernetes
|
||||||
|
wait: false
|
||||||
|
dependsOn:
|
||||||
|
- name: external-secrets-stores
|
||||||
|
- name: crunchy-postgres-operator-cluster
|
||||||
|
- name: crunchy-postgres-operator-secretstore
|
Loading…
Reference in a new issue