mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-08 10:35:03 +00:00
gcloud: Thu Jul 20 11:47:24 UTC 2023
This commit is contained in:
parent
b4c2508b12
commit
64e67b443c
325 changed files with 10090 additions and 1806 deletions
|
|
@ -19,6 +19,7 @@ SYNOPSIS
|
|||
[--cluster-version=CLUSTER_VERSION]
|
||||
[--create-subnetwork=[KEY=VALUE,...]]
|
||||
[--database-encryption-key=DATABASE_ENCRYPTION_KEY]
|
||||
[--dataplane-v2-observability-mode=DATAPLANE_V2_OBSERVABILITY_MODE]
|
||||
[--default-max-pods-per-node=DEFAULT_MAX_PODS_PER_NODE]
|
||||
[--disable-default-snat] [--disable-pod-cidr-overprovision]
|
||||
[--disk-size=DISK_SIZE] [--disk-type=DISK_TYPE] [--enable-autorepair]
|
||||
|
|
@ -28,6 +29,7 @@ SYNOPSIS
|
|||
[--enable-dataplane-v2] [--enable-fleet] [--enable-fqdn-network-policy]
|
||||
[--enable-gke-oidc] [--enable-google-cloud-access] [--enable-gvnic]
|
||||
[--enable-identity-service] [--enable-image-streaming]
|
||||
[--enable-insecure-kubelet-readonly-port]
|
||||
[--enable-intra-node-visibility] [--enable-ip-alias]
|
||||
[--enable-kubernetes-alpha]
|
||||
[--enable-kubernetes-unstable-apis=API,[API,...]]
|
||||
|
|
@ -69,11 +71,12 @@ SYNOPSIS
|
|||
[--workload-metadata=WORKLOAD_METADATA] [--workload-pool=WORKLOAD_POOL]
|
||||
[--workload-vulnerability-scanning=WORKLOAD_VULNERABILITY_SCANNING]
|
||||
[--additional-zones=ZONE,[ZONE,...] | --node-locations=ZONE,[ZONE,...]]
|
||||
[--binauthz-policy=BINAUTHZ_POLICY
|
||||
[--binauthz-policy-bindings=[name=BINAUTHZ_POLICY,...]
|
||||
--binauthz-evaluation-mode=BINAUTHZ_EVALUATION_MODE
|
||||
| --enable-binauthz]
|
||||
[--cluster-dns=CLUSTER_DNS --cluster-dns-domain=CLUSTER_DNS_DOMAIN
|
||||
--cluster-dns-scope=CLUSTER_DNS_SCOPE]
|
||||
[--disable-dataplane-v2-metrics | --enable-dataplane-v2-metrics]
|
||||
[[--enable-autoprovisioning
|
||||
: --autoprovisioning-config-file=AUTOPROVISIONING_CONFIG_FILE
|
||||
| [--max-cpu=MAX_CPU --max-memory=MAX_MEMORY
|
||||
|
|
@ -326,6 +329,35 @@ FLAGS
|
|||
For more information, see
|
||||
https://cloud.google.com/kubernetes-engine/docs/how-to/encrypting-secrets.
|
||||
|
||||
--dataplane-v2-observability-mode=DATAPLANE_V2_OBSERVABILITY_MODE
|
||||
Select Advanced Datapath Observability mode for the cluster. Defaults
|
||||
to DISABLED.
|
||||
|
||||
Advanced Datapath Observability allows for a real-time view into
|
||||
pod-to-pod traffic within your cluster.
|
||||
|
||||
Examples:
|
||||
|
||||
$ gcloud alpha container clusters create \
|
||||
--dataplane-v2-observability-mode=DISABLED
|
||||
|
||||
$ gcloud alpha container clusters create \
|
||||
--dataplane-v2-observability-mode=INTERNAL_VPC_LB
|
||||
|
||||
$ gcloud alpha container clusters create \
|
||||
--dataplane-v2-observability-mode=EXTERNAL_LB
|
||||
|
||||
DATAPLANE_V2_OBSERVABILITY_MODE must be one of:
|
||||
|
||||
DISABLED
|
||||
Disables Advanced Datapath Observability.
|
||||
EXTERNAL_LB
|
||||
Makes Advanced Datapath Observability available to the external
|
||||
network.
|
||||
INTERNAL_VPC_LB
|
||||
Makes Advanced Datapath Observability available from the VPC
|
||||
network.
|
||||
|
||||
--default-max-pods-per-node=DEFAULT_MAX_PODS_PER_NODE
|
||||
The default max number of pods per node for node pools in the cluster.
|
||||
|
||||
|
|
@ -482,6 +514,12 @@ FLAGS
|
|||
--enable-image-streaming
|
||||
Specifies whether to enable image streaming on cluster.
|
||||
|
||||
--enable-insecure-kubelet-readonly-port
|
||||
Enables the Kubelet's insecure Read Only Port.
|
||||
|
||||
To disable in an existing cluster, explicitly set flag to
|
||||
--no-enable-insecure-kubelet-readonly-port.
|
||||
|
||||
--enable-intra-node-visibility
|
||||
Enable Intra-node visibility for this cluster.
|
||||
|
||||
|
|
@ -1244,7 +1282,7 @@ FLAGS
|
|||
|
||||
Flags for Binary Authorization:
|
||||
|
||||
--binauthz-policy=BINAUTHZ_POLICY
|
||||
--binauthz-policy-bindings=[name=BINAUTHZ_POLICY,...]
|
||||
The relative resource name of the Binary Authorization policy to
|
||||
audit and/or enforce. GKE policies have the following format:
|
||||
projects/{project_number}/platforms/gke/policies/{policy_id}.
|
||||
|
|
@ -1293,6 +1331,14 @@ FLAGS
|
|||
vpc
|
||||
Configures the Cloud DNS zone to be private to the VPC Network.
|
||||
|
||||
At most one of these can be specified:
|
||||
|
||||
--disable-dataplane-v2-metrics
|
||||
Stops exposing advanced datapath flow metrics on node port.
|
||||
|
||||
--enable-dataplane-v2-metrics
|
||||
Exposes advanced datapath flow metrics on node port.
|
||||
|
||||
Node autoprovisioning
|
||||
|
||||
--enable-autoprovisioning
|
||||
|
|
|
|||
|
|
@ -10,8 +10,10 @@ SYNOPSIS
|
|||
[--cluster-secondary-range-name=NAME]
|
||||
[--cluster-version=CLUSTER_VERSION]
|
||||
[--create-subnetwork=[KEY=VALUE,...]]
|
||||
[--database-encryption-key=DATABASE_ENCRYPTION_KEY] [--enable-fleet]
|
||||
[--enable-google-cloud-access]
|
||||
[--database-encryption-key=DATABASE_ENCRYPTION_KEY]
|
||||
[--dataplane-v2-observability-mode=DATAPLANE_V2_OBSERVABILITY_MODE]
|
||||
[--enable-fleet] [--enable-google-cloud-access]
|
||||
[--enable-insecure-kubelet-readonly-port]
|
||||
[--enable-kubernetes-unstable-apis=API,[API,...]]
|
||||
[--enable-master-global-access] [--fleet-project=PROJECT_ID_OR_NUMBER]
|
||||
[--logging=[COMPONENT,...]] [--monitoring=[COMPONENT,...]]
|
||||
|
|
@ -22,7 +24,7 @@ SYNOPSIS
|
|||
[--workload-policies=WORKLOAD_POLICIES]
|
||||
[--workload-vulnerability-scanning=WORKLOAD_VULNERABILITY_SCANNING]
|
||||
[--binauthz-evaluation-mode=BINAUTHZ_EVALUATION_MODE
|
||||
--binauthz-policy=BINAUTHZ_POLICY]
|
||||
--binauthz-policy-bindings=[name=BINAUTHZ_POLICY,...]]
|
||||
[--enable-master-authorized-networks
|
||||
--master-authorized-networks=NETWORK,[NETWORK,...]]
|
||||
[--enable-private-endpoint
|
||||
|
|
@ -155,6 +157,35 @@ FLAGS
|
|||
For more information, see
|
||||
https://cloud.google.com/kubernetes-engine/docs/how-to/encrypting-secrets.
|
||||
|
||||
--dataplane-v2-observability-mode=DATAPLANE_V2_OBSERVABILITY_MODE
|
||||
Select Advanced Datapath Observability mode for the cluster. Defaults
|
||||
to DISABLED.
|
||||
|
||||
Advanced Datapath Observability allows for a real-time view into
|
||||
pod-to-pod traffic within your cluster.
|
||||
|
||||
Examples:
|
||||
|
||||
$ gcloud alpha container clusters create-auto \
|
||||
--dataplane-v2-observability-mode=DISABLED
|
||||
|
||||
$ gcloud alpha container clusters create-auto \
|
||||
--dataplane-v2-observability-mode=INTERNAL_VPC_LB
|
||||
|
||||
$ gcloud alpha container clusters create-auto \
|
||||
--dataplane-v2-observability-mode=EXTERNAL_LB
|
||||
|
||||
DATAPLANE_V2_OBSERVABILITY_MODE must be one of:
|
||||
|
||||
DISABLED
|
||||
Disables Advanced Datapath Observability.
|
||||
EXTERNAL_LB
|
||||
Makes Advanced Datapath Observability available to the external
|
||||
network.
|
||||
INTERNAL_VPC_LB
|
||||
Makes Advanced Datapath Observability available from the VPC
|
||||
network.
|
||||
|
||||
--enable-fleet
|
||||
Set cluster project as the fleet host project. This will register the
|
||||
cluster to the same project. To register the cluster to a fleet in a
|
||||
|
|
@ -166,6 +197,12 @@ FLAGS
|
|||
Google Cloud can reach the public control plane endpoint of your
|
||||
cluster.
|
||||
|
||||
--enable-insecure-kubelet-readonly-port
|
||||
Enables the Kubelet's insecure Read Only Port.
|
||||
|
||||
To disable in an existing cluster, explicitly set flag to
|
||||
--no-enable-insecure-kubelet-readonly-port.
|
||||
|
||||
--enable-kubernetes-unstable-apis=API,[API,...]
|
||||
Enable Kubernetes beta API features on this cluster. Beta APIs are not
|
||||
expected to be production ready and should be avoided in
|
||||
|
|
@ -342,7 +379,7 @@ FLAGS
|
|||
POLICY_BINDINGS_AND_PROJECT_SINGLETON_POLICY_ENFORCE,
|
||||
PROJECT_SINGLETON_POLICY_ENFORCE.
|
||||
|
||||
--binauthz-policy=BINAUTHZ_POLICY
|
||||
--binauthz-policy-bindings=[name=BINAUTHZ_POLICY,...]
|
||||
The relative resource name of the Binary Authorization policy to
|
||||
audit and/or enforce. GKE policies have the following format:
|
||||
projects/{project_number}/platforms/gke/policies/{policy_id}.
|
||||
|
|
|
|||
|
|
@ -8,12 +8,14 @@ SYNOPSIS
|
|||
| --autoscaling-profile=AUTOSCALING_PROFILE | --clear-fleet-project
|
||||
| --complete-credential-rotation | --complete-ip-rotation
|
||||
| --database-encryption-key=DATABASE_ENCRYPTION_KEY
|
||||
| --dataplane-v2-observability-mode=DATAPLANE_V2_OBSERVABILITY_MODE
|
||||
| --disable-database-encryption | --disable-default-snat
|
||||
| --disable-workload-identity | --enable-autoscaling
|
||||
| --enable-cost-allocation | --enable-fleet
|
||||
| --enable-fqdn-network-policy | --enable-gke-oidc
|
||||
| --enable-google-cloud-access | --enable-identity-service
|
||||
| --enable-image-streaming | --enable-intra-node-visibility
|
||||
| --enable-image-streaming | --enable-insecure-kubelet-readonly-port
|
||||
| --enable-intra-node-visibility
|
||||
| --enable-kubernetes-unstable-apis=API,[API,...]
|
||||
| --enable-l4-ilb-subsetting | --enable-legacy-authorization
|
||||
| --enable-logging-monitoring-system-only
|
||||
|
|
@ -42,7 +44,7 @@ SYNOPSIS
|
|||
| --additional-pod-ipv4-ranges=NAME,[NAME,...]
|
||||
--remove-additional-pod-ipv4-ranges=NAME,[NAME,...]
|
||||
| --additional-zones=[ZONE,...] | --node-locations=ZONE,[ZONE,...]
|
||||
| --binauthz-policy=BINAUTHZ_POLICY
|
||||
| --binauthz-policy-bindings=[name=BINAUTHZ_POLICY,...]
|
||||
--binauthz-evaluation-mode=BINAUTHZ_EVALUATION_MODE
|
||||
| --enable-binauthz | --clear-maintenance-window
|
||||
| --remove-maintenance-exclusion=NAME
|
||||
|
|
@ -58,7 +60,9 @@ SYNOPSIS
|
|||
--enable-resource-consumption-metering
|
||||
--resource-usage-bigquery-dataset=RESOURCE_USAGE_BIGQUERY_DATASET
|
||||
| --cluster-dns=CLUSTER_DNS --cluster-dns-domain=CLUSTER_DNS_DOMAIN
|
||||
--cluster-dns-scope=CLUSTER_DNS_SCOPE | [--enable-autoprovisioning
|
||||
--cluster-dns-scope=CLUSTER_DNS_SCOPE
|
||||
| --disable-dataplane-v2-metrics | --enable-dataplane-v2-metrics
|
||||
| [--enable-autoprovisioning
|
||||
: --autoprovisioning-config-file=AUTOPROVISIONING_CONFIG_FILE
|
||||
| --autoprovisioning-image-type=AUTOPROVISIONING_IMAGE_TYPE
|
||||
--autoprovisioning-locations=ZONE,[ZONE,...]
|
||||
|
|
@ -164,6 +168,35 @@ REQUIRED FLAGS
|
|||
For more information, see
|
||||
https://cloud.google.com/kubernetes-engine/docs/how-to/encrypting-secrets.
|
||||
|
||||
--dataplane-v2-observability-mode=DATAPLANE_V2_OBSERVABILITY_MODE
|
||||
Select Advanced Datapath Observability mode for the cluster. Defaults
|
||||
to DISABLED.
|
||||
|
||||
Advanced Datapath Observability allows for a real-time view into
|
||||
pod-to-pod traffic within your cluster.
|
||||
|
||||
Examples:
|
||||
|
||||
$ gcloud alpha container clusters update \
|
||||
--dataplane-v2-observability-mode=DISABLED
|
||||
|
||||
$ gcloud alpha container clusters update \
|
||||
--dataplane-v2-observability-mode=INTERNAL_VPC_LB
|
||||
|
||||
$ gcloud alpha container clusters update \
|
||||
--dataplane-v2-observability-mode=EXTERNAL_LB
|
||||
|
||||
DATAPLANE_V2_OBSERVABILITY_MODE must be one of:
|
||||
|
||||
DISABLED
|
||||
Disables Advanced Datapath Observability.
|
||||
EXTERNAL_LB
|
||||
Makes Advanced Datapath Observability available to the external
|
||||
network.
|
||||
INTERNAL_VPC_LB
|
||||
Makes Advanced Datapath Observability available from the VPC
|
||||
network.
|
||||
|
||||
--disable-database-encryption
|
||||
Disable database encryption.
|
||||
|
||||
|
|
@ -257,6 +290,12 @@ REQUIRED FLAGS
|
|||
--enable-image-streaming
|
||||
Specifies whether to enable image streaming on cluster.
|
||||
|
||||
--enable-insecure-kubelet-readonly-port
|
||||
Enables the Kubelet's insecure Read Only Port.
|
||||
|
||||
To disable in an existing cluster, explicitly set flag to
|
||||
--no-enable-insecure-kubelet-readonly-port.
|
||||
|
||||
--enable-intra-node-visibility
|
||||
Enable Intra-node visibility for this cluster.
|
||||
|
||||
|
|
@ -701,7 +740,7 @@ REQUIRED FLAGS
|
|||
|
||||
Flags for Binary Authorization:
|
||||
|
||||
--binauthz-policy=BINAUTHZ_POLICY
|
||||
--binauthz-policy-bindings=[name=BINAUTHZ_POLICY,...]
|
||||
The relative resource name of the Binary Authorization policy to
|
||||
audit and/or enforce. GKE policies have the following format:
|
||||
projects/{project_number}/platforms/gke/policies/{policy_id}.
|
||||
|
|
@ -886,6 +925,14 @@ REQUIRED FLAGS
|
|||
vpc
|
||||
Configures the Cloud DNS zone to be private to the VPC Network.
|
||||
|
||||
At most one of these can be specified:
|
||||
|
||||
--disable-dataplane-v2-metrics
|
||||
Stops exposing advanced datapath flow metrics on node port.
|
||||
|
||||
--enable-dataplane-v2-metrics
|
||||
Exposes advanced datapath flow metrics on node port.
|
||||
|
||||
Node autoprovisioning
|
||||
|
||||
--enable-autoprovisioning
|
||||
|
|
|
|||
35
gcloud/alpha/container/fleet/fleetobservability/describe
Normal file
35
gcloud/alpha/container/fleet/fleetobservability/describe
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
NAME
|
||||
gcloud alpha container fleet fleetobservability describe - describes the
|
||||
status of the Fleet Observability Feature resource
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha container fleet fleetobservability describe
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) This command gets the detailed status of the Fleet Observability
|
||||
Feature in a fleet.
|
||||
|
||||
EXAMPLES
|
||||
To describe the Fleet Observability Feature, run:
|
||||
|
||||
$ gcloud alpha container fleet fleetobservability describe
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --access-token-file, --account,
|
||||
--billing-project, --configuration, --flags-file, --flatten, --format,
|
||||
--help, --impersonate-service-account, --log-http, --project, --quiet,
|
||||
--trace-token, --user-output-enabled, --verbosity.
|
||||
|
||||
Run $ gcloud help for details.
|
||||
|
||||
NOTES
|
||||
This command is currently in alpha and might change without notice. If this
|
||||
command fails with API permission errors despite specifying the correct
|
||||
project, you might be trying to access an API with an invitation-only early
|
||||
access allowlist. These variants are also available:
|
||||
|
||||
$ gcloud container fleet fleetobservability describe
|
||||
|
||||
$ gcloud beta container fleet fleetobservability describe
|
||||
|
||||
39
gcloud/alpha/container/fleet/fleetobservability/disable
Normal file
39
gcloud/alpha/container/fleet/fleetobservability/disable
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
NAME
|
||||
gcloud alpha container fleet fleetobservability disable - disables the
|
||||
Fleet Observability Feature
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha container fleet fleetobservability disable [--force]
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) This command disables Fleet Observability Feature in a fleet.
|
||||
|
||||
EXAMPLES
|
||||
To disable the Fleet Observability Feature, run:
|
||||
|
||||
$ gcloud alpha container fleet fleetobservability disable
|
||||
|
||||
FLAGS
|
||||
--force
|
||||
Disable this feature, even if it is currently in use. Force disablement
|
||||
may result in unexpected behavior.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --access-token-file, --account,
|
||||
--billing-project, --configuration, --flags-file, --flatten, --format,
|
||||
--help, --impersonate-service-account, --log-http, --project, --quiet,
|
||||
--trace-token, --user-output-enabled, --verbosity.
|
||||
|
||||
Run $ gcloud help for details.
|
||||
|
||||
NOTES
|
||||
This command is currently in alpha and might change without notice. If this
|
||||
command fails with API permission errors despite specifying the correct
|
||||
project, you might be trying to access an API with an invitation-only early
|
||||
access allowlist. These variants are also available:
|
||||
|
||||
$ gcloud container fleet fleetobservability disable
|
||||
|
||||
$ gcloud beta container fleet fleetobservability disable
|
||||
|
||||
34
gcloud/alpha/container/fleet/fleetobservability/enable
Normal file
34
gcloud/alpha/container/fleet/fleetobservability/enable
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
NAME
|
||||
gcloud alpha container fleet fleetobservability enable - enables the Fleet
|
||||
Observability Feature
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha container fleet fleetobservability enable
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) This command enables Fleet Observability Feature in a fleet.
|
||||
|
||||
EXAMPLES
|
||||
To enable the Fleet Observability Feature, run:
|
||||
|
||||
$ gcloud alpha container fleet fleetobservability enable
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --access-token-file, --account,
|
||||
--billing-project, --configuration, --flags-file, --flatten, --format,
|
||||
--help, --impersonate-service-account, --log-http, --project, --quiet,
|
||||
--trace-token, --user-output-enabled, --verbosity.
|
||||
|
||||
Run $ gcloud help for details.
|
||||
|
||||
NOTES
|
||||
This command is currently in alpha and might change without notice. If this
|
||||
command fails with API permission errors despite specifying the correct
|
||||
project, you might be trying to access an API with an invitation-only early
|
||||
access allowlist. These variants are also available:
|
||||
|
||||
$ gcloud container fleet fleetobservability enable
|
||||
|
||||
$ gcloud beta container fleet fleetobservability enable
|
||||
|
||||
42
gcloud/alpha/container/fleet/fleetobservability/help
Normal file
42
gcloud/alpha/container/fleet/fleetobservability/help
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
NAME
|
||||
gcloud alpha container fleet fleetobservability - manage Fleet
|
||||
Observability Feature
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha container fleet fleetobservability COMMAND
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) Manage Fleet Observability Feature.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --help.
|
||||
|
||||
Run $ gcloud help for details.
|
||||
|
||||
COMMANDS
|
||||
COMMAND is one of the following:
|
||||
|
||||
describe
|
||||
(ALPHA) Describes the status of the Fleet Observability Feature
|
||||
resource.
|
||||
|
||||
disable
|
||||
(ALPHA) Disables the Fleet Observability Feature.
|
||||
|
||||
enable
|
||||
(ALPHA) Enables the Fleet Observability Feature.
|
||||
|
||||
update
|
||||
(ALPHA) Updates the Fleet Observability Feature resource.
|
||||
|
||||
NOTES
|
||||
This command is currently in alpha and might change without notice. If this
|
||||
command fails with API permission errors despite specifying the correct
|
||||
project, you might be trying to access an API with an invitation-only early
|
||||
access allowlist. These variants are also available:
|
||||
|
||||
$ gcloud container fleet fleetobservability
|
||||
|
||||
$ gcloud beta container fleet fleetobservability
|
||||
|
||||
62
gcloud/alpha/container/fleet/fleetobservability/update
Normal file
62
gcloud/alpha/container/fleet/fleetobservability/update
Normal file
|
|
@ -0,0 +1,62 @@
|
|||
NAME
|
||||
gcloud alpha container fleet fleetobservability update - updates the Fleet
|
||||
Observability Feature resource
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha container fleet fleetobservability update
|
||||
[--logging-config=LOGGING_CONFIG] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) This command updates the Fleet Observability Feature in a fleet.
|
||||
|
||||
EXAMPLES
|
||||
To describe the Fleet Observability Feature, run:
|
||||
|
||||
$ gcloud alpha container fleet fleetobservability update \
|
||||
--logging-config=LOGGING-CONFIG
|
||||
|
||||
FLAGS
|
||||
--logging-config=LOGGING_CONFIG
|
||||
Path of the YAML(or JSON) file that contains the logging
|
||||
configurations.
|
||||
|
||||
The JSON file is formatted as follows, with camelCase field naming:
|
||||
|
||||
{
|
||||
"loggingConfig": {
|
||||
"defaultConfig": {
|
||||
"mode": "COPY"
|
||||
},
|
||||
"fleetScopeLogsConfig": {
|
||||
"mode": "MOVE"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
The YAML file is formatted as follows, with camelCase field naming:
|
||||
|
||||
---
|
||||
loggingConfig:
|
||||
defaultConfig:
|
||||
mode: COPY
|
||||
fleetScopeLogsConfig:
|
||||
mode: MOVE
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --access-token-file, --account,
|
||||
--billing-project, --configuration, --flags-file, --flatten, --format,
|
||||
--help, --impersonate-service-account, --log-http, --project, --quiet,
|
||||
--trace-token, --user-output-enabled, --verbosity.
|
||||
|
||||
Run $ gcloud help for details.
|
||||
|
||||
NOTES
|
||||
This command is currently in alpha and might change without notice. If this
|
||||
command fails with API permission errors despite specifying the correct
|
||||
project, you might be trying to access an API with an invitation-only early
|
||||
access allowlist. These variants are also available:
|
||||
|
||||
$ gcloud container fleet fleetobservability update
|
||||
|
||||
$ gcloud beta container fleet fleetobservability update
|
||||
|
||||
|
|
@ -54,6 +54,9 @@ GROUPS
|
|||
features
|
||||
(ALPHA) Manage Hub Feature resources.
|
||||
|
||||
fleetobservability
|
||||
(ALPHA) Manage Fleet Observability Feature.
|
||||
|
||||
identity-service
|
||||
(ALPHA) Manage Identity Service Feature.
|
||||
|
||||
|
|
|
|||
35
gcloud/alpha/container/hub/fleetobservability/describe
Normal file
35
gcloud/alpha/container/hub/fleetobservability/describe
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
NAME
|
||||
gcloud alpha container hub fleetobservability describe - describes the
|
||||
status of the Fleet Observability Feature resource
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha container hub fleetobservability describe
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) This command gets the detailed status of the Fleet Observability
|
||||
Feature in a fleet.
|
||||
|
||||
EXAMPLES
|
||||
To describe the Fleet Observability Feature, run:
|
||||
|
||||
$ gcloud alpha container hub fleetobservability describe
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --access-token-file, --account,
|
||||
--billing-project, --configuration, --flags-file, --flatten, --format,
|
||||
--help, --impersonate-service-account, --log-http, --project, --quiet,
|
||||
--trace-token, --user-output-enabled, --verbosity.
|
||||
|
||||
Run $ gcloud help for details.
|
||||
|
||||
NOTES
|
||||
This command is currently in alpha and might change without notice. If this
|
||||
command fails with API permission errors despite specifying the correct
|
||||
project, you might be trying to access an API with an invitation-only early
|
||||
access allowlist. These variants are also available:
|
||||
|
||||
$ gcloud container hub fleetobservability describe
|
||||
|
||||
$ gcloud beta container hub fleetobservability describe
|
||||
|
||||
39
gcloud/alpha/container/hub/fleetobservability/disable
Normal file
39
gcloud/alpha/container/hub/fleetobservability/disable
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
NAME
|
||||
gcloud alpha container hub fleetobservability disable - disables the Fleet
|
||||
Observability Feature
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha container hub fleetobservability disable [--force]
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) This command disables Fleet Observability Feature in a fleet.
|
||||
|
||||
EXAMPLES
|
||||
To disable the Fleet Observability Feature, run:
|
||||
|
||||
$ gcloud alpha container hub fleetobservability disable
|
||||
|
||||
FLAGS
|
||||
--force
|
||||
Disable this feature, even if it is currently in use. Force disablement
|
||||
may result in unexpected behavior.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --access-token-file, --account,
|
||||
--billing-project, --configuration, --flags-file, --flatten, --format,
|
||||
--help, --impersonate-service-account, --log-http, --project, --quiet,
|
||||
--trace-token, --user-output-enabled, --verbosity.
|
||||
|
||||
Run $ gcloud help for details.
|
||||
|
||||
NOTES
|
||||
This command is currently in alpha and might change without notice. If this
|
||||
command fails with API permission errors despite specifying the correct
|
||||
project, you might be trying to access an API with an invitation-only early
|
||||
access allowlist. These variants are also available:
|
||||
|
||||
$ gcloud container hub fleetobservability disable
|
||||
|
||||
$ gcloud beta container hub fleetobservability disable
|
||||
|
||||
33
gcloud/alpha/container/hub/fleetobservability/enable
Normal file
33
gcloud/alpha/container/hub/fleetobservability/enable
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
NAME
|
||||
gcloud alpha container hub fleetobservability enable - enables the Fleet
|
||||
Observability Feature
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha container hub fleetobservability enable [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) This command enables Fleet Observability Feature in a fleet.
|
||||
|
||||
EXAMPLES
|
||||
To enable the Fleet Observability Feature, run:
|
||||
|
||||
$ gcloud alpha container hub fleetobservability enable
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --access-token-file, --account,
|
||||
--billing-project, --configuration, --flags-file, --flatten, --format,
|
||||
--help, --impersonate-service-account, --log-http, --project, --quiet,
|
||||
--trace-token, --user-output-enabled, --verbosity.
|
||||
|
||||
Run $ gcloud help for details.
|
||||
|
||||
NOTES
|
||||
This command is currently in alpha and might change without notice. If this
|
||||
command fails with API permission errors despite specifying the correct
|
||||
project, you might be trying to access an API with an invitation-only early
|
||||
access allowlist. These variants are also available:
|
||||
|
||||
$ gcloud container hub fleetobservability enable
|
||||
|
||||
$ gcloud beta container hub fleetobservability enable
|
||||
|
||||
42
gcloud/alpha/container/hub/fleetobservability/help
Normal file
42
gcloud/alpha/container/hub/fleetobservability/help
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
NAME
|
||||
gcloud alpha container hub fleetobservability - manage Fleet Observability
|
||||
Feature
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha container hub fleetobservability COMMAND
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) Manage Fleet Observability Feature.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --help.
|
||||
|
||||
Run $ gcloud help for details.
|
||||
|
||||
COMMANDS
|
||||
COMMAND is one of the following:
|
||||
|
||||
describe
|
||||
(ALPHA) Describes the status of the Fleet Observability Feature
|
||||
resource.
|
||||
|
||||
disable
|
||||
(ALPHA) Disables the Fleet Observability Feature.
|
||||
|
||||
enable
|
||||
(ALPHA) Enables the Fleet Observability Feature.
|
||||
|
||||
update
|
||||
(ALPHA) Updates the Fleet Observability Feature resource.
|
||||
|
||||
NOTES
|
||||
This command is currently in alpha and might change without notice. If this
|
||||
command fails with API permission errors despite specifying the correct
|
||||
project, you might be trying to access an API with an invitation-only early
|
||||
access allowlist. These variants are also available:
|
||||
|
||||
$ gcloud container hub fleetobservability
|
||||
|
||||
$ gcloud beta container hub fleetobservability
|
||||
|
||||
62
gcloud/alpha/container/hub/fleetobservability/update
Normal file
62
gcloud/alpha/container/hub/fleetobservability/update
Normal file
|
|
@ -0,0 +1,62 @@
|
|||
NAME
|
||||
gcloud alpha container hub fleetobservability update - updates the Fleet
|
||||
Observability Feature resource
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha container hub fleetobservability update
|
||||
[--logging-config=LOGGING_CONFIG] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) This command updates the Fleet Observability Feature in a fleet.
|
||||
|
||||
EXAMPLES
|
||||
To describe the Fleet Observability Feature, run:
|
||||
|
||||
$ gcloud alpha container hub fleetobservability update \
|
||||
--logging-config=LOGGING-CONFIG
|
||||
|
||||
FLAGS
|
||||
--logging-config=LOGGING_CONFIG
|
||||
Path of the YAML(or JSON) file that contains the logging
|
||||
configurations.
|
||||
|
||||
The JSON file is formatted as follows, with camelCase field naming:
|
||||
|
||||
{
|
||||
"loggingConfig": {
|
||||
"defaultConfig": {
|
||||
"mode": "COPY"
|
||||
},
|
||||
"fleetScopeLogsConfig": {
|
||||
"mode": "MOVE"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
The YAML file is formatted as follows, with camelCase field naming:
|
||||
|
||||
---
|
||||
loggingConfig:
|
||||
defaultConfig:
|
||||
mode: COPY
|
||||
fleetScopeLogsConfig:
|
||||
mode: MOVE
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --access-token-file, --account,
|
||||
--billing-project, --configuration, --flags-file, --flatten, --format,
|
||||
--help, --impersonate-service-account, --log-http, --project, --quiet,
|
||||
--trace-token, --user-output-enabled, --verbosity.
|
||||
|
||||
Run $ gcloud help for details.
|
||||
|
||||
NOTES
|
||||
This command is currently in alpha and might change without notice. If this
|
||||
command fails with API permission errors despite specifying the correct
|
||||
project, you might be trying to access an API with an invitation-only early
|
||||
access allowlist. These variants are also available:
|
||||
|
||||
$ gcloud container hub fleetobservability update
|
||||
|
||||
$ gcloud beta container hub fleetobservability update
|
||||
|
||||
|
|
@ -54,6 +54,9 @@ GROUPS
|
|||
features
|
||||
(ALPHA) Manage Hub Feature resources.
|
||||
|
||||
fleetobservability
|
||||
(ALPHA) Manage Fleet Observability Feature.
|
||||
|
||||
identity-service
|
||||
(ALPHA) Manage Identity Service Feature.
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue