Step 6: Create the overrides

You are currently viewing version 1.11 of the Apigee hybrid documentation.This version is end of life. You should upgrade to a newer version. For more information, seeSupported versions.

Specify configuration overrides

The Apigee hybrid installer uses defaults for many settings. However, there are a few settings that do not have defaults. You must provide values for these settings, as explained next.

Before you begin

We recommend you review the following scenarios to determine if you want to configure your cluster for them. These configurations are optional.

Configure the cluster

By convention, configuration overrides are written in a file namedoverrides.yaml typically stored in your$APIGEE_HELM_CHARTS_HOME directory.

Note: Theoverrides.yaml file will be used during upgrades, expansions and anytime you need to alter the configuration of your hybrid runtime installation. Apigee recommends you store this file in a source control repository with version control.
  1. Create a new file namedoverrides.yaml in your$APIGEE_HELM_CHARTS_HOME directory.

    Theoverrides.yaml provides the configuration for your unique Apigee hybrid installation. The overrides file in this step provides a basic configuration for a small-footprint hybrid runtime installation, suitable for your first installation.

  2. Inoverrides.yaml, add the required property values, shown below. A detailed description of each property is provided below.

    Select the tab for your installation, production,Production or non-production (demo, evaluation, or proof-of-concept installations),Non-prod depending on your choice inStep 4: Create service accounts.

    For installations in production environments, look at the storage requirements for the Cassandra database inConfigure Cassandra for production.

    If you are installing Apigee hybrid on GKE and you plan to use Workload Identity to authenticate hybrid components, select either theProd: Workload Identity orNon-prod: Workload Identity tab to configure youroverrides.yaml file.

    Production

    Make sure theoverrides.yaml file has the following structure and syntax. Values inred, bold italics are property values that you must provide. You can edit their values on this page. They are described in thetable below.

    There are differences between the different platforms for the Google Cloud project region and Kubernetes cluster region. Choose the platform where you are installing Apigee hybrid.

    instanceID: "UNIQUE_INSTANCE_IDENTIFIER"namespace:APIGEE_NAMESPACE # Usually "apigee"gcp:  projectID:PROJECT_ID  region:ANALYTICS_REGIONk8sCluster:  name:CLUSTER_NAME  region:CLUSTER_LOCATION # Must be the closest Google Cloud region to your cluster.org:ORG_NAME  ao:  image:    url: "gcr.io/apigee-release/hybrid/apigee-operators"    tag: "1.11.2-hotfix.3" # Required for Apigee hybrid v1.11.2runtime:  image:    url: "gcr.io/apigee-release/hybrid/apigee-runtime"    tag: "1.11.2-hotfix.3" # Required for Apigee hybrid v1.11.2 envs:- name:ENVIRONMENT_NAME  serviceAccountPaths:    # Provide the path relative to the apigee-env chart directory.    synchronizer:SYNCHRONIZER_SERVICE_ACCOUNT_FILEPATH      # For example: "PROJECT_ID-apigee-synchronizer.json"    runtime:RUNTIME_SERVICE_ACCOUNT_FILEPATH      # For example: "PROJECT_ID-apigee-runtime.json"    udca:UDCA_SERVICE_ACCOUNT_FILEPATH      # For example: "PROJECT_ID-apigee-udca.json"cassandra:  hostNetwork:false    # Set tofalse for single region installations and multi-region installations    # with connectivity between pods in different clusters, for example GKE installations.    # Set totrue  for multi-region installations with no communication between    # pods in different clusters, for example GKE On-prem, GKE on AWS, Anthos on bare metal,    # AKS, EKS, and OpenShift installations.    # SeeMulti-region deployment: Prerequisites  replicaCount:3    # Use multiples of 3 for production.    # SeeConfigure Cassandra for production for guidelines.  storage:    capacity: 500Gi  resources:    requests:      cpu: 7      memory: 15Gi  maxHeapSize: 8192M  heapNewSize: 1200M    # Minimum storage requirements for a production environment.    # SeeConfigure Cassandra for production.ingressGateways:- name:INGRESS_NAME # maximum 17 characters.  replicaCountMin: 2  replicaCountMax: 10  svcAnnotations:  # optional. If you are on AKS, seeKnown issue #260772383SVC_ANNOTATIONS_KEY:SVC_ANNOTATIONS_VALUEvirtualhosts:- name:ENVIRONMENT_GROUP_NAME  selector:    app: apigee-ingressgateway    ingress_name:INGRESS_NAME  sslCertPath:PATH_TO_CERT_FILE  sslKeyPath:PATH_TO_KEY_FILEmart:  serviceAccountPath:MART_SERVICE_ACCOUNT_FILEPATH    # Provide the path relative to the apigee-org chart directory.    # For example: "PROJECT_ID-apigee-mart.json"connectAgent:  serviceAccountPath:MART_SERVICE_ACCOUNT_FILEPATH    #Use the same service account for mart and connectAgent    # Provide the path relative to the apigee-org chart directory.    # For example: "PROJECT_ID-apigee-mart.json"logger:  enabled:true    # enabled by default    # Seeapigee-logger inService accounts and roles used by hybrid components.  serviceAccountPath:LOGGER_SERVICE_ACCOUNT_FILEPATH    # Provide the path relative to the apigee-telemetry chart directory.    # For example: "PROJECT_ID-apigee-logger.json"metrics:  serviceAccountPath:METRICS_SERVICE_ACCOUNT_FILEPATH    # Provide the path relative to the apigee-telemetry chart directory.    # For example: "PROJECT_ID-apigee-metrics.json"udca:  serviceAccountPath:UDCA_SERVICE_ACCOUNT_FILEPATH    # Provide the path relative to the apigee-org chart directory.    # For example: "PROJECT_ID-apigee-udca.json"watcher:  serviceAccountPath:WATCHER_SERVICE_ACCOUNT_FILEPATH    # Provide the path relative to the apigee-org chart directory.    # For example: "PROJECT_ID-apigee-watcher.json"

    Non-prod

    Make sure theoverrides.yaml file has the following structure and syntax. Values inred, bold italics are property values that you must provide. You can edit their values on this page. They are described in thetable below.

    There are differences between the different platforms for the Google Cloud project region and Kubernetes cluster region. Choose the platform where you are installing Apigee hybrid.

    instanceID: "UNIQUE_INSTANCE_IDENTIFIER"namespace:APIGEE_NAMESPACE # Usually "apigee"gcp:  projectID:PROJECT_ID  region:ANALYTICS_REGIONk8sCluster:  name:CLUSTER_NAME  region:CLUSTER_LOCATION # Must be the closest Google Cloud region to your cluster.org:ORG_NAME  ao:  image:    url: "gcr.io/apigee-release/hybrid/apigee-operators"    tag: "1.11.2-hotfix.3" # Required for Apigee hybrid v1.11.2runtime:  image:    url: "gcr.io/apigee-release/hybrid/apigee-runtime"    tag: "1.11.2-hotfix.3" # Required for Apigee hybrid v1.11.2 envs:- name:ENVIRONMENT_NAME  serviceAccountPaths:    # Provide the path relative to the apigee-env chart directory.    synchronizer:NON_PROD_SERVICE_ACCOUNT_FILEPATH    # For example: "PROJECT_ID-apigee-non-prod.json"    runtime:NON_PROD_SERVICE_ACCOUNT_FILEPATH    # For example: "PROJECT_ID-apigee-non-prod.json"    udca:NON_PROD_SERVICE_ACCOUNT_FILEPATH    # For example: "PROJECT_ID-apigee-non-prod.json"cassandra:  hostNetwork:false    # Set tofalse for single region installations and multi-region installations    # with connectivity between pods in different clusters, for example GKE installations.    # Set totrue  for multi-region installations with no communication between    # pods in different clusters, for example GKE On-prem, GKE on AWS, Anthos on bare metal,    # AKS, EKS, and OpenShift installations.    # SeeMulti-region deployment: Prerequisites  replicaCount:1    # Use 1 for non-prod or "demo" installations and multiples of 3 for production.    # SeeConfigure Cassandra for production for guidelines.ingressGateways:- name:INGRESS_NAME # maximum 17 characters.  replicaCountMin: 2  replicaCountMax: 10  svcAnnotations:  # optional. If you are on AKS, seeKnown issue #260772383SVC_ANNOTATIONS_KEY:SVC_ANNOTATIONS_VALUEvirtualhosts:- name:ENVIRONMENT_GROUP_NAME  selector:    app: apigee-ingressgateway    ingress_name:INGRESS_NAME  sslCertPath:PATH_TO_CERT_FILE  sslKeyPath:PATH_TO_KEY_FILEmart:  serviceAccountPath:NON_PROD_SERVICE_ACCOUNT_FILEPATH    # Provide the path relative to the apigee-org chart directory.    # For example: "PROJECT_ID-apigee-non-prod.json"connectAgent:  serviceAccountPath:NON_PROD_SERVICE_ACCOUNT_FILEPATH    # Provide the path relative to the apigee-org chart directory.    #Use the same service account for mart and connectAgent    # For example: "PROJECT_ID-apigee-non-prod.json"logger:  enabled:true    # enabled by default    # Seeapigee-logger inService accounts and roles used by hybrid components.  serviceAccountPath:NON_PROD_SERVICE_ACCOUNT_FILEPATH    # Provide the path relative to the apigee-telemetry chart directory.    # For example: "PROJECT_ID-apigee-non-prod.json"metrics:  serviceAccountPath:NON_PROD_SERVICE_ACCOUNT_FILEPATH    # Provide the path relative to the apigee-telemetry chart directory.    # For example: "PROJECT_ID-apigee-non-prod.json"udca:  serviceAccountPath:NON_PROD_SERVICE_ACCOUNT_FILEPATH    # Provide the path relative to the apigee-org chart directory.    # For example: "PROJECT_ID-apigee-non-prod.json"watcher:  serviceAccountPath:NON_PROD_SERVICE_ACCOUNT_FILEPATH    # Provide the path relative to the apigee-org chart directory.    # For example: "PROJECT_ID-apigee-non-prod.json"

    Prod: Workload Identity

    This template is for Production installations on GKE using Workload Identity. Make sure theoverrides.yaml file has the following structure and syntax. Values inred, bold italics are property values that you must provide. You can edit their values on this page. They are described in thetable below.

    If you are installing Apigee hybrid onGKE, you have an alternative to authenticate and make requests to Google APIs,Workload Identity. For overviews of Workload Identity, see:

    To use Workload Identity with Apigee hybrid on GKE, use this template and then follow the steps inStep 11: Install Apigee hybrid using Helm charts to create the Kubernetes service accounts and associate them with the Google service accounts you created inStep 4: Create service accounts.

    Tip: You can find the email address of your service accounts with the following command:
    gcloud iam service-accounts list --project ${PROJECT_ID} --filter "apigee"
    instanceID: "UNIQUE_INSTANCE_IDENTIFIER"namespace:APIGEE_NAMESPACE # Usually "apigee"gcp:  projectID:PROJECT_ID  region:ANALYTICS_REGION  workloadIdentity:    enabled: truek8sCluster:  name:CLUSTER_NAME  region:CLUSTER_LOCATION # Must be the closest Google Cloud region to your cluster.org:ORG_NAME  ao:  image:    url: "gcr.io/apigee-release/hybrid/apigee-operators"    tag: "1.11.2-hotfix.3" # Required for Apigee hybrid v1.11.2runtime:  image:    url: "gcr.io/apigee-release/hybrid/apigee-runtime"    tag: "1.11.2-hotfix.3" # Required for Apigee hybrid v1.11.2 envs:- name:ENVIRONMENT_NAME  gsa:    synchronizer: "SYNCHRONIZER_SERVICE_ACCOUNT_EMAIL"      # For example: "apigee-synchronizer@PROJECT_ID.iam.gserviceaccount.com"    runtime: "RUNTIME_SERVICE_ACCOUNT_EMAIL"      # For example: "apigee-runtime@PROJECT_ID.iam.gserviceaccount.com"    udca: "UDCA_SERVICE_ACCOUNT_EMAIL"      # For example: "apigee-udca@PROJECT_ID.iam.gserviceaccount.com"cassandra:  hostNetwork:false    # Set tofalse for single region installations and multi-region installations    # with connectivity between pods in different clusters, for example GKE installations.    # Set totrue  for multi-region installations with no communication between    # pods in different clusters, for example GKE On-prem, GKE on AWS, Anthos on bare metal,    # AKS, EKS, and OpenShift installations.    # SeeMulti-region deployment: Prerequisites  replicaCount:3    # Use multiples of 3 for production.    # SeeConfigure Cassandra for production for guidelines.  storage:    capacity: 500Gi  resources:    requests:      cpu: 7      memory: 15Gi  maxHeapSize: 8192M  heapNewSize: 1200M    # Minimum storage requirements for a production environment.    # SeeConfigure Cassandra for production.  backup:    enabled: true    # Set to true for initial installation.    # This triggers the chart to create the apigee-cassandra-backup Kubernetes service account when you install it.    # SeeCassandra backup overview for instructions on using cassandra.backup.ingressGateways:- name:INGRESS_NAME # maximum 17 characters.  replicaCountMin: 2  replicaCountMax: 10  svcAnnotations:  # optional. If you are on AKS, seeKnown issue #260772383SVC_ANNOTATIONS_KEY:SVC_ANNOTATIONS_VALUEvirtualhosts:- name:ENVIRONMENT_GROUP_NAME  selector:    app: apigee-ingressgateway    ingress_name:INGRESS_NAME  sslCertPath:PATH_TO_CERT_FILE  sslKeyPath:PATH_TO_KEY_FILEmart:  gsa: "MART_SERVICE_ACCOUNT_EMAIL"    # For example: "apigee-mart@PROJECT_ID.iam.gserviceaccount.com"connectAgent:  gsa: "MART_SERVICE_ACCOUNT_EMAIL"    #Use the same service account for mart and connectAgent    # For example: "apigee-mart@PROJECT_ID.iam.gserviceaccount.com"logger:  enabled:true    # enabled by default    # Seeapigee-logger inService accounts and roles used by hybrid components.  gsa: "LOGGER_SERVICE_ACCOUNT_EMAIL"    # For example: "apigee-logger@PROJECT_ID.iam.gserviceaccount.com"metrics:  gsa: "METRICS_SERVICE_ACCOUNT_EMAIL"    # For example: "apigee-metrics@PROJECT_ID.iam.gserviceaccount.com"udca:  gsa: "UDCA_SERVICE_ACCOUNT_EMAIL"    # For example: "apigee-udca@PROJECT_ID.iam.gserviceaccount.com"watcher:  gsa: "WATCHER_SERVICE_ACCOUNT_EMAIL"    # For example: "apigee-watcher@PROJECT_ID.iam.gserviceaccount.com"

    Non-prod: Workload Identity

    This template is for Non-Production installations on GKE using Workload Identity. Make sure theoverrides.yaml file has the following structure and syntax. Values inred, bold italics are property values that you must provide. You can edit their values on this page. They are described in thetable below.

    If you are installing Apigee hybrid onGKE, you have an alternative to authenticate and make requests to Google APIs,Workload Identity. For overviews of Workload Identity, see:

    To use Workload Identity with Apigee hybrid on GKE, use this template and then follow the steps inStep 11: Install Apigee hybrid using Helm charts to create the Kubernetes service accounts and associate them with the Google service accounts you created inStep 4: Create service accounts.

    Tip: You can find the email address of yourapigee-non-prod service account with the following command:
    gcloud iam service-accounts list --project ${PROJECT_ID} --filter "apigee-non-prod"
    instanceID: "UNIQUE_INSTANCE_IDENTIFIER"namespace:APIGEE_NAMESPACE # Usually "apigee"gcp:  projectID:PROJECT_ID  region:ANALYTICS_REGION  workloadIdentity:    enabled: true    gsa: "NON_PROD_SERVICE_ACCOUNT_EMAIL"    # For example: "apigee-non-prod@PROJECT_ID.iam.gserviceaccount.com"k8sCluster:  name:CLUSTER_NAME  region:CLUSTER_LOCATION # Must be the closest Google Cloud region to your cluster.org:ORG_NAMEinstanceID: "UNIQUE_INSTANCE_IDENTIFIER"cassandra:  hostNetwork:false    #false for all GKE installations.    # SeeMulti-region deployment: Prerequisites  replicaCount:1    # Use 1 for non-prod or "demo" installations and multiples of 3 for production.    # SeeConfigure Cassandra for production for guidelines.  backup:    enabled: true    # Set to true for initial installation.    # This triggers the chart to create the apigee-cassandra-backup Kubernetes service account when you install it.    # SeeCassandra backup overview for instructions on using cassandra.backup.virtualhosts:- name:ENVIRONMENT_GROUP_NAME  selector:    app: apigee-ingressgateway    ingress_name:INGRESS_NAME  sslCertPath:PATH_TO_CERT_FILE  sslKeyPath:PATH_TO_KEY_FILEingressGateways:- name:INGRESS_NAME # maximum 17 characters.  replicaCountMin: 2  replicaCountMax: 10  svcAnnotations:  # optional. If you are on AKS, seeKnown issue #260772383SVC_ANNOTATIONS_KEY:SVC_ANNOTATIONS_VALUE  svcLoadBalancerIP:SVC_LOAD_BALANCER_IP  # optional  ao:  image:    url: "gcr.io/apigee-release/hybrid/apigee-operators"    tag: "1.11.2-hotfix.3" # Required for Apigee hybrid v1.11.2runtime:  image:    url: "gcr.io/apigee-release/hybrid/apigee-runtime"    tag: "1.11.2-hotfix.3" # Required for Apigee hybrid v1.11.2 envs:- name:ENVIRONMENT_NAMElogger:  enabled:false # Set tofalse for all GKE installations.

    Example

    The following example shows a completed overrides file with example property values added:

    instanceID: "my_hybrid_example"namespace: apigeegcp:  projectID: hybrid-example  region: us-central1k8sCluster:  name: apigee-hybrid  region: us-central1org: hybrid-example  ao:  image:    url: "gcr.io/apigee-release/hybrid/apigee-operators"    tag: "1.11.2-hotfix.3"runtime:  image:    url: "gcr.io/apigee-release/hybrid/apigee-runtime"    tag: "1.11.2-hotfix.3"envs:- name: test  serviceAccountPaths:    synchronizer:my-hybrid-project-apigee-synchronizer.json    runtime: my-hybrid-project-apigee-runtime.json    udca: my-hybrid-project-apigee-udca.jsoncassandra:  hostNetwork: false  replicaCount: 3ingressGateways:- name: my-ingress-1  replicaCountMin: 2  replicaCountMax: 10virtualhosts:- name: example-env-group  selector:    app: apigee-ingressgateway    ingress_name: my-ingress-1  sslCertPath: certs/keystore.pem  sslKeyPath: certs/keystore.keylogger:  enabled: true # Set to "false" for GKE. Set to "true" for all other Kubernetes platforms.  serviceAccountPath: my-hybrid-project-apigee-logger.jsonmart:  serviceAccountPath: my-hybrid-project-apigee-mart.jsonconnectAgent:  serviceAccountPath: my-hybrid-project-apigee-mart.jsonmetrics:  serviceAccountPath: my-hybrid-project-apigee-metrics.jsonudca:  serviceAccountPath: my-hybrid-project-apigee-udca.jsonwatcher:  serviceAccountPath: my-hybrid-project-apigee-watcher.json
  3. When you are finished, save the file.

