From 36a18fd13798e6a0751d3418f84c88b1cc77eea2 Mon Sep 17 00:00:00 2001 From: "Oleksandr_Stepanov@epam.com" Date: Fri, 22 May 2026 15:49:06 +0300 Subject: [PATCH] EPMDEDP-16998: docs: Update krci to 3.13.5 in docs --- docs/operator-guide/extensions/krakend.md | 2 +- docs/operator-guide/install-kuberocketci.md | 6 +++--- .../troubleshooting/environment-creation.md | 2 +- docs/operator-guide/upgrade/upgrade-krci-3.13.md | 12 ++++++------ .../operator-guide/extensions/krakend.md | 2 +- .../operator-guide/install-kuberocketci.md | 6 +++--- .../troubleshooting/environment-creation.md | 2 +- .../operator-guide/upgrade/upgrade-krci-3.13.md | 12 ++++++------ .../quick-start/platform-installation.md | 2 +- 9 files changed, 23 insertions(+), 23 deletions(-) diff --git a/docs/operator-guide/extensions/krakend.md b/docs/operator-guide/extensions/krakend.md index 883929a848..94999438db 100644 --- a/docs/operator-guide/extensions/krakend.md +++ b/docs/operator-guide/extensions/krakend.md @@ -171,7 +171,7 @@ To configure KrakenD as the API gateway for KubeRocketCI, follow the steps below ``` :::note - This URL should point to the ingress URL of the KrakenD API Gateway. By default, this [value](https://github.com/epam/edp-install/blob/v3.13.0/deploy-templates/values.yaml#L16) is left empty, which means that the widgets are disabled by default. + This URL should point to the ingress URL of the KrakenD API Gateway. By default, this [value](https://github.com/epam/edp-install/blob/v3.13.5/deploy-templates/values.yaml#L16) is left empty, which means that the widgets are disabled by default. ::: 2. Define the KrakenD secret: diff --git a/docs/operator-guide/install-kuberocketci.md b/docs/operator-guide/install-kuberocketci.md index 3b6295bb0b..975253befc 100644 --- a/docs/operator-guide/install-kuberocketci.md +++ b/docs/operator-guide/install-kuberocketci.md @@ -46,7 +46,7 @@ There are multiple ways to deploy KubeRocketCI: ```bash helm search repo epamedp/edp-install NAME CHART VERSION APP VERSION DESCRIPTION - epamedp/edp-install 3.13.3 3.13.3 A Helm chart for KubeRocketCI Platform + epamedp/edp-install 3.13.5 3.13.5 A Helm chart for KubeRocketCI Platform ``` :::note @@ -213,11 +213,11 @@ There are multiple ways to deploy KubeRocketCI: 7. Install platform in the **krci** namespace with the Helm tool: - Check the parameters in the installation chart [values.yaml](https://github.com/epam/edp-install/blob/v3.13.3/deploy-templates/values.yaml) file. + Check the parameters in the installation chart [values.yaml](https://github.com/epam/edp-install/blob/v3.13.5/deploy-templates/values.yaml) file. ```bash helm install krci epamedp/edp-install --wait --timeout=900s \ - --version 3.13.3 \ + --version 3.13.5 \ --values values.yaml \ --namespace krci \ --create-namespace diff --git a/docs/operator-guide/troubleshooting/environment-creation.md b/docs/operator-guide/troubleshooting/environment-creation.md index 57834d1501..c47d337aa7 100644 --- a/docs/operator-guide/troubleshooting/environment-creation.md +++ b/docs/operator-guide/troubleshooting/environment-creation.md @@ -21,7 +21,7 @@ Failed to create an environment due to the following error: ## Cause -KubeRocketCI offers several approaches for namespace management: namespaces can be created by users, by KubeRocketCI itself, or by Argo CD. If you expect KubeRocketCI to handle namespace creation, ensure that the [cd-pipeline-operator](https://github.com/epam/edp-cd-pipeline-operator), a component of KubeRocketCI, has the necessary permissions. This permission is managed by the `manageNamespace` parameter of the [values.yaml](https://github.com/epam/edp-install/blob/v3.13.0/deploy-templates/values.yaml#L265) file. +KubeRocketCI offers several approaches for namespace management: namespaces can be created by users, by KubeRocketCI itself, or by Argo CD. If you expect KubeRocketCI to handle namespace creation, ensure that the [cd-pipeline-operator](https://github.com/epam/edp-cd-pipeline-operator), a component of KubeRocketCI, has the necessary permissions. This permission is managed by the `manageNamespace` parameter of the [values.yaml](https://github.com/epam/edp-install/blob/v3.13.5/deploy-templates/values.yaml#L264) file. If the `manageNamespace` parameter is set to false, it means the KubeRocketCI does not have permission to create namespaces and the procedure of creating namespaces in your project is delegated to a concrete person. diff --git a/docs/operator-guide/upgrade/upgrade-krci-3.13.md b/docs/operator-guide/upgrade/upgrade-krci-3.13.md index 5d9bc5b447..5402e65cd8 100644 --- a/docs/operator-guide/upgrade/upgrade-krci-3.13.md +++ b/docs/operator-guide/upgrade/upgrade-krci-3.13.md @@ -369,11 +369,11 @@ If you have DefectDojo dashboards or reports referencing the old engagement name ```yaml title="clusters/core/addons/kuberocketci/Chart.yaml" apiVersion: v2 name: edp-install - version: 3.13.1 - appVersion: 3.13.1 + version: 3.13.5 + appVersion: 3.13.5 dependencies: - name: edp-install - version: 3.13.1 + version: 3.13.5 repository: https://epam.github.io/edp-helm-charts/stable ``` @@ -392,17 +392,17 @@ If you have DefectDojo dashboards or reports referencing the old engagement name helm repo update # Confirm the target chart version is available - helm search repo epamedp/edp-install --versions | grep 3.13.1 + helm search repo epamedp/edp-install --versions | grep 3.13.5 # Preview changes against your values helm diff upgrade epamedp/edp-install \ - --version 3.13.1 \ + --version 3.13.5 \ -f values.yaml \ -n # Run the upgrade helm upgrade --install epamedp/edp-install \ - --version 3.13.1 \ + --version 3.13.5 \ -f values.yaml \ -n \ --timeout 10m \ diff --git a/versioned_docs/version-3.13/operator-guide/extensions/krakend.md b/versioned_docs/version-3.13/operator-guide/extensions/krakend.md index 883929a848..94999438db 100644 --- a/versioned_docs/version-3.13/operator-guide/extensions/krakend.md +++ b/versioned_docs/version-3.13/operator-guide/extensions/krakend.md @@ -171,7 +171,7 @@ To configure KrakenD as the API gateway for KubeRocketCI, follow the steps below ``` :::note - This URL should point to the ingress URL of the KrakenD API Gateway. By default, this [value](https://github.com/epam/edp-install/blob/v3.13.0/deploy-templates/values.yaml#L16) is left empty, which means that the widgets are disabled by default. + This URL should point to the ingress URL of the KrakenD API Gateway. By default, this [value](https://github.com/epam/edp-install/blob/v3.13.5/deploy-templates/values.yaml#L16) is left empty, which means that the widgets are disabled by default. ::: 2. Define the KrakenD secret: diff --git a/versioned_docs/version-3.13/operator-guide/install-kuberocketci.md b/versioned_docs/version-3.13/operator-guide/install-kuberocketci.md index 3b6295bb0b..975253befc 100644 --- a/versioned_docs/version-3.13/operator-guide/install-kuberocketci.md +++ b/versioned_docs/version-3.13/operator-guide/install-kuberocketci.md @@ -46,7 +46,7 @@ There are multiple ways to deploy KubeRocketCI: ```bash helm search repo epamedp/edp-install NAME CHART VERSION APP VERSION DESCRIPTION - epamedp/edp-install 3.13.3 3.13.3 A Helm chart for KubeRocketCI Platform + epamedp/edp-install 3.13.5 3.13.5 A Helm chart for KubeRocketCI Platform ``` :::note @@ -213,11 +213,11 @@ There are multiple ways to deploy KubeRocketCI: 7. Install platform in the **krci** namespace with the Helm tool: - Check the parameters in the installation chart [values.yaml](https://github.com/epam/edp-install/blob/v3.13.3/deploy-templates/values.yaml) file. + Check the parameters in the installation chart [values.yaml](https://github.com/epam/edp-install/blob/v3.13.5/deploy-templates/values.yaml) file. ```bash helm install krci epamedp/edp-install --wait --timeout=900s \ - --version 3.13.3 \ + --version 3.13.5 \ --values values.yaml \ --namespace krci \ --create-namespace diff --git a/versioned_docs/version-3.13/operator-guide/troubleshooting/environment-creation.md b/versioned_docs/version-3.13/operator-guide/troubleshooting/environment-creation.md index 57834d1501..c47d337aa7 100644 --- a/versioned_docs/version-3.13/operator-guide/troubleshooting/environment-creation.md +++ b/versioned_docs/version-3.13/operator-guide/troubleshooting/environment-creation.md @@ -21,7 +21,7 @@ Failed to create an environment due to the following error: ## Cause -KubeRocketCI offers several approaches for namespace management: namespaces can be created by users, by KubeRocketCI itself, or by Argo CD. If you expect KubeRocketCI to handle namespace creation, ensure that the [cd-pipeline-operator](https://github.com/epam/edp-cd-pipeline-operator), a component of KubeRocketCI, has the necessary permissions. This permission is managed by the `manageNamespace` parameter of the [values.yaml](https://github.com/epam/edp-install/blob/v3.13.0/deploy-templates/values.yaml#L265) file. +KubeRocketCI offers several approaches for namespace management: namespaces can be created by users, by KubeRocketCI itself, or by Argo CD. If you expect KubeRocketCI to handle namespace creation, ensure that the [cd-pipeline-operator](https://github.com/epam/edp-cd-pipeline-operator), a component of KubeRocketCI, has the necessary permissions. This permission is managed by the `manageNamespace` parameter of the [values.yaml](https://github.com/epam/edp-install/blob/v3.13.5/deploy-templates/values.yaml#L264) file. If the `manageNamespace` parameter is set to false, it means the KubeRocketCI does not have permission to create namespaces and the procedure of creating namespaces in your project is delegated to a concrete person. diff --git a/versioned_docs/version-3.13/operator-guide/upgrade/upgrade-krci-3.13.md b/versioned_docs/version-3.13/operator-guide/upgrade/upgrade-krci-3.13.md index 5d9bc5b447..5402e65cd8 100644 --- a/versioned_docs/version-3.13/operator-guide/upgrade/upgrade-krci-3.13.md +++ b/versioned_docs/version-3.13/operator-guide/upgrade/upgrade-krci-3.13.md @@ -369,11 +369,11 @@ If you have DefectDojo dashboards or reports referencing the old engagement name ```yaml title="clusters/core/addons/kuberocketci/Chart.yaml" apiVersion: v2 name: edp-install - version: 3.13.1 - appVersion: 3.13.1 + version: 3.13.5 + appVersion: 3.13.5 dependencies: - name: edp-install - version: 3.13.1 + version: 3.13.5 repository: https://epam.github.io/edp-helm-charts/stable ``` @@ -392,17 +392,17 @@ If you have DefectDojo dashboards or reports referencing the old engagement name helm repo update # Confirm the target chart version is available - helm search repo epamedp/edp-install --versions | grep 3.13.1 + helm search repo epamedp/edp-install --versions | grep 3.13.5 # Preview changes against your values helm diff upgrade epamedp/edp-install \ - --version 3.13.1 \ + --version 3.13.5 \ -f values.yaml \ -n # Run the upgrade helm upgrade --install epamedp/edp-install \ - --version 3.13.1 \ + --version 3.13.5 \ -f values.yaml \ -n \ --timeout 10m \ diff --git a/versioned_docs/version-3.13/quick-start/platform-installation.md b/versioned_docs/version-3.13/quick-start/platform-installation.md index 96503195f2..8d3e6a9bb2 100644 --- a/versioned_docs/version-3.13/quick-start/platform-installation.md +++ b/versioned_docs/version-3.13/quick-start/platform-installation.md @@ -42,7 +42,7 @@ To deploy the platform, follow the steps below: 2. Deploy the platform using the `helm install` command: ```bash - helm install krci epamedp/edp-install --version 3.13.0 --create-namespace --atomic -n krci --set global.dnsWildCard=example.com + helm install krci epamedp/edp-install --version 3.13.5 --create-namespace --atomic -n krci --set global.dnsWildCard=example.com ``` 3. Upon successful deployment of the KubeRocketCI Helm Chart, run the `kubectl port-forward` command: