mirror of
https://github.com/Thumbscrew/k8s-charts.git
synced 2025-04-04 14:23:38 +00:00
update README
This commit is contained in:
parent
767943c261
commit
9c35a99b9d
@ -1,6 +1,6 @@
|
||||
# freshrss
|
||||
|
||||
  
|
||||
  
|
||||
|
||||
A Helm chart for FreshRSS
|
||||
|
||||
@ -30,6 +30,19 @@ A Helm chart for FreshRSS
|
||||
| freshrss.cron.cronMin | string | `"13,43"` | Minute(s) past the hour to run cron |
|
||||
| freshrss.cron.enabled | bool | `false` | Enable Cron to periodically refresh feeds |
|
||||
| freshrss.freshEnv | string | `"production"` | Enables additional development information if set to `development` (increases the level of logging and ensures that errors are displayed) |
|
||||
| freshrss.oidc | object | `{"clientCryptoKey":"","clientId":"","clientSecret":"","enabled":false,"existingClientSecret":{"clientCryptoKeyKey":"clientCryptoKey","clientIdKey":"clientId","clientSecretKey":"clientSecret","name":""},"providerMetadataUrl":"","remoteUserClaim":"","scopes":[],"session":{"inactivityTimeout":300,"maxDuration":-1,"type":""},"xForwardedHeaders":[]}` | See Configuration Environment Variables at https://freshrss.github.io/FreshRSS/en/admins/16_OpenID-Connect.html |
|
||||
| freshrss.oidc.clientCryptoKey | string | `""` | Sets OIDC_CLIENT_CRYPTO_KEY |
|
||||
| freshrss.oidc.clientId | string | `""` | Sets OIDC_CLIENT_ID |
|
||||
| freshrss.oidc.clientSecret | string | `""` | Sets OIDC_CLIENT_SECRET |
|
||||
| freshrss.oidc.enabled | bool | `false` | Sets OIDC_ENABLED to true |
|
||||
| freshrss.oidc.existingClientSecret | object | `{"clientCryptoKeyKey":"clientCryptoKey","clientIdKey":"clientId","clientSecretKey":"clientSecret","name":""}` | A Kubernetes secret that contains the clientId, clientSecret and clientCryptoKey |
|
||||
| freshrss.oidc.providerMetadataUrl | string | `""` | Sets OIDC_PROVIDER_METADATA_URL |
|
||||
| freshrss.oidc.remoteUserClaim | string | `""` | Sets OIDC_REMOTE_USER_CLAIM |
|
||||
| freshrss.oidc.scopes | list | `[]` | Sets OIDC_SCOPES (list is concatenated) |
|
||||
| freshrss.oidc.session.inactivityTimeout | int | `300` | Sets OIDC_SESSION_INACTIVITY_TIMEOUT |
|
||||
| freshrss.oidc.session.maxDuration | int | `-1` | Sets OIDC_SESSION_MAX_DURATION |
|
||||
| freshrss.oidc.session.type | string | `""` | Sets OIDC_SESSION_TYPE |
|
||||
| freshrss.oidc.xForwardedHeaders | list | `[]` | Sets OIDC_X_FORWARDED_HEADERS (list is concatenated) |
|
||||
| freshrss.timezone | string | `"UTC"` | PHP Timezone - see https://www.php.net/timezones |
|
||||
| fullnameOverride | string | `""` | |
|
||||
| image.pullPolicy | string | `"IfNotPresent"` | |
|
||||
|
@ -78,28 +78,41 @@ freshrss:
|
||||
enabled: false
|
||||
# -- Minute(s) past the hour to run cron
|
||||
cronMin: "13,43"
|
||||
# -- See Configuration Environment Variables at https://freshrss.github.io/FreshRSS/en/admins/16_OpenID-Connect.html
|
||||
oidc:
|
||||
# -- Sets OIDC_ENABLED to true
|
||||
enabled: false
|
||||
# -- Sets OIDC_PROVIDER_METADATA_URL
|
||||
providerMetadataUrl: ""
|
||||
# -- Sets OIDC_CLIENT_ID
|
||||
clientId: ""
|
||||
# -- Sets OIDC_CLIENT_SECRET
|
||||
clientSecret: ""
|
||||
# -- Sets OIDC_CLIENT_CRYPTO_KEY
|
||||
clientCryptoKey: ""
|
||||
# -- A Kubernetes secret that contains the clientId, clientSecret and clientCryptoKey
|
||||
existingClientSecret:
|
||||
name: ""
|
||||
clientIdKey: clientId
|
||||
clientSecretKey: clientSecret
|
||||
clientCryptoKeyKey: clientCryptoKey
|
||||
# -- Sets OIDC_REMOTE_USER_CLAIM
|
||||
remoteUserClaim: ""
|
||||
# -- Sets OIDC_SCOPES (list is concatenated)
|
||||
scopes: []
|
||||
# - openid
|
||||
# -- Sets OIDC_X_FORWARDED_HEADERS (list is concatenated)
|
||||
xForwardedHeaders: []
|
||||
# - Forwarded
|
||||
# - X-Forwarded-Host
|
||||
# - X-Forwarded-Port
|
||||
# - X-Forwarded-Proto
|
||||
session:
|
||||
# -- Sets OIDC_SESSION_INACTIVITY_TIMEOUT
|
||||
inactivityTimeout: 300
|
||||
# -- Sets OIDC_SESSION_MAX_DURATION
|
||||
maxDuration: -1
|
||||
# -- Sets OIDC_SESSION_TYPE
|
||||
type: ""
|
||||
|
||||
persistence:
|
||||
|
Loading…
Reference in New Issue
Block a user