The following table describes each of the property values that you must provide in the overrides file. For more information, seeConfiguration property reference.

VariableDescription
UNIQUE_INSTANCE_IDENTIFIER

A unique string to identify this instance. This can be any combination of letters and numbers up to 63 characters.

Note:You can create multiple organizations in the same cluster, but theinstanceID must be the same for all orgs in the same Kubernetes cluster. For multi-region installations, each region requires its own cluster (individual clusters do not span regions).

You can create multiple organizations in the same cluster, but theinstanceID must be the same for all orgs in the same Kubernetes cluster.

APIGEE_NAMESPACE

The Kubernetes namespace for your Apigee hybrid components.

The default value isapigee.

ANALYTICS_REGIONIn GKE, You must set this value to the same region where the cluster is running. In all other platforms, select the closest analytics region to your cluster that has Analytics support (see the table inPart 1, Step 2: Create an organization.

This is the value you assigned to the environment variableANALYTICS_REGION previously.

PROJECT_IDIdentifies the Google Cloud project where theapigee-logger and theapigee-metrics push their data. This is the value assigned to the environment variablePROJECT_ID.
CLUSTER_NAMEYour Kubernetes cluster name. This is the value assigned to the environment variableCLUSTER_NAME.
CLUSTER_LOCATIONThe region where the cluster is running. This is the region where you created the cluster in Step 1: Create a cluster.

This is the value you assigned to the environment variableCLUSTER_LOCATION previously.

If you are working with zonal clusters, you must specify theregion in which your cluster was created. For example, if you created your cluster in theus-central1-a zone, specifyus-central1 for theCLUSTER_LOCATION.
ORG_NAMEThe ID of your Apigee hybrid organization. This is the value assigned to the environment variableORG_NAME.
ENVIRONMENT_GROUP_NAMEThe name of the environment group your environments are assigned to. This is the group you created in Project and org setup - Step 3: Create an environment group. This is the value assigned to the environment variableENV_GROUP.Note:If you wish to place cluster instances in multiple regions, you must be careful about how you define your environments and virtual hosts. If you have one or more environments attached to an environment group, you must include that same environment group configuration in each cluster instance's overrides file.
PATH_TO_CERT_FILE
PATH_TO_KEY_FILE
Enter the path and filename of the self-signed TLS key and certificate files that you generated previously in Step 5: Create TLS certificates. These files must be located in theAPIGEE_HELM_CHARTS_HOME/apigee-virtualhosts/certs directory. For example:
sslCertPath:certs/keystore.crtsslKeyPath:certs/keystore.key
INGRESS_NAMEThe name of the Apigee ingress gateway for your deployment. This can be any name that meets the following requirements:
  • Have a maximum length of 17 characters
  • Contain only lowercase alphanumeric characters, '-' or '.'
  • Start with an alphanumeric character
  • End with an alphanumeric character

SeeingressGateways[].name in the Configuration property reference

SVC_ANNOTATIONS_KEY:SVC_ANNOTATIONS_VALUE(Optional). This is a key-value pair that provides annotations for your default ingress service. Your cloud platform uses annotations to help configure your hybrid installation, for example setting the loadbalancer type to either internal or external.

Annotations vary from platform to platform. Refer to your platform documentation for required and suggested annotations.

Note: You do not need to setsvcAnnotations if you are creating your own Kubernetes service for ingress deployment as documented inExpose Apigee ingress gateway.

Comment out or delete this section if you are not using it.

SVC_LOAD_BALANCER_IP(Optional). An IP address you have reserved for your load balancer. On platforms that support specifying the load balancer IP address, the load balancer will be created with this IP address. On platforms that do not allow you to specify the load balancer IP, this property is ignored.Note: You do not need to setLoadBalancerIP if you are creating your own Kubernetes service for ingress deployment as documented inExpose Apigee ingress gateway. In production installations, it is recommended to create your own Kubernetes service.

Comment out or delete this section if you are not using it.

ENVIRONMENT_NAMEUse the same name that you used when you created an environment in the UI, as explained in Project and org setup - Step 3: Create an environment group.
*_SERVICE_ACCOUNT_FILEPATHThe path and filename account of the service account JSON files in your corresponding chart directory. Provide the names with the path relative to the chart directory. For example:
  • If themy-hybrid-project-apigee-synchronizer.json file resides in theapigee-env/ chart directory, you only need to provide the file name, such as:
    synchronizer:  "my-hybrid-project-apigee-synchronizer.json"
  • If the file resides in aapigee-env/service-accounts/ directory, you would specify a relative path:
    synchronizer:  "service-accounts/my-hybrid-project-apigee-synchronizer.json"

For non-production environments, the name of the single service account isPROJECT_ID-non-prod.json by default.

For production environments, the name of the service account key file that you generated with thecreate-service-account tool inStep 4: Create service accounts.

You can see the service account files in each corresponding chart directory.

The default names of the and corresponding chart directories for the service accounts are:

Service accountfile nameChart directory
Storage Object AdminPROJECT_ID-apigee-cassandra.jsonapigee-datastore/
Logs WriterPROJECT_ID-apigee-logger.jsonapigee-telemetry/
Apigee Connect AgentPROJECT_ID-apigee-mart.jsonapigee-org/
Monitoring Metric WriterPROJECT_ID-apigee-metrics.jsonapigee-telemetry/
No role requiredPROJECT_ID-apigee-runtime.jsonapigee-env/
Apigee Synchronizer ManagerPROJECT_ID-apigee-synchronizer.jsonapigee-env/
Apigee Analytics AgentPROJECT_ID-apigee-udca.jsonapigee-org/
Apigee Runtime AgentPROJECT_ID-apigee-watcher.jsonapigee-org/
Note:Bothmart andconnectAgent use theapigee-mart service account.
*_SERVICE_ACCOUNT_EMAILThe service account email addresses for the Google service accounts (GSA) you need to supply if you are usingWorkload Identity on GKE. These are the service accounts you created inStep 4: Create service accounts. You can find the email addresses for the service accounts with the following command:
gcloud iam service-accounts list --project ${PROJECT_ID} --filter "apigee"
Note: If you want to create a security perimeter around your cluster and related Cloud services, you can configure one using Google Cloud Virtual Private Cloud (VPC) Service Controls with Apigee hybrid. See Using VPC Service Controls with Apigee and Apigee hybrid for instructions.

Summary

The configuration file tells Kubernetes how to deploy the hybrid components to a cluster. Next, you will enable synchronizer access so the Apigee runtime and management planes will be able to communicate.

123456(NEXT) Step 7: Enable Synchronizer access89101112

Except as otherwise noted, the content of this page is licensed under theCreative Commons Attribution 4.0 License, and code samples are licensed under theApache 2.0 License. For details, see theGoogle Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2026-02-19 UTC.