From 1c036436ae141a47db3e6418b5fef990f614968b Mon Sep 17 00:00:00 2001 From: Alberto Chiusole Date: Tue, 23 Dec 2025 20:47:30 +0100 Subject: [PATCH 1/2] Add helm to v25.3 sidebar --- platform-enterprise_docs/enterprise-sidebar.json | 9 +++++---- .../version-25.3-sidebars.json | 9 +++++---- 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/platform-enterprise_docs/enterprise-sidebar.json b/platform-enterprise_docs/enterprise-sidebar.json index 21509dca0..27d5a6d5e 100644 --- a/platform-enterprise_docs/enterprise-sidebar.json +++ b/platform-enterprise_docs/enterprise-sidebar.json @@ -42,8 +42,9 @@ "label": "Deployment", "collapsed": true, "items": [ - "enterprise/docker-compose", + "enterprise/helm", "enterprise/kubernetes", + "enterprise/docker-compose", "enterprise/testing", "enterprise/upgrade" ] @@ -63,7 +64,7 @@ }, "enterprise/general_troubleshooting" ] - }, + }, { "type": "category", "label": "Tutorials", @@ -178,7 +179,7 @@ "pipeline-optimization/overview", "launch/advanced" ] - }, + }, { "type": "category", "label": "Studios", @@ -196,7 +197,7 @@ "studios/add-studio-custom-container", "studios/add-studio-git-repo" ] - }, + }, "studios/managing", "studios/connect" ] diff --git a/platform-enterprise_versioned_sidebars/version-25.3-sidebars.json b/platform-enterprise_versioned_sidebars/version-25.3-sidebars.json index b6baf2cbc..bd4e497ec 100644 --- a/platform-enterprise_versioned_sidebars/version-25.3-sidebars.json +++ b/platform-enterprise_versioned_sidebars/version-25.3-sidebars.json @@ -43,8 +43,9 @@ "label": "Deployment", "collapsed": true, "items": [ - "enterprise/docker-compose", + "enterprise/helm", "enterprise/kubernetes", + "enterprise/docker-compose", "enterprise/testing", "enterprise/upgrade" ] @@ -64,7 +65,7 @@ }, "enterprise/general_troubleshooting" ] - }, + }, { "type": "category", "label": "Tutorials", @@ -180,7 +181,7 @@ "pipeline-optimization/overview", "launch/advanced" ] - }, + }, { "type": "category", "label": "Studios", @@ -198,7 +199,7 @@ "studios/add-studio-custom-container", "studios/add-studio-git-repo" ] - }, + }, "studios/managing", "studios/connect" ] From acac5716df0bfa5d49ce117114a242c72e5f3b19 Mon Sep 17 00:00:00 2001 From: Alberto Chiusole Date: Tue, 23 Dec 2025 20:51:28 +0100 Subject: [PATCH 2/2] Bump helm chart version to 0.20.1 --- platform-enterprise_docs/enterprise/helm.md | 12 ++++++------ .../version-25.2/enterprise/helm.md | 12 ++++++------ .../version-25.3/enterprise/helm.md | 12 ++++++------ 3 files changed, 18 insertions(+), 18 deletions(-) diff --git a/platform-enterprise_docs/enterprise/helm.md b/platform-enterprise_docs/enterprise/helm.md index 6ec438f8c..1e49872aa 100644 --- a/platform-enterprise_docs/enterprise/helm.md +++ b/platform-enterprise_docs/enterprise/helm.md @@ -5,7 +5,7 @@ date created: "2025-11-21" tags: [helm, deployment, installation, kubernetes] --- -[Helm](https://helm.sh) is an open-source command line tool used for managing Kubernetes applications. Seqera offers a [Helm chart](https://github.com/seqeralabs/helm-charts/tree/platform-0.19.0/platform) to deploy Seqera Platform Enterprise on a Kubernetes cluster. +[Helm](https://helm.sh) is an open-source command line tool used for managing Kubernetes applications. Seqera offers a [Helm chart](https://github.com/seqeralabs/helm-charts/tree/platform-0.20.1/platform) to deploy Seqera Platform Enterprise on a Kubernetes cluster. ## Prerequisites @@ -23,20 +23,20 @@ The `values.yaml` file defines a chart's settings, such as container image tags, 1. Fetch the default `values.yaml` file to customize the installation with your specific configuration: ```bash - helm show values oci://public.cr.seqera.io/charts/platform --version 0.19.0 > my-values.yaml + helm show values oci://public.cr.seqera.io/charts/platform --version 0.20.1 > my-values.yaml ``` Now edit the `my-values.yaml` file to set your options, such as internal container image registry, database connection details, license information, and other settings. - You can drop lines that you don't want to customize to keep the file concise and only include the settings you want to change: this will make it easier to maintain your configuration in the future. The values you don't specify will fall back to the defaults defined in the chart in the `values.yaml` file. For an example of a minimal configuration file, see the [example values file](https://github.com/seqeralabs/helm-charts/blob/0.19.0/platform/examples/kustomize/values.yaml). + You can drop lines that you don't want to customize to keep the file concise and only include the settings you want to change: this will make it easier to maintain your configuration in the future. The values you don't specify will fall back to the defaults defined in the chart in the `values.yaml` file. For an example of a minimal configuration file, see the [example values file](https://github.com/seqeralabs/helm-charts/blob/0.20.1/platform/examples/kustomize/values.yaml). - You can browse all the available configuration options in a tabular format in the [README](https://github.com/seqeralabs/helm-charts/tree/0.19.0/platform) file. + You can browse all the available configuration options in a tabular format in the [README](https://github.com/seqeralabs/helm-charts/tree/0.20.1/platform) file. 1. Install the chart from the public OCI registry in your desired namespace and with the values file customized in the previous step: ```bash helm install my-release oci://public.cr.seqera.io/charts/platform \ - --version 0.19.0 \ + --version 0.20.1 \ --namespace my-namespace \ --create-namespace \ --values my-values.yaml @@ -46,7 +46,7 @@ The `values.yaml` file defines a chart's settings, such as container image tags, ### Installing a Helm chart with Kustomize -Kustomize can be used to manage Helm chart installations as well and provides further customization options. To install the Seqera Platform Enterprise Helm chart using Kustomize, check out the [Kustomize example directory](https://github.com/seqeralabs/helm-charts/tree/0.19.0/platform/examples/kustomize). +Kustomize can be used to manage Helm chart installations as well and provides further customization options. To install the Seqera Platform Enterprise Helm chart using Kustomize, check out the [Kustomize example directory](https://github.com/seqeralabs/helm-charts/tree/0.20.1/platform/examples/kustomize). ## Upgrading the Helm chart diff --git a/platform-enterprise_versioned_docs/version-25.2/enterprise/helm.md b/platform-enterprise_versioned_docs/version-25.2/enterprise/helm.md index 6ec438f8c..1e49872aa 100644 --- a/platform-enterprise_versioned_docs/version-25.2/enterprise/helm.md +++ b/platform-enterprise_versioned_docs/version-25.2/enterprise/helm.md @@ -5,7 +5,7 @@ date created: "2025-11-21" tags: [helm, deployment, installation, kubernetes] --- -[Helm](https://helm.sh) is an open-source command line tool used for managing Kubernetes applications. Seqera offers a [Helm chart](https://github.com/seqeralabs/helm-charts/tree/platform-0.19.0/platform) to deploy Seqera Platform Enterprise on a Kubernetes cluster. +[Helm](https://helm.sh) is an open-source command line tool used for managing Kubernetes applications. Seqera offers a [Helm chart](https://github.com/seqeralabs/helm-charts/tree/platform-0.20.1/platform) to deploy Seqera Platform Enterprise on a Kubernetes cluster. ## Prerequisites @@ -23,20 +23,20 @@ The `values.yaml` file defines a chart's settings, such as container image tags, 1. Fetch the default `values.yaml` file to customize the installation with your specific configuration: ```bash - helm show values oci://public.cr.seqera.io/charts/platform --version 0.19.0 > my-values.yaml + helm show values oci://public.cr.seqera.io/charts/platform --version 0.20.1 > my-values.yaml ``` Now edit the `my-values.yaml` file to set your options, such as internal container image registry, database connection details, license information, and other settings. - You can drop lines that you don't want to customize to keep the file concise and only include the settings you want to change: this will make it easier to maintain your configuration in the future. The values you don't specify will fall back to the defaults defined in the chart in the `values.yaml` file. For an example of a minimal configuration file, see the [example values file](https://github.com/seqeralabs/helm-charts/blob/0.19.0/platform/examples/kustomize/values.yaml). + You can drop lines that you don't want to customize to keep the file concise and only include the settings you want to change: this will make it easier to maintain your configuration in the future. The values you don't specify will fall back to the defaults defined in the chart in the `values.yaml` file. For an example of a minimal configuration file, see the [example values file](https://github.com/seqeralabs/helm-charts/blob/0.20.1/platform/examples/kustomize/values.yaml). - You can browse all the available configuration options in a tabular format in the [README](https://github.com/seqeralabs/helm-charts/tree/0.19.0/platform) file. + You can browse all the available configuration options in a tabular format in the [README](https://github.com/seqeralabs/helm-charts/tree/0.20.1/platform) file. 1. Install the chart from the public OCI registry in your desired namespace and with the values file customized in the previous step: ```bash helm install my-release oci://public.cr.seqera.io/charts/platform \ - --version 0.19.0 \ + --version 0.20.1 \ --namespace my-namespace \ --create-namespace \ --values my-values.yaml @@ -46,7 +46,7 @@ The `values.yaml` file defines a chart's settings, such as container image tags, ### Installing a Helm chart with Kustomize -Kustomize can be used to manage Helm chart installations as well and provides further customization options. To install the Seqera Platform Enterprise Helm chart using Kustomize, check out the [Kustomize example directory](https://github.com/seqeralabs/helm-charts/tree/0.19.0/platform/examples/kustomize). +Kustomize can be used to manage Helm chart installations as well and provides further customization options. To install the Seqera Platform Enterprise Helm chart using Kustomize, check out the [Kustomize example directory](https://github.com/seqeralabs/helm-charts/tree/0.20.1/platform/examples/kustomize). ## Upgrading the Helm chart diff --git a/platform-enterprise_versioned_docs/version-25.3/enterprise/helm.md b/platform-enterprise_versioned_docs/version-25.3/enterprise/helm.md index 6ec438f8c..1e49872aa 100644 --- a/platform-enterprise_versioned_docs/version-25.3/enterprise/helm.md +++ b/platform-enterprise_versioned_docs/version-25.3/enterprise/helm.md @@ -5,7 +5,7 @@ date created: "2025-11-21" tags: [helm, deployment, installation, kubernetes] --- -[Helm](https://helm.sh) is an open-source command line tool used for managing Kubernetes applications. Seqera offers a [Helm chart](https://github.com/seqeralabs/helm-charts/tree/platform-0.19.0/platform) to deploy Seqera Platform Enterprise on a Kubernetes cluster. +[Helm](https://helm.sh) is an open-source command line tool used for managing Kubernetes applications. Seqera offers a [Helm chart](https://github.com/seqeralabs/helm-charts/tree/platform-0.20.1/platform) to deploy Seqera Platform Enterprise on a Kubernetes cluster. ## Prerequisites @@ -23,20 +23,20 @@ The `values.yaml` file defines a chart's settings, such as container image tags, 1. Fetch the default `values.yaml` file to customize the installation with your specific configuration: ```bash - helm show values oci://public.cr.seqera.io/charts/platform --version 0.19.0 > my-values.yaml + helm show values oci://public.cr.seqera.io/charts/platform --version 0.20.1 > my-values.yaml ``` Now edit the `my-values.yaml` file to set your options, such as internal container image registry, database connection details, license information, and other settings. - You can drop lines that you don't want to customize to keep the file concise and only include the settings you want to change: this will make it easier to maintain your configuration in the future. The values you don't specify will fall back to the defaults defined in the chart in the `values.yaml` file. For an example of a minimal configuration file, see the [example values file](https://github.com/seqeralabs/helm-charts/blob/0.19.0/platform/examples/kustomize/values.yaml). + You can drop lines that you don't want to customize to keep the file concise and only include the settings you want to change: this will make it easier to maintain your configuration in the future. The values you don't specify will fall back to the defaults defined in the chart in the `values.yaml` file. For an example of a minimal configuration file, see the [example values file](https://github.com/seqeralabs/helm-charts/blob/0.20.1/platform/examples/kustomize/values.yaml). - You can browse all the available configuration options in a tabular format in the [README](https://github.com/seqeralabs/helm-charts/tree/0.19.0/platform) file. + You can browse all the available configuration options in a tabular format in the [README](https://github.com/seqeralabs/helm-charts/tree/0.20.1/platform) file. 1. Install the chart from the public OCI registry in your desired namespace and with the values file customized in the previous step: ```bash helm install my-release oci://public.cr.seqera.io/charts/platform \ - --version 0.19.0 \ + --version 0.20.1 \ --namespace my-namespace \ --create-namespace \ --values my-values.yaml @@ -46,7 +46,7 @@ The `values.yaml` file defines a chart's settings, such as container image tags, ### Installing a Helm chart with Kustomize -Kustomize can be used to manage Helm chart installations as well and provides further customization options. To install the Seqera Platform Enterprise Helm chart using Kustomize, check out the [Kustomize example directory](https://github.com/seqeralabs/helm-charts/tree/0.19.0/platform/examples/kustomize). +Kustomize can be used to manage Helm chart installations as well and provides further customization options. To install the Seqera Platform Enterprise Helm chart using Kustomize, check out the [Kustomize example directory](https://github.com/seqeralabs/helm-charts/tree/0.20.1/platform/examples/kustomize). ## Upgrading the Helm chart