-
Notifications
You must be signed in to change notification settings - Fork 190
Elastic Stack Helm chart upgrade and configuration changes documentation #4388
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -88,24 +88,142 @@ | |||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ## Install individual components of the {{stack}} [k8s-eck-stack-individual-components] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
| You can install individual components in one of two ways using the provided Helm Charts. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| You can install individual components in one of two ways using the provided Helm charts: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
| 1. Using Helm values | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| 2. Using the individual Helm Charts directly (not the `eck-stack` helm chart) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| * Using Helm values with the `eck-stack` chart to include only the components you need | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| * Using the individual Helm charts directly, without using the `eck-stack` chart | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
| **Using Helm values to install only Elasticsearch** | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| The following examples show how to install only {{es}} using each approach. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ### Using Helm values to install only {{es}} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
| This example installs only {{es}} by deploying the `eck-stack` chart and excluding {{kib}}. By default, the chart deploys both {{es}} and {{kib}}. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ```sh | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| helm install es-quickstart elastic/eck-stack -n elastic-stack --create-namespace --set=eck-kibana.enabled=false | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ``` | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
| **Using the eck-elasticsearch Helm Chart directly to install only Elasticsearch** | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ### Using the eck-elasticsearch Helm chart directly to install only {{es}} [individual-chart] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
| This example installs {{es}} by deploying the `eck-elasticsearch` chart on its own. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ```sh | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| helm install es-quickstart elastic/eck-elasticsearch -n elastic-stack --create-namespace | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ``` | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ## Upgrade or change {{stack}} configuration with Helm [k8s-upgrade-modify-helm] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Whether you want to upgrade your {{stack}} components to a new version or modify the configuration of your existing installation (known as a `release`), you use the [`helm upgrade`](https://helm.sh/docs/helm/helm_upgrade/) command. The key principle is to use the same options and values you used during installation, along with any changes you want to apply. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
| The `helm upgrade` command requires the following arguments: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| - The name of the release to update, which must match the name used with `helm install`. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| - The chart name, which must be the same chart used during installation. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ::::{important} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| When using `helm upgrade`, you must include all the options and values from your original installation command (for example, custom values files and `--set` options). Helm does not retain your previous configuration, so omitting them causes values to revert to their default settings. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| :::: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
| By default, `helm upgrade` uses the latest available version of the chart unless the `--version` option is specified. Refer to [View chart versions](#show-versions) to list the available chart versions or the version associated with an installed release. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ::::{admonition} Chart version vs {{stack}} component version | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| There is an important distinction between the Helm chart version and the {{stack}} component version: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
| - **Chart version**: The version of the Helm chart itself (for example, `eck-stack` version 0.17.0). You can specify this using the `--version` flag in your Helm `install` or `upgrade` commands. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| - **Component version**: The version of a {{stack}} component (for example, {{es}} 8.15.0 or {{kib}} 8.15.0). You can specify this in your values file or by using `--set` parameters. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. let's use latest values here
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Each chart version defines default {{stack}} component versions. Unless explicitly overridden, installing or upgrading the chart deploys those default versions. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
| % When available we can tell users how to check the default {{stack}} version associated with each chart release. That's not feasible today and users are a bit blind on this regard. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. careful about language - these comments are public
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
| :::: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
| All examples in this section assume that your release was installed using the `eck-stack` Helm chart. Adapt the examples if you deployed the [individual charts](#individual-chart) directly. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ### Upgrade to the latest version of the chart | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
| To upgrade an installed release named `es-kb-quickstart` to the latest version of the Helm chart, do the following: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ```sh | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| helm repo update <1> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| helm upgrade es-kb-quickstart elastic/eck-stack -n elastic-stack | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ``` | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| 1. Refresh the local chart cache. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
| By default, upgrading the Helm chart also upgrades the {{stack}} components to the versions associated with that chart version. To override this behavior, you can explicitly set the {{stack}} component versions to use, as shown in the following section. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ### Upgrade to specific {{stack}} version | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
| If for example you want to upgrade the {{stack}} components to a later version that is not the default for the Helm chart, you can explicitly set the component versions using Helm values or `--set` options. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I understand the
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
| The following examples show both ways to upgrade the release to the latest available version of the Helm chart and all {{stack}} components to version {{version.stack}}. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
| #### Using the `--set` option | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Use `--set` options to override the component versions directly from the command line: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ```sh | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||||||||||||||||||||||||||||||||||||||||||||||||||||||
| helm repo update <1> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| helm upgrade es-kb-quickstart elastic/eck-stack -n elastic-stack \ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| --set eck-elasticsearch.version={{version.stack}} \ <2> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| --set eck-kibana.version={{version.stack}} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ``` | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| 1. Refresh the local chart cache. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| 2. Specify versions for all the components you deploy. Components without an explicitly defined version continue to use the default versions provided by the chart. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
| #### Using a values file | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
| If you already use a values file for this release, update it to include the following settings. Otherwise, create a new values file (for example, `custom-values.yaml`) with the following content: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ```yaml subs=true | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| eck-elasticsearch: <1> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| version: {{version.stack}} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| eck-kibana: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| version: {{version.stack}} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ``` | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| 1. Specify versions for all the components you deploy. Components without an explicitly defined version continue to use the default versions provided by the chart. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Then upgrade the release using the values file: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ```sh | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| helm repo update <1> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| helm upgrade es-kb-quickstart elastic/eck-stack -n elastic-stack -f custom-values.yaml | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ``` | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| 1. Refresh the local chart cache. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ### Apply configuration changes | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
| To apply configuration changes to an existing release, run `helm upgrade` with the complete configuration you want the release to use. This includes both the current configuration and any new changes. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
| For example, if you installed the [quickstart release](#k8s-install-elasticsearch-kibana-helm) and want to scale the {{es}} cluster to three nodes and expose the {{kib}} service using a LoadBalancer, do the following: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
| 1. Create a values file with the desired configuration, and save it as `custom-values.yaml`: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ```yaml | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| eck-elasticsearch: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| nodeSets: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| - name: default | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| count: 3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
| eck-kibana: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| http: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| service: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| spec: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| # This deploys a load balancer in a cloud service provider, where supported. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| type: LoadBalancer | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ``` | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Comment on lines
+200
to
+212
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
| 2. Apply the configuration using `helm upgrade`: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ```sh | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| helm upgrade es-kb-quickstart elastic/eck-stack \ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| -n elastic-stack \ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| -f custom-values.yaml | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ``` | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Comment on lines
+216
to
+220
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. indent all code snippets under their steps
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ::::{warning} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| The previous example also upgrades the {{stack}} components if a newer Helm chart version is available. To avoid this, [identify the chart version](#show-versions) currently used by your release and include the `--version` option when running `helm upgrade`. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. because it's all grouped under one heading with only one code example, we can just say
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
| :::: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ## Adding Ingress to the {{stack}} [k8s-eck-stack-ingress] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. little consistency tweak
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
| :::{admonition} Support scope for Ingress Controllers | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| [Ingress](https://kubernetes.io/docs/concepts/services-networking/ingress/) is a standard Kubernetes concept. While ECK-managed workloads can be publicly exposed using ingress resources, and we provide [example configurations](/deploy-manage/deploy/cloud-on-k8s/recipes.md), setting up an Ingress controller requires in-house Kubernetes expertise. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
@@ -135,7 +253,7 @@ | |||||||||||||||||||||||||||||||||||||||||||||||||||||
| --set=eck-kibana.ingress.enabled=true --set=eck-kibana.ingress.hosts[0].host=kibana.example.com --set=eck-kibana.ingress.hosts[0].path="/" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ``` | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
| For illustration purposes, the ingress objects created by the previous command will look similar to the following: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| For illustration purposes, the ingress objects created by the previous command look similar to the following: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ```yaml | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| # Source: eck-stack/charts/eck-elasticsearch/templates/ingress.yaml | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
@@ -193,3 +311,21 @@ | |||||||||||||||||||||||||||||||||||||||||||||||||||||
| helm show values elastic/eck-fleet-server | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| helm show values elastic/eck-logstash | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ``` | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ## View available chart versions [show-versions] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
| To view the available versions of a Helm chart, update the local chart cache and use the `helm repo search` command with `--versions` option: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ```sh | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| helm repo update | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| helm repo search elastic/eck-stack --versions <1> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ``` | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| 1. Applicable to `eck-stack` or the [individual charts](#k8s-eck-stack-individual-components) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Comment on lines
+319
to
+323
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. no need to bury this helpful hint as a code comment
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
| To view the version associated with an installed release, check the **CHART** column of the `helm list` command output. For example: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ```sh | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| $ helm list -n elastic-stack | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| NAME NAMESPACE REVISION UPDATED STATUS CHART APP VERSION | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| es-kb-quickstart elastic-stack 2 2025-12-17 11:24:06.156007 +0100 CET deployed eck-stack-0.17.0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ``` | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -8,7 +8,6 @@ products: | |
| - id: cloud-kubernetes | ||
| - id: elasticsearch | ||
| --- | ||
|
|
||
| # Upgrade your deployment on {{eck}} (ECK) | ||
|
|
||
| The ECK orchestrator can safely perform upgrades to newer versions of the {{stack}}. | ||
|
|
@@ -20,6 +19,10 @@ Before you start the upgrade, [plan your upgrade](/deploy-manage/upgrade/plan-up | |
| 1. In the resource spec file, modify the `version` field for the desired {{stack}} version. | ||
| 2. Save your changes. The orchestrator will start the upgrade process automatically. | ||
|
|
||
| ::::{note} | ||
| If you deploy your {{stack}} resources using our Helm chart, refer to [](/deploy-manage/deploy/cloud-on-k8s/managing-deployments-using-helm-chart.md#k8s-upgrade-modify-helm) for details on how to perform upgrades with Helm. | ||
| :::: | ||
|
Comment on lines
+22
to
+24
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this note kind of works, but I don't like how it's splitting the instructions and example, and it is burying an up-front choice in the middle of the procedure consider instead:
not sure if there is a better way to word the headings, because it's less about the method of performing the upgrade, than the context of the configuration ... some alternative headings might be: "For orchestrators using spec files" orchestrators / operators / environments / deployments / clusters ... whatever feels the most accurate you see what I'm getting at :) |
||
|
|
||
| In this example, we’re modifying the version to {{version.stack}}. | ||
|
|
||
| ```yaml subs=true | ||
|
|
||

There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.