- HTTP request
- Path parameters
- Query parameters
- Request body
- Response body
- Authorization scopes
- ConnectAgentResource
- TypeMeta
- Examples
- Try it!
Generates the manifest for deployment of the GKE connect agent.
This method is used internally by Google-provided libraries. Most clients should not need to call this method directly.
HTTP request
GET https://gkehub.googleapis.com/v1/{name=projects/*/locations/*/memberships/*}:generateConnectManifest
The URL uses gRPC Transcoding syntax.
Path parameters
Parameters | |
---|---|
name |
Required. The Membership resource name the Agent will associate with, in the format Authorization requires the following IAM permission on the specified resource
|
Query parameters
Parameters | |
---|---|
namespace |
Optional. Namespace for GKE Connect agent resources. Defaults to The Connect Agent is authorized automatically when run in the default namespace. Otherwise, explicit authorization must be granted with an additional IAM binding. |
proxy |
Optional. URI of a proxy if connectivity from the agent to gkeconnect.googleapis.com requires the use of a proxy. Format must be in the form A base64-encoded string. |
version |
Optional. The Connect agent version to use. Defaults to the most current version. |
isUpgrade |
Optional. If true, generate the resources for upgrade only. Some resources generated only for installation (e.g. secrets) will be excluded. |
registry |
Optional. The registry to fetch the connect agent image from. Defaults to gcr.io/gkeconnect. |
imagePullSecretContent |
Optional. The image pull secret content for the registry, if not public. A base64-encoded string. |
Request body
The request body must be empty.
Response body
GenerateConnectManifestResponse contains manifest information for installing/upgrading a Connect agent.
If successful, the response body contains data with the following structure:
JSON representation |
---|
{
"manifest": [
{
object ( |
Fields | |
---|---|
manifest[] |
The ordered list of Kubernetes resources that need to be applied to the cluster for GKE Connect agent installation/upgrade. |
Authorization scopes
Requires the following OAuth scope:
https://www.googleapis.com/auth/cloud-platform
For more information, see the Authentication Overview.
ConnectAgentResource
ConnectAgentResource represents a Kubernetes resource manifest for Connect Agent deployment.
JSON representation |
---|
{
"type": {
object ( |
Fields | |
---|---|
type |
Kubernetes type of the resource. |
manifest |
YAML manifest of the resource. |
TypeMeta
TypeMeta is the type information needed for content unmarshalling of Kubernetes resources in the manifest.
JSON representation |
---|
{ "kind": string, "apiVersion": string } |
Fields | |
---|---|
kind |
Kind of the resource (e.g. Deployment). |
apiVersion |
APIVersion of the resource (e.g. v1). |