Respond to PR comments.
This commit is contained in:
parent
030cdba5d3
commit
98ae0014a8
|
@ -69,9 +69,6 @@ staff's homelabs).
|
||||||
```yaml
|
```yaml
|
||||||
ingress:
|
ingress:
|
||||||
enabled: true
|
enabled: true
|
||||||
annotations:
|
|
||||||
nginx.ingress.kubernetes.io/client-max-body-size: 150M
|
|
||||||
nginx.ingress.kubernetes.io/proxy-body-size: 50m
|
|
||||||
className: "nginx"
|
className: "nginx"
|
||||||
hosts:
|
hosts:
|
||||||
- host: budibase.local # set this to whatever DNS name you'd use
|
- host: budibase.local # set this to whatever DNS name you'd use
|
||||||
|
@ -130,7 +127,6 @@ $ helm install --create-namespace --namespace budibase budibase . -f values.yaml
|
||||||
| globals.internalApiKeyFallback | string | `""` | A fallback value for `internalApiKey`. If you're rotating your encryption key, you can set this to the old value for the duration of the rotation. |
|
| globals.internalApiKeyFallback | string | `""` | A fallback value for `internalApiKey`. If you're rotating your encryption key, you can set this to the old value for the duration of the rotation. |
|
||||||
| globals.jwtSecret | string | `""` | Secret used for signing JWTs. You don't need to set this if `createSecrets` is true. |
|
| globals.jwtSecret | string | `""` | Secret used for signing JWTs. You don't need to set this if `createSecrets` is true. |
|
||||||
| globals.jwtSecretFallback | string | `""` | A fallback value for `jwtSecret`. If you're rotating your JWT secret, you can set this to the old value for the duration of the rotation. |
|
| globals.jwtSecretFallback | string | `""` | A fallback value for `jwtSecret`. If you're rotating your JWT secret, you can set this to the old value for the duration of the rotation. |
|
||||||
| globals.multiTenancy | string | `"0"` | Whether to enable the multi-tenancy feature or not. "0" means an installation can only have one tenant. "1" allows multiple tenants. |
|
|
||||||
| globals.platformUrl | string | `""` | Set the `platformUrl` binding. You can also do this in Settings > Organisation if you are self-hosting. |
|
| globals.platformUrl | string | `""` | Set the `platformUrl` binding. You can also do this in Settings > Organisation if you are self-hosting. |
|
||||||
| globals.smtp.enabled | bool | `false` | Whether to enable SMTP or not. |
|
| globals.smtp.enabled | bool | `false` | Whether to enable SMTP or not. |
|
||||||
| globals.smtp.from | string | `""` | The email address to use in the "From:" field of emails sent by Budibase. |
|
| globals.smtp.from | string | `""` | The email address to use in the "From:" field of emails sent by Budibase. |
|
||||||
|
|
|
@ -71,11 +71,10 @@ globals:
|
||||||
# @ignore (should not normally need to be changed, we only set this to "0"
|
# @ignore (should not normally need to be changed, we only set this to "0"
|
||||||
# when deploying to our Cloud environment)
|
# when deploying to our Cloud environment)
|
||||||
selfHosted: "1"
|
selfHosted: "1"
|
||||||
# -- Whether to enable the multi-tenancy feature or not. "0" means an installation can only
|
# @ignore (doesn't work out of the box for self-hosted users, only meant for Budicloud)
|
||||||
# have one tenant. "1" allows multiple tenants.
|
|
||||||
multiTenancy: "0"
|
multiTenancy: "0"
|
||||||
# @ignore (only currently used to determine whether to fetch licenses offline or not, should
|
# @ignore (only currently used to determine whether to fetch licenses offline or not, should
|
||||||
# not normally need to be changed)
|
# not normally need to be changed, and only applies to Enterprise customers)
|
||||||
offlineMode: "0"
|
offlineMode: "0"
|
||||||
# @ignore (only needs to be set in our cloud environment)
|
# @ignore (only needs to be set in our cloud environment)
|
||||||
accountPortalUrl: ""
|
accountPortalUrl: ""
|
||||||
|
|
Loading…
Reference in New Issue