Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions platform-enterprise_docs/enterprise-sidebar.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,9 @@
"label": "Deployment",
"collapsed": true,
"items": [
"enterprise/docker-compose",
"enterprise/helm",
"enterprise/kubernetes",
"enterprise/docker-compose",
"enterprise/testing",
"enterprise/upgrade"
]
Expand All @@ -63,7 +64,7 @@
},
"enterprise/general_troubleshooting"
]
},
},
{
"type": "category",
"label": "Tutorials",
Expand Down Expand Up @@ -178,7 +179,7 @@
"pipeline-optimization/overview",
"launch/advanced"
]
},
},
{
"type": "category",
"label": "Studios",
Expand All @@ -196,7 +197,7 @@
"studios/add-studio-custom-container",
"studios/add-studio-git-repo"
]
},
},
"studios/managing",
"studios/connect"
]
Expand Down
12 changes: 6 additions & 6 deletions platform-enterprise_docs/enterprise/helm.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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
Expand All @@ -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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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
Expand All @@ -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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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
Expand All @@ -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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,9 @@
"label": "Deployment",
"collapsed": true,
"items": [
"enterprise/docker-compose",
"enterprise/helm",
"enterprise/kubernetes",
"enterprise/docker-compose",
"enterprise/testing",
"enterprise/upgrade"
]
Expand All @@ -64,7 +65,7 @@
},
"enterprise/general_troubleshooting"
]
},
},
{
"type": "category",
"label": "Tutorials",
Expand Down Expand Up @@ -180,7 +181,7 @@
"pipeline-optimization/overview",
"launch/advanced"
]
},
},
{
"type": "category",
"label": "Studios",
Expand All @@ -198,7 +199,7 @@
"studios/add-studio-custom-container",
"studios/add-studio-git-repo"
]
},
},
"studios/managing",
"studios/connect"
]
Expand Down