Migrate to the gloo-platform Helm chart
Migrate from the legacy Helm charts to the gloo-platform
Helm chart.
In Gloo Mesh Enterprise 2.3 and later, the gloo-mesh-enterpise
, gloo-mesh-agent
, and other included Helm charts are considered legacy. If you installed Gloo Mesh Enterprise by using these legacy Helm charts, or if you used meshctl
version 2.2 or earlier to install Gloo Mesh Enterprise, you can migrate your existing installation to the new gloo-platform
Helm chart by using the meshctl migrate helm
command.
gloo-platform chart overview
In Gloo version 2.3 and later, all Gloo components are available in a single Helm chart, gloo-platform
. Additionally, the custom resource definitions (CRDs) that are required by Gloo controllers are maintained by the gloo-platform-crds
Helm chart.
When you migrate to the gloo-platform
chart, you unlock new key benefits such as the following:
- ✅ Because all Gloo components are consolidated into one chart, the Gloo Mesh Enterprise installation and upgrade processes are now quicker and simpler than ever.
- ✅ The setup process now includes basic install profiles, which provide pre-defined values files that help you quickly get your Gloo Gateway installation up and running.
- ✅ Because the Gloo CRDs are bundled into the new
gloo-platform-crds
Helm chart, you can apply any new and updated CRDs by upgrading this Helm chart, instead of manually applying CRDs.
Within the gloo-platform
chart, you can find the configuration options for all components in the following sections. To review these sections before you migrate, you can run helm show values gloo-platform/gloo-platform --version v2.3.24
.
Component section | Description |
---|---|
common | Common values shared across components. When applicable, these can be overridden in specific components. |
demo | Demo-specific features that improve quick setups. Do not use in production. |
experimental | Experimental features for Gloo Mesh Enterprise. Disabled by default. Do not use in production. |
extAuthService | Configuration for the Gloo external authentication service. |
glooAgent | Configuration for the Gloo agent. |
glooAnalyzer | Configuration for the Gloo analyzer, which gathers data on Gloo and Istio components. |
glooInsightsEngine | Configuration for the Gloo insights engine, which creates Solo insights. |
glooMgmtServer | Configuration for the Gloo management server. |
glooNetwork | Gloo Network agent configuration options. |
glooPortalServer | Configuration for the Gloo Portal server deployment. |
glooUi | Configuration for the Gloo UI. |
istioInstallations | Configuration for deploying managed Istio control plane and gateway installations by using the Istio lifecycle manager. |
licensing | Gloo product licenses. |
prometheus | Helm values for configuring Prometheus. See the Prometheus Helm chart for the complete set of values. |
rateLimiter | Configuration for the Gloo rate limiting service. |
redis | Configuration for the default Redis instance. |
telemetryCollector | Configuration for the Gloo telemetry collector agents. See the OpenTelemetry Helm chart for the complete set of values. |
telemetryCollectorCustomization | Optional customization for the Gloo telemetry collector agents. |
telemetryGateway | Configuration for the Gloo telemetry gateway. See the OpenTelemetry Helm chart for the complete set of values. |
telemetryGatewayCustomization | Optional customization for the Gloo telemetry gateway. |
Migration process
To migrate your existing Gloo Mesh Enterprise installation to the new Helm chart, you can use the meshctl migrate helm
command. This command generates a Helm install command that includes a values file for the new gloo-platform-crds
chart, and one or more Helm upgrade commands that include values files for the new gloo-platform
chart, based on the values of your existing Helm releases.
For example, you might have a multi-cluster Gloo Mesh Enterprise setup. The management server components are maintained by the legacy gloo-mesh-enterprise
Helm chart, with the release named gloo-mgmt
. The agent components are maintained by the legacy gloo-mesh-agent
Helm chart, with the release named gloo-agent
.
When you run meshctl migrate helm
for the management cluster, the command generates:
- A Helm install command for a
gloo-platform-crds
Helm chart release. This command includes a values file that contains the Gloo CRDs for the Gloo version you want to use. - A Helm upgrade command for your existing
gloo-mgmt
release. This command includes a values file that maps your values for the management server components from the legacy chart fields to the new fields in thegloo-platform
chart.
When you run meshctl migrate helm
for a workload cluster, the command generates:
- A Helm install command for a
gloo-platform-crds
Helm chart release. This command includes a values file that contains the Gloo CRDs for the Gloo version you want to use. - A Helm upgrade command for your existing
gloo-agent
release. This command includes a values file that maps your values for the agent components from the legacy chart fields to the new fields in thegloo-platform
chart.
After you run the generated commands, you can verify that your Gloo Mesh Enterprise installation is running as expected. If you need to make changes to the environment, you can roll back the Helm upgrade and make adjustments.
Before you begin
The gloo-platform
Helm chart is available in Gloo version 2.3 and later only. If your legacy setup runs version 2.2 or earlier, you must upgrade your version during this migration process to version 2.3. Prepare for the migration in the same way that you might prepare for a typical Gloo Mesh Enterprise version update.
Review the changelog for version you want to upgrade to. Focus especially on any Breaking Changes that might require a different upgrade procedure.
Check that your underlying Kubernetes platform runs a supported version for the Gloo version.
- Review the supported versions.
- Compare the supported version against the version of Kubernetes that you run in your clusters.
- If necessary, upgrade Kubernetes. Consult your cluster infrastructure provider.
Migrate the management cluster to the gloo-platform chart
Upgrade the
meshctl
CLI to the version that you want to upgrade to during the migration. For example, if you currently use version 2.2, upgrade your CLI to the latest version of 2.3,2.3.24
. During the migration, your Gloo Mesh Enterprise installation is upgraded to this version.Switch to your context to the management cluster.
kubectl use-context $MGMT_CONTEXT
Run the migration command.
meshctl migrate helm
From the command output, copy and paste the following generated commands:
helm repo add gloo-platform ...
: Run this command to add the Helm repository for Gloo Platform.helm upgrade --install gloo-platform-crds ...
: Run this command to create thegloo-platform-crds
Helm release. This release applies the Gloo CRDs for the Gloo version you are upgrading to. In future upgrades, you apply CRDs for target versions by upgrading this Helm release.
Remove CRDs that are deprecated in 2.3.
kubectl delete crd apischemas.apimanagement.gloo.solo.io kubectl delete crd cloudproviders.networking.gloo.solo.io kubectl delete crd cloudresources.networking.gloo.solo.io
Optional for Istio and gateway lifecycle management: If you manually created
IstioLifecycleManager
andGatewayLifecycleManager
CRs to deploy and manage your gateway proxies, you can either continue to manage your gateways in the CRs separately from your Helm release, or move your gateway management into your Helm release.Migrate your Gloo Mesh Enterprise values to the
gloo-platform
chart by upgrading your existing release.Check out the contents of the generated values file for the main installation, such as by running
cat gloo-mgmt-gloo-mesh-2.3.24-values.yaml
.Copy and paste the generated
helm upgrade --install gloo-mgmt ...
command to map the values from the legacy chart fields to the new fields in thegloo-platform
chart. You release might have a different name.Verify that the Helm release now lists
gloo-platform-2.3.24
as the base Helm chart.helm list -A
Example output:
NAME NAMESPACE REVISION UPDATED STATUS CHART APP VERSION gloo-mgmt gloo-mesh 1 2023-02-08 13:25:57.937179 -0500 -0500 deployed gloo-platform-2.3.24
Verify your Gloo Mesh Enterprise pods are running.
kubectl get pods -n gloo-mesh --context $MGMT_CONTEXT
NAME READY STATUS RESTARTS AGE gloo-mesh-mgmt-server-7cdcbcbd4-4s8wp 1/1 Running 0 30d gloo-mesh-redis-794d79b7df-r2rtp 1/1 Running 0 30d gloo-mesh-ui-748fd66f5c-lftcx 3/3 Running 0 30d prometheus-server-647b488bb-vg7t5 2/2 Running 0 30d
Important metrics updates: Depending on whether you run the Gloo OpenTelemetry (OTel) pipeline or legacy metrics pipeline, you might need to make changes to your installation.
Migrate workload clusters to the gloo-platform chart
Switch to the context for a workload cluster. Remember to change the context for each workload cluster that you upgrade.
kubectl use-context $REMOTE_CONTEXT
Run the migration command.
meshctl migrate helm
From the command output, copy and paste the following generated commands:
helm upgrade --install gloo-platform-crds ...
: Run this command to create thegloo-platform-crds
Helm release. This release applies the Gloo CRDs for the Gloo version you are upgrading to. In future upgrades, you apply CRDs for target versions by upgrading this Helm release.helm upgrade --install gloo-agent-addons ...
: If the migration generated this command, run it to upgrade your add-ons release. In the future, you continue to upgrade this Helm release separately from your main installation release.
Migrate your Gloo agent values to the
gloo-platform
chart by upgrading your existing release.Check out the contents of the generated values file for the main installation, such as by running
cat gloo-agent-gloo-mesh-2.3.24-values.yaml
.Copy and paste the generated command
helm upgrade --install gloo-agent ...
command to map the values from the legacy chart fields to the new fields in thegloo-platform
chart. You release might have a different name. Note: If you use the OTel telemetry pipeline, include the--set telemetryCollector.config.exporters.otlp.endpoint=$TELEMETRY_GATEWAY_ADDRESS
flag in the upgrade command.Verify that the Helm release now lists
gloo-platform-2.3.24
as the base Helm chart.helm list -A
Example output:
NAME NAMESPACE REVISION UPDATED STATUS CHART APP VERSION gloo-agent gloo-mesh 1 2023-02-08 13:25:57.937179 -0500 -0500 deployed gloo-platform-2.3.24
Verify your Gloo agent components, and optionally agent add-on components, are running.
meshctl check
Example output:
... 🟢 Gloo deployment status Namespace | Name | Ready | Status gloo-mesh | ext-auth-service | 1/1 | Healthy gloo-mesh | gloo-mesh-agent | 1/1 | Healthy gloo-mesh | rate-limiter | 1/1 | Healthy gloo-mesh | redis | 1/1 | Healthy
Repeat steps 1 - 4 for each workload cluster.
Verify your management and agent components are connected.
meshctl check --kubecontext $MGMT_CONTEXT
Example output:
🟢 License status INFO gloo-mesh enterprise license expiration is 25 Aug 24 10:38 CDT 🟢 CRD version check 🟢 Gloo deployment status Namespace | Name | Ready | Status gloo-mesh | gloo-mesh-mgmt-server | 1/1 | Healthy gloo-mesh | gloo-mesh-redis | 1/1 | Healthy gloo-mesh | gloo-mesh-ui | 1/1 | Healthy gloo-mesh | prometheus-server | 1/1 | Healthy 🟢 Mgmt server connectivity to workload agents Cluster | Registered | Connected Pod cluster1 | true | gloo-mesh/gloo-mesh-mgmt-server-65bd557b95-v8qq6 cluster2 | true | gloo-mesh/gloo-mesh-mgmt-server-65bd557b95-v8qq6