mirror of
https://gitlab.durp.info/durfy/homelab/gitops.git
synced 2026-05-07 07:50:29 -05:00
add freshrss
This commit is contained in:
parent
7f8883c2bc
commit
2afdded109
1 changed files with 61 additions and 0 deletions
61
dmz/internalproxy/templates/freshrss.yaml
Normal file
61
dmz/internalproxy/templates/freshrss.yaml
Normal file
|
|
@ -0,0 +1,61 @@
|
|||
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: freshrss
|
||||
spec:
|
||||
ports:
|
||||
- name: app
|
||||
port: 8085
|
||||
protocol: TCP
|
||||
targetPort: 8085
|
||||
clusterIP: None
|
||||
type: ClusterIP
|
||||
|
||||
---
|
||||
|
||||
apiVersion: v1
|
||||
kind: Endpoints
|
||||
metadata:
|
||||
name: freshrss
|
||||
subsets:
|
||||
- addresses:
|
||||
- ip: 192.168.21.200
|
||||
ports:
|
||||
- name: app
|
||||
port: 8085
|
||||
protocol: TCP
|
||||
|
||||
---
|
||||
|
||||
apiVersion: traefik.io/v1alpha1
|
||||
kind: IngressRoute
|
||||
metadata:
|
||||
name: freshrss-ingress
|
||||
spec:
|
||||
entryPoints:
|
||||
- websecure
|
||||
routes:
|
||||
- match: Host(`freshrss.durp.info`) && PathPrefix(`/`)
|
||||
kind: Rule
|
||||
services:
|
||||
- name: freshrss
|
||||
port: 8085
|
||||
scheme: https
|
||||
tls:
|
||||
secretName: freshrss-tls
|
||||
|
||||
---
|
||||
|
||||
apiVersion: cert-manager.io/v1
|
||||
kind: Certificate
|
||||
metadata:
|
||||
name: freshrss-tls
|
||||
spec:
|
||||
secretName: freshrss-tls
|
||||
issuerRef:
|
||||
name: vault-issuer
|
||||
kind: ClusterIssuer
|
||||
commonName: "freshrss.durp.info"
|
||||
dnsNames:
|
||||
- "freshrss.durp.info"
|
||||
Loading…
Add table
Add a link
Reference in a new issue