mirror of
https://github.com/Thumbscrew/k8s-charts.git
synced 2025-07-01 02:25:23 +00:00
Compare commits
8 Commits
unifi-cont
...
pgadmin-1.
Author | SHA1 | Date | |
---|---|---|---|
df63f72724 | |||
73dff6e67e | |||
c11351b80e | |||
2fdc84e9b1 | |||
d971b9c838 | |||
0db9a85829 | |||
b05307c782 | |||
364b23444e |
@ -23,7 +23,7 @@ type: application
|
||||
# This is the chart version. This version number should be incremented each time you make changes
|
||||
# to the chart and its templates, including the app version.
|
||||
# Versions are expected to follow Semantic Versioning (https://semver.org/)
|
||||
version: 1.0.0
|
||||
version: 1.1.0
|
||||
|
||||
# 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
|
||||
|
@ -1,6 +1,6 @@
|
||||
# freshrss
|
||||
|
||||
  
|
||||
  
|
||||
|
||||
A Helm chart for FreshRSS
|
||||
|
||||
@ -17,11 +17,11 @@ A Helm chart for FreshRSS
|
||||
| affinity | object | `{}` | |
|
||||
| freshrss.autoInstall.apiEnabled | bool | `false` | Enable FreshRSS API |
|
||||
| freshrss.autoInstall.baseUrl | string | `"freshrss.local"` | URL for FreshRSS instance |
|
||||
| freshrss.autoInstall.dbBase | string | `"freshrss"` | Database name |
|
||||
| freshrss.autoInstall.dbHost | string | `""` | Database hostname |
|
||||
| freshrss.autoInstall.dbPassword | string | `"freshrss"` | Database password |
|
||||
| freshrss.autoInstall.dbType | string | `"sqlite"` | Database type - `pgsql`, `mysql` or `sqlite` |
|
||||
| freshrss.autoInstall.dbUser | string | `"freshrss"` | Database user |
|
||||
| freshrss.autoInstall.db.host | string | `""` | Database hostname |
|
||||
| freshrss.autoInstall.db.name | string | `"freshrss"` | Database name |
|
||||
| freshrss.autoInstall.db.password | string | `"freshrss"` | Database password |
|
||||
| freshrss.autoInstall.db.type | string | `"sqlite"` | Database type - `pgsql`, `mysql` or `sqlite` |
|
||||
| freshrss.autoInstall.db.user | string | `"freshrss"` | Database user |
|
||||
| freshrss.autoInstall.defaultUser.email | string | `"admin@example.com"` | Email for the default user |
|
||||
| freshrss.autoInstall.defaultUser.password | string | `"admin"` | Password for the default user |
|
||||
| freshrss.autoInstall.defaultUser.user | string | `"admin"` | Username for the default user |
|
||||
|
@ -54,6 +54,13 @@ spec:
|
||||
{{- end }}
|
||||
--language {{ .Values.freshrss.autoInstall.language }}
|
||||
--default_user {{ .Values.freshrss.autoInstall.defaultUser.user }}
|
||||
{{- if ne .Values.freshrss.autoInstall.db.type "sqlite" }}
|
||||
--db-base {{ .Values.freshrss.autoInstall.db.name }}
|
||||
--db-host {{ .Values.freshrss.autoInstall.db.host }}
|
||||
--db-password {{ .Values.freshrss.autoInstall.db.password }}
|
||||
--db-type {{ .Values.freshrss.autoInstall.db.type }}
|
||||
--db-user {{ .Values.freshrss.autoInstall.db.user }}
|
||||
{{- end }}
|
||||
- name: FRESHRSS_USER
|
||||
value: |-
|
||||
{{- with .Values.freshrss.autoInstall.defaultUser }}
|
||||
|
@ -55,16 +55,17 @@ freshrss:
|
||||
language: en
|
||||
# -- Enable FreshRSS API
|
||||
apiEnabled: false
|
||||
# -- Database type - `pgsql`, `mysql` or `sqlite`
|
||||
dbType: sqlite
|
||||
# -- Database name
|
||||
dbBase: freshrss
|
||||
# -- Database hostname
|
||||
dbHost: ""
|
||||
# -- Database password
|
||||
dbPassword: freshrss
|
||||
# -- Database user
|
||||
dbUser: freshrss
|
||||
db:
|
||||
# -- Database type - `pgsql`, `mysql` or `sqlite`
|
||||
type: sqlite
|
||||
# -- Database name
|
||||
name: freshrss
|
||||
# -- Database hostname
|
||||
host: ""
|
||||
# -- Database password
|
||||
password: freshrss
|
||||
# -- Database user
|
||||
user: freshrss
|
||||
defaultUser:
|
||||
# -- Username for the default user
|
||||
user: admin
|
||||
|
@ -24,10 +24,10 @@ type: application
|
||||
# This is the chart version. This version number should be incremented each time you make changes
|
||||
# to the chart and its templates, including the app version.
|
||||
# Versions are expected to follow Semantic Versioning (https://semver.org/)
|
||||
version: 0.1.0
|
||||
version: 1.4.0
|
||||
|
||||
# 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: "6.21"
|
||||
appVersion: "7.8"
|
||||
|
@ -15,10 +15,10 @@ type: application
|
||||
# This is the chart version. This version number should be incremented each time you make changes
|
||||
# to the chart and its templates, including the app version.
|
||||
# Versions are expected to follow Semantic Versioning (https://semver.org/)
|
||||
version: 1.1.0
|
||||
version: 1.2.0
|
||||
|
||||
# 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: "7.4.156"
|
||||
appVersion: "7.5.174"
|
||||
|
Reference in New Issue
Block a user