diff --git a/vuepress/docs/next/tutorials/devops/plugin-configuration.md b/vuepress/docs/next/tutorials/devops/plugin-configuration.md index 48ebe807e0..ad86e023e4 100644 --- a/vuepress/docs/next/tutorials/devops/plugin-configuration.md +++ b/vuepress/docs/next/tutorials/devops/plugin-configuration.md @@ -16,21 +16,22 @@ This tutorial describes three methods to utilize configuration profiles to speci ``` ## Profile Options +A profile is a set of configurations encoded as YAML embedded in the `OperatorConfigMap` as a string, since ConfigMaps cannot be multilevel. The three methods to insert configuration profiles are: 1. [Inline Profile](#method-1-inline-profile) 2. [Mapped Profile](#method-2-mapped-profile) 3. [Default Profile](#method-3-default-profile) -Currently, the following resources for memory and CPU can be specified. When you specify a `limit` on a resource, it is the maximum allowed for the container. Resource settings help Kubernetes determine in which node a pod should be created. +## Configuration +Currently, the resources for memory and CPU can be specified. When you specify a `limit` on a resource, it is the upper limit allowed for the container. The units for the resources are listed below but should not be included in the specification. Resource settings help Kubernetes determine in which node a pod should be created. ```yaml resources.limits.cpu: integer, millicpus resources.limits.memory: integer, mebibytes ``` -## Configuration -A profile is a set of configurations encoded as YAML but embedded in the `OperatorConfigMap` as a string, since ConfigMaps cannot be multilevel. The examples below use `YOUR-PLUGIN`, `YOUR-PLUGIN-CODE`, `YOUR-ORG`, `YOUR-BUNDLE` and `YOUR-PROFILE-NAME` as placeholders. Also note the use of `|-` to designate a new line in the code. +The examples below use `YOUR-PLUGIN`, `YOUR-PLUGIN-CODE`, `YOUR-ORG`, `YOUR-BUNDLE` and `YOUR-PROFILE-NAME` as placeholders. Also note the use of `|-` to designate a new line in the code. ### Retrieve the Plugin Code You will need to [retrieve the plugin code](../../docs/getting-started/entando-cli.md), which is calculated during installation and written to the EntandoPlugin custom resource as part of the deployment of the microservice. diff --git a/vuepress/docs/v7.0/tutorials/devops/plugin-configuration.md b/vuepress/docs/v7.0/tutorials/devops/plugin-configuration.md index 488915bef3..bce78dbffe 100644 --- a/vuepress/docs/v7.0/tutorials/devops/plugin-configuration.md +++ b/vuepress/docs/v7.0/tutorials/devops/plugin-configuration.md @@ -14,21 +14,22 @@ This tutorial describes three methods to utilize configuration profiles to speci ``` ## Profile Options +A profile is a set of configurations encoded as YAML embedded in the `OperatorConfigMap` as a string, since ConfigMaps cannot be multilevel. The three methods to insert configuration profiles are: 1. [Inline Profile](#method-1-inline-profile) 2. [Mapped Profile](#method-2-mapped-profile) 3. [Default Profile](#method-3-default-profile) -Currently, the following resources for memory and CPU can be specified. When you specify a `limit` on a resource, it is the maximum allowed for the container. Resource settings help Kubernetes determine in which node a pod should be created. +## Configuration +Currently, the resources for memory and CPU can be specified. When you specify a `limit` on a resource, it is the upper limit allowed for the container. The units for the resources are listed below but should not be included in the specification. Resource settings help Kubernetes determine in which node a pod should be created. ```yaml resources.limits.cpu: integer, millicpus resources.limits.memory: integer, mebibytes ``` -## Configuration -A profile is a set of configurations encoded as YAML but embedded in the `OperatorConfigMap` as a string, since ConfigMaps cannot be multilevel. The examples below use `YOUR-PLUGIN-ID` and `YOUR-PROFILE-NAME` as placeholders for your names. Also note `|-` in the sample codes to specify each new line is read as such. +The examples below use `YOUR-PLUGIN`, `YOUR-PLUGIN-CODE`, `YOUR-ORG`, `YOUR-BUNDLE` and `YOUR-PROFILE-NAME` as placeholders. Also note the use of `|-` to designate a new line in the code. ### Retrieve the Plugin ID You will need to [retrieve the Plugin ID](../../docs/reference/entando-cli.md) which is calculated during installation and written to the EntandoPlugin Custom Resource as part of the deployment of the plugin microservice. Use the following command from the project directory diff --git a/vuepress/docs/v7.1/tutorials/devops/plugin-configuration.md b/vuepress/docs/v7.1/tutorials/devops/plugin-configuration.md index a6901123b9..6196ded226 100644 --- a/vuepress/docs/v7.1/tutorials/devops/plugin-configuration.md +++ b/vuepress/docs/v7.1/tutorials/devops/plugin-configuration.md @@ -14,21 +14,22 @@ This tutorial describes three methods to utilize configuration profiles to speci ``` ## Profile Options +A profile is a set of configurations encoded as YAML embedded in the `OperatorConfigMap` as a string, since ConfigMaps cannot be multilevel. The three methods to insert configuration profiles are: 1. [Inline Profile](#method-1-inline-profile) 2. [Mapped Profile](#method-2-mapped-profile) 3. [Default Profile](#method-3-default-profile) -Currently, the following resources for memory and CPU can be specified. When you specify a `limit` on a resource, it is the maximum allowed for the container. Resource settings help Kubernetes determine in which node a pod should be created. +## Configuration +Currently, the resources for memory and CPU can be specified. When you specify a `limit` on a resource, it is the upper limit allowed for the container. The units for the resources are listed below but should not be included in the specification. Resource settings help Kubernetes determine in which node a pod should be created. ```yaml resources.limits.cpu: integer, millicpus resources.limits.memory: integer, mebibytes ``` -## Configuration -A profile is a set of configurations encoded as YAML but embedded in the `OperatorConfigMap` as a string, since ConfigMaps cannot be multilevel. The examples below use `YOUR-PLUGIN`, `YOUR-PLUGIN-CODE`, `YOUR-ORG`, `YOUR-BUNDLE` and `YOUR-PROFILE-NAME` as placeholders. Also note the use of `|-` to designate a new line in the code. +The examples below use `YOUR-PLUGIN`, `YOUR-PLUGIN-CODE`, `YOUR-ORG`, `YOUR-BUNDLE` and `YOUR-PROFILE-NAME` as placeholders. Also note the use of `|-` to designate a new line in the code. ### Retrieve the Plugin Code You will need to [retrieve the plugin code](../../docs/getting-started/entando-cli.md), which is calculated during installation and written to the EntandoPlugin custom resource as part of the deployment of the microservice. diff --git a/vuepress/docs/v7.2/tutorials/devops/plugin-configuration.md b/vuepress/docs/v7.2/tutorials/devops/plugin-configuration.md index 2fbc4221e9..e08ce8ddb3 100644 --- a/vuepress/docs/v7.2/tutorials/devops/plugin-configuration.md +++ b/vuepress/docs/v7.2/tutorials/devops/plugin-configuration.md @@ -17,20 +17,22 @@ This tutorial describes three methods to utilize configuration profiles to speci ## Profile Options +A profile is a set of configurations encoded as YAML embedded in the `OperatorConfigMap` as a string, since ConfigMaps cannot be multilevel. + The three methods to insert configuration profiles are: 1. [Inline Profile](#method-1-inline-profile) 2. [Mapped Profile](#method-2-mapped-profile) 3. [Default Profile](#method-3-default-profile) -Currently, the following resources for memory and CPU can be specified. When you specify a `limit` on a resource, it is the maximum allowed for the container. Resource settings help Kubernetes determine in which node a pod should be created. +## Configuration +Currently, the resources for memory and CPU can be specified. When you specify a `limit` on a resource, it is the upper limit allowed for the container. The units for the resources are listed below but should not be included in the specification. Resource settings help Kubernetes determine in which node a pod should be created. ```yaml resources.limits.cpu: integer, millicpus resources.limits.memory: integer, mebibytes ``` -## Configuration -A profile is a set of configurations encoded as YAML but embedded in the `OperatorConfigMap` as a string, since ConfigMaps cannot be multilevel. The examples below use `YOUR-PLUGIN`, `YOUR-PLUGIN-CODE`, `YOUR-ORG`, `YOUR-BUNDLE` and `YOUR-PROFILE-NAME` as placeholders. Also note the use of `|-` to designate a new line in the code. +The examples below use `YOUR-PLUGIN`, `YOUR-PLUGIN-CODE`, `YOUR-ORG`, `YOUR-BUNDLE` and `YOUR-PROFILE-NAME` as placeholders. Also note the use of `|-` to designate a new line in the code. ### Retrieve the Plugin Code You will need to [retrieve the plugin code](../../docs/getting-started/entando-cli.md), which is calculated during installation and written to the EntandoPlugin custom resource as part of the deployment of the microservice. diff --git a/vuepress/docs/v7.3/tutorials/devops/plugin-configuration.md b/vuepress/docs/v7.3/tutorials/devops/plugin-configuration.md index 48ebe807e0..ad86e023e4 100644 --- a/vuepress/docs/v7.3/tutorials/devops/plugin-configuration.md +++ b/vuepress/docs/v7.3/tutorials/devops/plugin-configuration.md @@ -16,21 +16,22 @@ This tutorial describes three methods to utilize configuration profiles to speci ``` ## Profile Options +A profile is a set of configurations encoded as YAML embedded in the `OperatorConfigMap` as a string, since ConfigMaps cannot be multilevel. The three methods to insert configuration profiles are: 1. [Inline Profile](#method-1-inline-profile) 2. [Mapped Profile](#method-2-mapped-profile) 3. [Default Profile](#method-3-default-profile) -Currently, the following resources for memory and CPU can be specified. When you specify a `limit` on a resource, it is the maximum allowed for the container. Resource settings help Kubernetes determine in which node a pod should be created. +## Configuration +Currently, the resources for memory and CPU can be specified. When you specify a `limit` on a resource, it is the upper limit allowed for the container. The units for the resources are listed below but should not be included in the specification. Resource settings help Kubernetes determine in which node a pod should be created. ```yaml resources.limits.cpu: integer, millicpus resources.limits.memory: integer, mebibytes ``` -## Configuration -A profile is a set of configurations encoded as YAML but embedded in the `OperatorConfigMap` as a string, since ConfigMaps cannot be multilevel. The examples below use `YOUR-PLUGIN`, `YOUR-PLUGIN-CODE`, `YOUR-ORG`, `YOUR-BUNDLE` and `YOUR-PROFILE-NAME` as placeholders. Also note the use of `|-` to designate a new line in the code. +The examples below use `YOUR-PLUGIN`, `YOUR-PLUGIN-CODE`, `YOUR-ORG`, `YOUR-BUNDLE` and `YOUR-PROFILE-NAME` as placeholders. Also note the use of `|-` to designate a new line in the code. ### Retrieve the Plugin Code You will need to [retrieve the plugin code](../../docs/getting-started/entando-cli.md), which is calculated during installation and written to the EntandoPlugin custom resource as part of the deployment of the microservice.