This step explains how to download and install cert-manager and Anthos Service Mesh (ASM). These services are required for Apigee hybrid to operate.
Install cert-manager
Use one of the following two commands to install cert-manager v0.14.2 from GitHub.
To find your kubectl
version use the kubectl version
command.
- If you have Kubernetes 1.15 or newer:
kubectl apply --validate=false -f https://github.com/jetstack/cert-manager/releases/download/v0.14.2/cert-manager.yaml
- Kubernetes versions older than 1.15:
kubectl apply --validate=false -f https://github.com/jetstack/cert-manager/releases/download/v0.14.2/cert-manager-legacy.yaml
You will see a response that the cert-manager
namespace was created and several cert-manager
resources were created in that namespace.
Prerequisites
- Check your Cloud SDK configuration settings using the following command:
gcloud config list [compute] region = us-central1 [core] account = user@acme.com disable_usage_reporting = False project = my-hybrid-project Your active configuration is: [default]
- Make sure the compute region or zone is set to the region or zone you
used when you created your cluster. If you
created a regional cluster, use
unset
to clear the compute/zone property if it is set. If you created a zonal cluster, useunset
to clear the compute/region property if it is set. Your config must have either the compute region or zone set, but not both. For example, to clear thecompute/zone property
usingunset
, use the following command:gcloud config unset compute/zone
- Set a variable with your
KDUBECONFIG
file path using the following command. This file was created on the admin machine when you created your cluster.export KUBECONFIG=KUBECONFIG_PATH
For example:
export KUBECONFIG=~/.kube/my-config
Set up and download ASM
Next, use the ASM documentation to set up your environment and download ASM.
Read the following steps carefully before you begin. We will ask you to perform some of the steps listed in the ASM documentation, then return here to complete the installation.
- Go to the ASM installation instructions and install the appropriate ASM version for your hybrid
setup:
- For new hybrid installations, install ASM version 1.6.x:
Go to Installing Anthos Service Mesh on attached clusters and perform all of the ASM steps up to and including Create the
istio-system
namespace, then stop and go to the next section Apply the manifest below. - For upgrades from Apigee hybrid version 1.2.x, install ASM version 1.5.x:
Go to Installing Anthos Service Mesh on an existing cluster and perform all of the ASM steps up to and including Preparing resource configuration files, then stop and go to the next section Apply the manifest below.
- For new hybrid installations, install ASM version 1.6.x:
Apply the manifest
When you have downloaded and unzipped the ASM installation file, continue with the following steps:
- Make sure you are in the Istio directory that you downloaded and unzipped. For example:
1.6.11-asm.1
. - Execute the following command for the version of Istio you installed:
- Finally, return to the ASM documentation to Check the control plane components to validate your installation.
Customizing the ASM installation
The ASM installation you just performed is a minimal installation, sufficient to test and use Apigee hybrid for basic use cases. For information on addressing more advanced use cases, such as adding, removing, or modifying load balancer port numbers, see Enabling optional features.
Summary
You now have cert-manager and ASM installed, and you are ready to install the Apigee hybrid command line tool on your local machine.
1 2 (NEXT) Step 3: Install apigeectl 4 5