Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: [networkmanagement] add DNS endpoint of Google Kubernetes Engine cluster control plane #5790

Merged
merged 4 commits into from
Nov 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -220,10 +220,16 @@ message Endpoint {
optional LoadBalancerType load_balancer_type = 16
[(google.api.field_behavior) = OUTPUT_ONLY];

// A cluster URI for [Google Kubernetes Engine
// master](https://cloud.google.com/kubernetes-engine/docs/concepts/cluster-architecture).
// A cluster URI for [Google Kubernetes Engine cluster control
// plane](https://cloud.google.com/kubernetes-engine/docs/concepts/cluster-architecture).
string gke_master_cluster = 7;

// DNS endpoint of [Google Kubernetes Engine cluster control
// plane](https://cloud.google.com/kubernetes-engine/docs/concepts/cluster-architecture).
// Requires gke_master_cluster to be set, can't be used simultaneoulsly with
// ip_address or network. Applicable only to destination endpoint.
string fqdn = 19;

// A [Cloud SQL](https://cloud.google.com/sql) instance URI.
string cloud_sql_instance = 8;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1482,6 +1482,10 @@ message DropInfo {
// Packet from the unknown peered network is dropped due to no known route
// from the source network to the destination IP address.
NO_KNOWN_ROUTE_FROM_PEERED_NETWORK_TO_DESTINATION = 82;

// Sending packets processed by the Private NAT Gateways to the Private
// Service Connect endpoints is not supported.
PRIVATE_NAT_TO_PSC_ENDPOINT_UNSUPPORTED = 83;
}

// Cause that the packet is dropped.
Expand Down Expand Up @@ -1509,11 +1513,14 @@ message GKEMasterInfo {
// URI of a GKE cluster network.
string cluster_network_uri = 4;

// Internal IP address of a GKE cluster master.
// Internal IP address of a GKE cluster control plane.
string internal_ip = 5;

// External IP address of a GKE cluster master.
// External IP address of a GKE cluster control plane.
string external_ip = 6;

// DNS endpoint of a GKE cluster control plane.
string dns_endpoint = 7;
}

// For display only. Metadata associated with a Cloud SQL instance.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -220,10 +220,16 @@ message Endpoint {
optional LoadBalancerType load_balancer_type = 16
[(google.api.field_behavior) = OUTPUT_ONLY];

// A cluster URI for [Google Kubernetes Engine
// master](https://cloud.google.com/kubernetes-engine/docs/concepts/cluster-architecture).
// A cluster URI for [Google Kubernetes Engine cluster control
// plane](https://cloud.google.com/kubernetes-engine/docs/concepts/cluster-architecture).
string gke_master_cluster = 7;

// DNS endpoint of [Google Kubernetes Engine cluster control
// plane](https://cloud.google.com/kubernetes-engine/docs/concepts/cluster-architecture).
// Requires gke_master_cluster to be set, can't be used simultaneoulsly with
// ip_address or network. Applicable only to destination endpoint.
string fqdn = 19;

// A [Cloud SQL](https://cloud.google.com/sql) instance URI.
string cloud_sql_instance = 8;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1486,6 +1486,10 @@ message DropInfo {
// Packet from the unknown peered network is dropped due to no known route
// from the source network to the destination IP address.
NO_KNOWN_ROUTE_FROM_PEERED_NETWORK_TO_DESTINATION = 82;

// Sending packets processed by the Private NAT Gateways to the Private
// Service Connect endpoints is not supported.
PRIVATE_NAT_TO_PSC_ENDPOINT_UNSUPPORTED = 83;
}

// Cause that the packet is dropped.
Expand Down Expand Up @@ -1513,11 +1517,14 @@ message GKEMasterInfo {
// URI of a GKE cluster network.
string cluster_network_uri = 4;

// Internal IP address of a GKE cluster master.
// Internal IP address of a GKE cluster control plane.
string internal_ip = 5;

// External IP address of a GKE cluster master.
// External IP address of a GKE cluster control plane.
string external_ip = 6;

// DNS endpoint of a GKE cluster control plane.
string dns_endpoint = 7;
}

// For display only. Metadata associated with a Cloud SQL instance.
Expand Down
30 changes: 28 additions & 2 deletions packages/google-cloud-networkmanagement/protos/protos.d.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading