Skip to content

Commit

Permalink
feat: add APIs for GKE Control Plane Logs
Browse files Browse the repository at this point in the history
---
feat: GKE cluster's control plan/node-pool network isolation

Users now can change the network isolation for your public cluster's control plane.
By default, when a new public cluster is created, GKE assigns a public IP address (external endpoint) to the control plane and provisions
public nodes. New APIs allows to change cluster network isolation of the control plane and/or node-pool from the internet

---
feat: add nodeconfig resource_labels api

---
feat: add API to enable GKE Gateway controller
PiperOrigin-RevId: 486164478

Source-Link: googleapis/googleapis@30e2c3b

Source-Link: googleapis/googleapis-gen@73ec334
Copy-Tag: eyJwIjoiYXBpcy9Hb29nbGUuQ2xvdWQuQ29udGFpbmVyLlYxLy5Pd2xCb3QueWFtbCIsImgiOiI3M2VjMzM0ODk5MGZiMzA4ZDNiNjAwYTA5NDBhZTg1MmQ0NzI0N2VlIn0=
  • Loading branch information
gcf-owl-bot[bot] authored and jskeet committed Nov 7, 2022
1 parent f94d859 commit 45f1266
Show file tree
Hide file tree
Showing 5 changed files with 1,935 additions and 1,023 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ public async Task UpdateNodePoolRequestObjectAsync()
ConfidentialNodes = new ConfidentialNodes(),
Gvnic = new VirtualNIC(),
LoggingConfig = new NodePoolLoggingConfig(),
ResourceLabels = new ResourceLabels(),
};
// Make the request
Operation response = await clusterManagerClient.UpdateNodePoolAsync(request);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ public void UpdateNodePoolRequestObject()
ConfidentialNodes = new ConfidentialNodes(),
Gvnic = new VirtualNIC(),
LoggingConfig = new NodePoolLoggingConfig(),
ResourceLabels = new ResourceLabels(),
};
// Make the request
Operation response = clusterManagerClient.UpdateNodePool(request);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -426,6 +426,7 @@ public void UpdateNodePoolRequestObject()
ConfidentialNodes = new ConfidentialNodes(),
Gvnic = new VirtualNIC(),
LoggingConfig = new NodePoolLoggingConfig(),
ResourceLabels = new ResourceLabels(),
};
// Make the request
Operation response = clusterManagerClient.UpdateNodePool(request);
Expand Down Expand Up @@ -458,6 +459,7 @@ public async Task UpdateNodePoolRequestObjectAsync()
ConfidentialNodes = new ConfidentialNodes(),
Gvnic = new VirtualNIC(),
LoggingConfig = new NodePoolLoggingConfig(),
ResourceLabels = new ResourceLabels(),
};
// Make the request
Operation response = await clusterManagerClient.UpdateNodePoolAsync(request);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1528,6 +1528,7 @@ public void UpdateNodePoolRequestObject()
ConfidentialNodes = new ConfidentialNodes(),
Gvnic = new VirtualNIC(),
LoggingConfig = new NodePoolLoggingConfig(),
ResourceLabels = new ResourceLabels(),
};
Operation expectedResponse = new Operation
{
Expand Down Expand Up @@ -1599,6 +1600,7 @@ public void UpdateNodePoolRequestObject()
ConfidentialNodes = new ConfidentialNodes(),
Gvnic = new VirtualNIC(),
LoggingConfig = new NodePoolLoggingConfig(),
ResourceLabels = new ResourceLabels(),
};
Operation expectedResponse = new Operation
{
Expand Down
Loading

0 comments on commit 45f1266

Please sign in to comment.