diff --git a/k8s/tt-rss/tt-rss-pvc.yml b/k8s/tt-rss/tt-rss-pvc.yml deleted file mode 100644 index 91ff118..0000000 --- a/k8s/tt-rss/tt-rss-pvc.yml +++ /dev/null @@ -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 \ No newline at end of file diff --git a/k8s/tt-rss/tt-rss.helm.secret.yml b/k8s/tt-rss/tt-rss.helm.secret.yml new file mode 100644 index 0000000..c6c3fcd --- /dev/null +++ b/k8s/tt-rss/tt-rss.helm.secret.yml @@ -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 + \ No newline at end of file diff --git a/k8s/tt-rss/tt-rss.secret.yaml b/k8s/tt-rss/tt-rss.secret.yaml index 01d924c..040e154 100644 Binary files a/k8s/tt-rss/tt-rss.secret.yaml and b/k8s/tt-rss/tt-rss.secret.yaml differ