Skip to content

Commit

Permalink
docs(Nextcloud): add ServerSpec
Browse files Browse the repository at this point in the history
  • Loading branch information
kosmoz authored and pmig committed Nov 20, 2023
1 parent 43cbcdf commit 72bf5ea
Showing 1 changed file with 20 additions and 10 deletions.
30 changes: 20 additions & 10 deletions docs/docs/03_crd-reference/nextcloud/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,16 @@ spec:
## Spec
| Name | Type | | |
|--------------------|--------------------------------------------------------------------------------------------------------|------------|-------------------------------------------------------------------------------|
| version | String | `"27.0.1"` | Check for [releases](https://github.com/nextcloud/server/releases) on GitHub. |
| host | String | (required) | |
| defaultPhoneRegion | String? | `null` | |
| apps | [AppsSpec](#apps) | | |
| resources | [ResourceRequirements](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/) | | |
| smtp | [SmtpSpec](../common/smtp)? | `null` | |
| storage | [StorageSpec](#storage) | `null` | |
| database | [PostgresDatabaseSpec](./../common/postgres)? | | |
| Name | Type | | |
|--------------------|---------------------------------------------|------------|-------------------------------------------------------------------------------|
| version | String | `"27.0.1"` | Check for [releases](https://github.com/nextcloud/server/releases) on GitHub. |
| host | String | (required) | |
| defaultPhoneRegion | String? | `null` | |
| apps | [AppsSpec](#apps) | | |
| server | [ServerSpec](#serverspec) | | |
| smtp | [SmtpSpec](../common/smtp)? | `null` | |
| storage | [StorageSpec](#storage) | `null` | |
| database | [PostgresDatabaseSpec](../common/postgres)? | | |

### AppsSpec {#apps}

Expand All @@ -45,6 +45,16 @@ spec:
| office | [OfficeSpec](./office) | `null` |
| oidc | [OidcSpec](./oidc) | `null` |

### ServerSpec

| Name | Type | |
|-----------------|--------------------------------------------------------------------------------------------------------|--------------------------|
| resources | [ResourceRequirements](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/) | |
| maxChildren | Int | `512` |
| startServers | Int | depends on `maxChildren` |
| minSpareServers | Int | depends on `maxChildren` |
| maxSpareServers | Int | depends on `maxChildren` |

### StorageSpec {#storage}

| Name | Type | |
Expand Down

0 comments on commit 72bf5ea

Please sign in to comment.