I am installing Apigee Hybrid following the instructions at https://cloud.google.com/apigee/docs/hybrid/v1.13/install-helm-charts.
I am currently on Step 10 in Part 2: Hybrid runtime setup.
I have successfully installed the components: Apigee Operator/Controller, datastore, telemetry, Redis, and ingress manager. However, when installing the organization, I encountered an error where the apigee-udca container cannot run.
Here is the error log:
----------------------------------------------------------------------------------
{"level":"info","ts":1734264178.4265897,"caller":"aau/main.go:37","msg":"Starting aau"}
{"level":"info","ts":1734264178.4674225,"caller":"log/logger.go:60","msg":"No http forward proxy configured"}
{"level":"info","ts":1734264178.4676564,"caller":"log/logger.go:60","msg":"No http forward proxy configured"}
{"level":"error","ts":1734264179.0240057,"caller":"log/logger.go:85","msg":"Error while fetching runtime config. Got non 2xx status code 404","stacktrace":"edge-internal.git.corp.google.com/uap/aau/log.Errorf\n\t/go/src/edge-internal/uap/aau/log/logger.go:85\nedge-internal.git.corp.google.com/uap/aau/client.(*client).setTenantBuckets\n\t/go/src/edge-internal/uap/aau/client/client.go:362\nedge-internal.git.corp.google.com/uap/aau/client.(*client).InitializeClient\n\t/go/src/edge-internal/uap/aau/client/client.go:396\nedge-internal.git.corp.google.com/uap/aau/manager.NewManager\n\t/go/src/edge-internal/uap/aau/manager/manager.go:70\nmain.main\n\t/go/src/edge-internal/uap/aau/main.go:45\nruntime.main\n\t/usr/local/go/src/runtime/proc.go:271"}
{"level":"fatal","ts":1734264179.024604,"caller":"log/logger.go:95","msg":"Unable to initialize client for AAU Manager. Details: http error received with code = 404 for service = \"RUNTIME_CONFIG\" with message = \"<!DOCTYPE html>\\n<html lang=en>\\n <meta charset=utf-8>\\n <meta name=viewport content=\\\"initial-scale=1, minimum-scale=1, width=device-width\\\">\\n <title>Error 404 (Not Found)!!1</title>\\n <style>\\n *{margin:0;padding:0}html,code{font:15px/22px arial,sans-serif}html{background:#fff;color:#222;padding:15px}body{margin:7% auto 0;max-width:390px;min-height:180px;padding:30px 0 15px}* > body{background:url(//www.google.com/images/errors/robot.png) 100% 5px no-repeat;padding-right:205px}p{margin:11px 0 22px;overflow:hidden}ins{color:#777;text-decoration:none}a img{border:0}@media screen and (max-width:772px){body{background:none;margin-top:0;max-width:none;padding-right:0}}#logo{background:url(//www.google.com/images/branding/googlelogo/1x/googlelogo_color_150x54dp.png) no-repeat;margin-left:-5px}@media only screen and (min-resolution:192dpi){#logo{background:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) no-repeat 0% 0%/100% 100%;-moz-border-image:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) 0}}@media only screen and (-webkit-min-device-pixel-ratio:2){#logo{background:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) no-repeat;-webkit-background-size:100% 100%}}#logo{display:inline-block;height:54px;width:150px}\\n </style>\\n <a href=//www.google.com/><span id=logo aria-label=Google></span></a>\\n <p><b>404.</b> <ins>That’s an error.</ins>\\n <p>The requested URL <code>/v1/organizations/apigee-demo-443715/runtimeConfig</code> was not found on this server. <ins>That’s all we know.</ins>\\n\"","stacktrace":"edge-internal.git.corp.google.com/uap/aau/log.Fatalf\n\t/go/src/edge-internal/uap/aau/log/logger.go:95\nedge-internal.git.corp.google.com/uap/aau/manager.NewManager\n\t/go/src/edge-internal/uap/aau/manager/manager.go:72\nmain.main\n\t/go/src/edge-internal/uap/aau/main.go:45\nruntime.main\n\t/usr/local/go/src/runtime/proc.go:271"}
-------------------------------------------------------------------------------------------------------------------
I look forward to your support to continue the next steps.
Solved! Go to Solution.
> I am unable to complete Step 7: Enable Control Plane access.
The "PATCH" HTTP method should be used, not POST. It's a documentation bug we will correct. Please use:
curl -X PATCH -H "Authoriztion: Bearer $TOKEN" 'https://apigee.googleapis.com/v1/organizations/bmenasha-compute-service-1/controlPlaneAccess' .....
> I attempted to deploy the Helm chart for apigee-virtualhost,
This can happen when you don't define the values for the "virtualhosts" property or more likely the supplied "envgroup" property is set to a name that is not among the names in the "virtualhosts" value.
For example. if you define one virtualhost like
virtualhosts:
- name: lab-apigee2024-group-release
selector:
app: apigee-ingressgateway
ingress_name: INGRESS_NAME
sslCertPath: PATH_TO_CERT_FILE
sslKeyPath: PATH_TO_KEY_FILE
you must deploy with envgroup set to lab-apigee2024-group-release
helm upgrade my-chart-name apigee-virtualhost/ --install --namespace apigee --atomic --set envgroup=lab-apigee2024-group-release -f overrides.yaml