En este paso, se explica cómo crear el espacio de nombres apigee de Kubernetes en el que operan los componentes de Apigee Hybrid.
Crea el espacio de nombres que se usará para los recursos híbridos de Apigee.
Este debe coincidir con el campo namespace en el archivo overrides.yaml. Si no está presente en overrides.yaml, el espacio de nombres predeterminado es apigee.
Verifica si el espacio de nombres ya existe:
kubectl get namespace APIGEE_NAMESPACE
Si el espacio de nombres existe, el resultado incluirá lo siguiente:
NAME STATUS AGE
apigee Active 1d
Si el espacio de nombres aún no existe, créalo:
kubectl create namespace APIGEE_NAMESPACE
Ahora que el híbrido tiene espacio para operar, el siguiente paso es crear las cuentas de servicio y las credenciales de Google Cloud necesarias para configurar los componentes del entorno de ejecución híbrido.
[[["Fácil de comprender","easyToUnderstand","thumb-up"],["Resolvió mi problema","solvedMyProblem","thumb-up"],["Otro","otherUp","thumb-up"]],[["Difícil de entender","hardToUnderstand","thumb-down"],["Información o código de muestra incorrectos","incorrectInformationOrSampleCode","thumb-down"],["Faltan la información o los ejemplos que necesito","missingTheInformationSamplesINeed","thumb-down"],["Problema de traducción","translationIssue","thumb-down"],["Otro","otherDown","thumb-down"]],["Última actualización: 2025-03-12 (UTC)"],[[["This content explains the process of creating the `apigee` Kubernetes namespace, which is essential for housing all Apigee hybrid components in versions 1.13 and later."],["The namespace specified should match the `namespace` field in the `overrides.yaml` file, with `apigee` as the default if not explicitly defined."],["You can verify the existence of the namespace using `kubectl get namespace APIGEE_NAMESPACE` before creating it, which is done via `kubectl create namespace APIGEE_NAMESPACE` if it does not already exist."],["All further configurations will be made in the `apigee` namespace."]]],[]]