wip
This commit is contained in:
parent
780cb96921
commit
a6c093398c
26
charts/ttrss/.helmignore
Normal file
26
charts/ttrss/.helmignore
Normal file
@ -0,0 +1,26 @@
|
||||
# Patterns to ignore when building packages.
|
||||
# This supports shell glob matching, relative path matching, and
|
||||
# negation (prefixed with !). Only one pattern per line.
|
||||
.DS_Store
|
||||
# Common VCS dirs
|
||||
.git/
|
||||
.gitignore
|
||||
.bzr/
|
||||
.bzrignore
|
||||
.hg/
|
||||
.hgignore
|
||||
.svn/
|
||||
# Common backup files
|
||||
*.swp
|
||||
*.bak
|
||||
*.tmp
|
||||
*~
|
||||
# Various IDEs
|
||||
.project
|
||||
.idea/
|
||||
*.tmproj
|
||||
.vscode/
|
||||
# OWNERS file for Kubernetes
|
||||
OWNERS
|
||||
# helm-docs templates
|
||||
*.gotmpl
|
||||
27
charts/ttrss/Chart.yaml
Normal file
27
charts/ttrss/Chart.yaml
Normal file
@ -0,0 +1,27 @@
|
||||
apiVersion: v2
|
||||
|
||||
description: Helm chart for ttrss
|
||||
name: ttrss
|
||||
type: application
|
||||
version: 0.0.1
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
keywords:
|
||||
- ttrss
|
||||
home: https://github.com/framasoft/ttrss
|
||||
#sources:
|
||||
#- https://github.com/filebrowser/filebrowser
|
||||
maintainers:
|
||||
- name: Julien Cabillot
|
||||
email: dockerimages@cabillot.eu
|
||||
|
||||
# This is the version number of the application being deployed. This version number should be
|
||||
# incremented each time you make changes to the application. Versions are not expected to
|
||||
# follow Semantic Versioning. They should reflect the version the application is using.
|
||||
# It is recommended to use it with quotes.
|
||||
#appVersion: "1.16.0"
|
||||
appVersion: "latest"
|
||||
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: "https://scm.docker.cabillot.eu/perso/helm-library-common/raw/branch/master/"
|
||||
version: 4.2.0
|
||||
2
charts/ttrss/README.md
Normal file
2
charts/ttrss/README.md
Normal file
@ -0,0 +1,2 @@
|
||||
# ttrss-helm
|
||||
|
||||
1
charts/ttrss/templates/NOTES.txt
Normal file
1
charts/ttrss/templates/NOTES.txt
Normal file
@ -0,0 +1 @@
|
||||
{{- include "common.notes.defaultNotes" . -}}
|
||||
5
charts/ttrss/templates/common.yaml
Normal file
5
charts/ttrss/templates/common.yaml
Normal file
@ -0,0 +1,5 @@
|
||||
{{/* Make sure all variables are set properly */}}
|
||||
{{- include "common.values.setup" . }}
|
||||
|
||||
{{/* Render the templates */}}
|
||||
{{ include "common.all" . }}
|
||||
83
charts/ttrss/values.yaml
Normal file
83
charts/ttrss/values.yaml
Normal file
@ -0,0 +1,83 @@
|
||||
#
|
||||
# IMPORTANT NOTE
|
||||
#
|
||||
# This chart inherits from our common library chart. You can check the default values/options here:
|
||||
# https://scm.docker.cabillot.eu/perso/helm-library-common
|
||||
#
|
||||
|
||||
image:
|
||||
repository: x86dev/docker-ttrss
|
||||
tag: "latest"
|
||||
pullPolicy: Always
|
||||
|
||||
# TODO: + rssbridge
|
||||
|
||||
env:
|
||||
TZ: America/New_York
|
||||
TTRSS_DB_NAME: web_ttrss
|
||||
TTRSS_DB_USER: web_ttrss
|
||||
TTRSS_DB_PASS: TODO:
|
||||
TTRSS_DB_TYPE: mysql
|
||||
TTRSS_DB_PORT: 3306
|
||||
TTRSS_DB_PORT_3306_TCP_ADDR: TODO:
|
||||
TTRSS_DB_PORT_3306_TCP_PORT: 3306
|
||||
TTRSS_SELF_URL_PATH: https://rss.cabillot.eu/
|
||||
TTRSS_SELF_URL: https://rss.cabillot.eu/
|
||||
TTRSS_PROTO: https
|
||||
TTRSS_URL: rss.cabillot.eu
|
||||
DB_NAME: web_ttrss
|
||||
DB_USER: web_ttrss
|
||||
DB_PASS:
|
||||
DB_TYPE: mysql
|
||||
DB_PORT: 3306
|
||||
DB_PORT_3306_TCP_ADDR:
|
||||
DB_PORT_3306_TCP_PORT: 3306
|
||||
SELF_URL_PATH: https://rss.cabillot.eu/
|
||||
SELF_URL: https://rss.cabillot.eu/
|
||||
PROTO: https
|
||||
URL: rss.cabillot.eu
|
||||
|
||||
service:
|
||||
main:
|
||||
ports:
|
||||
http:
|
||||
port: 8080
|
||||
|
||||
ingress:
|
||||
main:
|
||||
enabled: false
|
||||
|
||||
automountServiceAccountToken: false
|
||||
|
||||
# Enabled mariadb
|
||||
# ... for more options see https://github.com/bitnami/charts/tree/master/bitnami/mariadb
|
||||
mariadb:
|
||||
enabled: false
|
||||
architecture: standalone
|
||||
auth:
|
||||
database: web_ttrss
|
||||
username: web_ttrss
|
||||
password: TODO:
|
||||
rootPassword: TODO:
|
||||
primary:
|
||||
persistence:
|
||||
enabled: false
|
||||
# storageClass: ""
|
||||
|
||||
# TODO:
|
||||
persistence:
|
||||
config:
|
||||
enabled: false
|
||||
cache:
|
||||
enabled: false
|
||||
mountPath: "/cache"
|
||||
media:
|
||||
enabled: false
|
||||
enabled: true
|
||||
type: custom
|
||||
volumeSpec:
|
||||
nfs:
|
||||
server: "odroidhc2.local"
|
||||
path: "/mnt/musique"
|
||||
readOnly: true
|
||||
mountPath: "/media"
|
||||
Loading…
x
Reference in New Issue
Block a user