diff --git a/deploy-apps/manifest-attributes.html.md.erb b/deploy-apps/manifest-attributes.html.md.erb index 3ca57e61..ab9be927 100644 --- a/deploy-apps/manifest-attributes.html.md.erb +++ b/deploy-apps/manifest-attributes.html.md.erb @@ -237,6 +237,22 @@ The manifest attribute `docker.username` is optional. If it is used, the passwor

Using the docker attribute with the buildpacks or path attributes causes an error.

+### features + +App features can be set via the manifest attribute `features`. The attribute value is a key-value mapping of app feature names to boolean values indicating whether the feature is enabled or not. If omitted, a feature is enabled or disabled based on its default value (e.g. `revisions` are enabled by default, the `ssh` status depends on the foundation's configuration). + +For example: + +``` +--- + ... + features: + ssh: true + revisions: true + service-binding-k8s: false + file-based-vcap-services: false +``` + ### health-check-type The `health-check-type` attribute sets the `health_check_type` flag to either `port`, `process` or `http`. If you do not provide a `health-check-type` attribute, the default is `port`.