-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
234 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -180,6 +180,9 @@ below. | |
Options are `VPC_NATIVE` or `ROUTES`. `VPC_NATIVE` enables [IP aliasing](https://cloud.google.com/kubernetes-engine/docs/how-to/ip-aliases), | ||
and requires the `ip_allocation_policy` block to be defined. By default when this field is unspecified, GKE will create a `ROUTES`-based cluster. | ||
|
||
* `logging_config` - (Optional) Logging configuration for the cluster. | ||
Structure is documented below. | ||
|
||
* `logging_service` - (Optional) The logging service that the cluster should | ||
write logs to. Available options include `logging.googleapis.com`(Legacy Stackdriver), | ||
`logging.googleapis.com/kubernetes`(Stackdriver Kubernetes Engine Logging), and `none`. Defaults to `logging.googleapis.com/kubernetes` | ||
|
@@ -213,6 +216,9 @@ Structure is documented below. This has been deprecated as of GKE 1.19. | |
to the datasource. A region can have a different set of supported versions than its corresponding zones, and not all zones in a | ||
region are guaranteed to support the same version. | ||
|
||
* `monitoring_config` - (Optional) Monitoring configuration for the cluster. | ||
Structure is documented below. | ||
|
||
* `monitoring_service` - (Optional) The monitoring service that the cluster | ||
should write metrics to. | ||
Automatically send metrics from pods in the cluster to the Google Cloud Monitoring API. | ||
|
@@ -453,6 +459,16 @@ The `authenticator_groups_config` block supports: | |
|
||
* `security_group` - (Required) The name of the RBAC security group for use with Google security groups in Kubernetes RBAC. Group name must be in format `[email protected]`. | ||
|
||
The `logging_config` block supports: | ||
|
||
* `enable_components` - (Required) The GKE components exposing logs. Supported values include: | ||
`SYSTEM_COMPONENTS` and `WORKLOADS`. | ||
|
||
The `monitoring_config` block supports: | ||
|
||
* `enable_components` - (Required) The GKE components exposing logs. Only `SYSTEM_COMPONENTS` | ||
is supported. | ||
|
||
The `maintenance_policy` block supports: | ||
* `daily_maintenance_window` - (Optional) structure documented below. | ||
* `recurring_window` - (Optional) structure documented below | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters