Change theme
Help
Press space for more information.
Show links for this issue (Shortcut: i, l)
Copy issue ID
Previous Issue (Shortcut: k)
Next Issue (Shortcut: j)
Sign in to use full features.
Vote: I am impacted
Notification menu
Refresh (Shortcut: Shift+r)
Go home (Shortcut: u)
Pending code changes (auto-populated)
View issue level access limits(Press Alt + Right arrow for more information)
Unintended behavior
View staffing
Description
Problem you have encountered:
The Customer cannot obtain any Java profiling information from their agent which runs in their GKE containers. Getting the following error:
The current version of the profiling agent is triggering the grpc library to make any HTTP/1.0 requests.
What you expected to happen:
The feature to add http/1.1 in grpc-core
Steps to reproduce:
Run the following command manually from the container:
echo "done getting metadata"
TZ='America/Los_Angeles' date +%H:%M:%S
echo "Trying to get token with HTTP 1.1"
curl --http1.1 -Lsv "http://metadata.google.internal/computeMetadata/v1/instance/service-accounts/default/token?alt=text " -H "Metadata-Flavor: Google"
echo " "
echo "Trying to get token with HTTP 1.0"
curl --http1.0 -Lsv "http://metadata.google.internal/computeMetadata/v1/instance/service-accounts/default/token?alt=text " -H "Metadata-Flavor: Google"
echo " "
echo "Trying to get token with HTTP 2.0"
curl --http2 -Lsv "http://metadata.google.internal/computeMetadata/v1/instance/service-accounts/default/token?alt=text " -H "Metadata-Flavor: Google"
echo " "
Other information (workarounds you have tried, documentation consulted, etc):