diff --git a/src/pages/docs/schema/docker.mdx b/src/pages/docs/schema/docker.mdx index b113aea..ee85f54 100644 --- a/src/pages/docs/schema/docker.mdx +++ b/src/pages/docs/schema/docker.mdx @@ -167,13 +167,14 @@ services: ### Optional Fields -| Field | Type | Description | -| ------------ | ------ | ----------------------------------------------------------- | -| `command` | string | Override container entrypoint | -| `arguments` | string | Arguments passed to the command. Use `%%SPLIT%%` for spaces | -| `env` | object | Environment variables | -| `ports` | array | Exposed container ports | -| `deployment` | object | Deployment configuration (see below) | +| Field | Type | Description | +| ------------ | ------- | ----------------------------------------------------------- | +| `command` | string | Override container entrypoint | +| `arguments` | string | Arguments passed to the command. Use `%%SPLIT%%` for spaces | +| `env` | object | Environment variables | +| `ports` | array | Exposed container ports | +| `deployment` | object | Deployment configuration (see below) | +| `envLens` | boolean | Enable environment lens ingress banner | ## Deployment Options diff --git a/src/pages/docs/schema/github.mdx b/src/pages/docs/schema/github.mdx index f74eced..c9b1481 100644 --- a/src/pages/docs/schema/github.mdx +++ b/src/pages/docs/schema/github.mdx @@ -270,6 +270,23 @@ Persistent volume mounts for stateful data: | `accessModes` | No | `ReadWriteOnce` or `ReadWriteMany` | | `medium` | No | Storage medium | +## Fields Reference + +### Required Fields + +| Field | Type | Description | +| ------------ | ------ | ---------------------------------------- | +| `repository` | string | GitHub repository in `owner/repo` format | +| `branchName` | string | Branch to build from | +| `docker` | object | Docker build configuration (see above) | + +### Optional Fields + +| Field | Type | Description | +| ------------ | ------- | -------------------------------------- | +| `deployment` | object | Deployment configuration (see above) | +| `envLens` | boolean | Enable environment lens ingress banner | + ## Template Variables Reference other services in your configuration using template variables. See the [Template Variables](/docs/features/template-variables) guide for the complete list. diff --git a/src/pages/docs/schema/helm.mdx b/src/pages/docs/schema/helm.mdx index fa3e824..3b1e257 100644 --- a/src/pages/docs/schema/helm.mdx +++ b/src/pages/docs/schema/helm.mdx @@ -243,21 +243,22 @@ Configuration for the main application container: Configuration for an init container that runs before the main application. Uses the same fields as `docker.app`. -## Complete Fields Reference - -| Field | Type | Required | Description | -| ------------------ | ------ | ---------- | ------------------------- | -| `chart.name` | string | **Yes** | Chart name or path | -| `chart.repoUrl` | string | For public | Helm repository URL | -| `chart.version` | string | No | Chart version | -| `chart.values` | array | No | Inline Helm values | -| `chart.valueFiles` | array | No | Value file paths | -| `repository` | string | For builds | GitHub repository | -| `branchName` | string | For builds | Branch to build from | -| `docker` | object | No | Docker build config | -| `args` | string | No | Additional Helm arguments | -| `version` | string | No | Helm CLI version | -| `deploymentMethod` | string | No | `"native"` or `"ci"` | +## Fields Reference + +| Field | Type | Required | Description | +| ------------------ | ------- | ---------- | -------------------------------------- | +| `chart.name` | string | **Yes** | Chart name or path | +| `chart.repoUrl` | string | For public | Helm repository URL | +| `chart.version` | string | No | Chart version | +| `chart.values` | array | No | Inline Helm values | +| `chart.valueFiles` | array | No | Value file paths | +| `repository` | string | For builds | GitHub repository | +| `branchName` | string | For builds | Branch to build from | +| `docker` | object | No | Docker build config | +| `args` | string | No | Additional Helm arguments | +| `version` | string | No | Helm CLI version | +| `deploymentMethod` | string | No | `"native"` or `"ci"` | +| `envLens` | boolean | No | Enable environment lens ingress banner | ## Templated Variables