Adding latest tt-rss - still not working
This commit is contained in:
parent
e88e85e8db
commit
9a1a6b6bf4
|
|
@ -1,42 +0,0 @@
|
|||
# ---
|
||||
# apiVersion: v1
|
||||
# kind: PersistentVolumeClaim
|
||||
# metadata:
|
||||
# labels:
|
||||
# app: mariadb
|
||||
# stor: openebs
|
||||
# name: data-tt-rss-mariadb-openebs
|
||||
# namespace: tt-rss
|
||||
# spec:
|
||||
# accessModes:
|
||||
# - ReadWriteOnce
|
||||
# resources:
|
||||
# requests:
|
||||
# storage: 8Gi
|
||||
# storageClassName: openebs-hostpath
|
||||
# status:
|
||||
# accessModes:
|
||||
# - ReadWriteOnce
|
||||
# capacity:
|
||||
# storage: 8Gi
|
||||
|
||||
# ---
|
||||
# apiVersion: v1
|
||||
# kind: PersistentVolumeClaim
|
||||
# metadata:
|
||||
# labels:
|
||||
# app: mariadb-backup
|
||||
# name: data-tt-rss-mariadb-openebs
|
||||
# namespace: tt-rss
|
||||
# spec:
|
||||
# accessModes:
|
||||
# - ReadWriteOnce
|
||||
# resources:
|
||||
# requests:
|
||||
# storage: 8Gi
|
||||
# storageClassName: openebs-hostpath
|
||||
# status:
|
||||
# accessModes:
|
||||
# - ReadWriteOnce
|
||||
# capacity:
|
||||
# storage: 8Gi
|
||||
|
|
@ -0,0 +1,32 @@
|
|||
env:
|
||||
# -- External URL you use to connect to the RSS (the one you enter in your browser)
|
||||
TTRSS_SELF_URL_PATH: "tt-rss.moritzgraf.de"
|
||||
# -- Postgres database hostname
|
||||
# @default -- internal postgresql URL
|
||||
TTRSS_DB_HOST: "tt-rss-mariadb"
|
||||
# -- Postgres database port.
|
||||
TTRSS_DB_PORT: "3306"
|
||||
# -- Postgres database user name
|
||||
# @default -- postgresql.postgresqlUsername value
|
||||
TTRSS_DB_USER: "tt-rss"
|
||||
# -- Postgres database password
|
||||
# @default -- postgresql.postgresqlPassword value
|
||||
TTRSS_DB_PASS: "AhS5cai7oph3ahN4Aile"
|
||||
# -- Postgres database password
|
||||
# @default -- postgresql.postgresqlDatabase value
|
||||
TTRSS_DB_NAME: "tt-rss"
|
||||
|
||||
ingress:
|
||||
main:
|
||||
enabled: true
|
||||
annotations:
|
||||
kubernetes.io/ingress.class: "nginx"
|
||||
nginx.ingress.kubernetes.io/force-ssl-redirect: "true"
|
||||
cert-manager.io/cluster-issuer: "letsencrypt-prod"
|
||||
tls:
|
||||
- hosts:
|
||||
- "tt-rss.moritzgraf.de"
|
||||
secretName: tt-rss-moritzgraf-de
|
||||
postgresql:
|
||||
enabled: false
|
||||
|
||||
Binary file not shown.
Loading…
Reference in New Issue