mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-18 06:47:12 +00:00
gcloud: Wed Mar 27 09:52:07 UTC 2024
This commit is contained in:
parent
5b4fac9106
commit
4ade1b44cc
148 changed files with 5765 additions and 482 deletions
|
|
@ -7,13 +7,15 @@ SYNOPSIS
|
|||
(ENVIRONMENT : --location=LOCATION) [--airflow-configs=[KEY=VALUE,...]]
|
||||
[--async] [--cloud-sql-machine-type=CLOUD_SQL_MACHINE_TYPE]
|
||||
[--cloud-sql-preferred-zone=CLOUD_SQL_PREFERRED_ZONE]
|
||||
[--composer-internal-ipv4-cidr-block=COMPOSER_INTERNAL_IPV4_CIDR_BLOCK]
|
||||
[--disable-logs-in-cloud-logging-only] [--disk-size=DISK_SIZE]
|
||||
[--enable-high-resilience] [--enable-logs-in-cloud-logging-only]
|
||||
[--env-variables=[NAME=VALUE,...]]
|
||||
[--environment-size=ENVIRONMENT_SIZE] [--labels=[KEY=VALUE,...]]
|
||||
[--machine-type=MACHINE_TYPE] [--node-count=NODE_COUNT]
|
||||
[--oauth-scopes=[SCOPE,...]] [--python-version=PYTHON_VERSION]
|
||||
[--service-account=SERVICE_ACCOUNT] [--storage-bucket=STORAGE_BUCKET]
|
||||
[--machine-type=MACHINE_TYPE] [--network-attachment=NETWORK_ATTACHMENT]
|
||||
[--node-count=NODE_COUNT] [--oauth-scopes=[SCOPE,...]]
|
||||
[--python-version=PYTHON_VERSION] [--service-account=SERVICE_ACCOUNT]
|
||||
[--storage-bucket=STORAGE_BUCKET] [--support-web-server-plugins]
|
||||
[--tags=[TAG,...]] [--web-server-machine-type=WEB_SERVER_MACHINE_TYPE]
|
||||
[--zone=ZONE]
|
||||
[--airflow-version=AIRFLOW_VERSION | --image-version=IMAGE_VERSION]
|
||||
|
|
@ -30,8 +32,13 @@ SYNOPSIS
|
|||
--max-pods-per-node=MAX_PODS_PER_NODE
|
||||
--services-ipv4-cidr=SERVICES_IPV4_CIDR
|
||||
--services-secondary-range-name=SERVICES_SECONDARY_RANGE_NAME]
|
||||
[--dag-processor-count=DAG_PROCESSOR_COUNT
|
||||
--dag-processor-cpu=DAG_PROCESSOR_CPU
|
||||
--dag-processor-memory=DAG_PROCESSOR_MEMORY
|
||||
--dag-processor-storage=DAG_PROCESSOR_STORAGE]
|
||||
[--disable-cloud-data-lineage-integration
|
||||
| --enable-cloud-data-lineage-integration]
|
||||
[--disable-private-builds-only | --enable-private-builds-only]
|
||||
[--enable-master-authorized-networks
|
||||
--master-authorized-networks=[NETWORK,...]]
|
||||
[--enable-scheduled-snapshot-creation
|
||||
|
|
@ -128,6 +135,11 @@ FLAGS
|
|||
--cloud-sql-preferred-zone=CLOUD_SQL_PREFERRED_ZONE
|
||||
Select cloud sql preferred zone, supported for Composer 2 Environments.
|
||||
|
||||
--composer-internal-ipv4-cidr-block=COMPOSER_INTERNAL_IPV4_CIDR_BLOCK
|
||||
The IP range in CIDR notation to use internally by Cloud Composer. This
|
||||
should have a netmask length of 20. Can be specified for Composer 3 or
|
||||
greater.
|
||||
|
||||
--disable-logs-in-cloud-logging-only
|
||||
Disable logs in cloud logging only, supported for Composer 2
|
||||
Environments.
|
||||
|
|
@ -171,6 +183,10 @@ FLAGS
|
|||
(https://cloud.google.com/compute/docs/machine-types) to use for nodes.
|
||||
For example --machine-type=n1-standard-1.
|
||||
|
||||
--network-attachment=NETWORK_ATTACHMENT
|
||||
Cloud Composer Network Attachment, which provides connectivity with a
|
||||
user's VPC network, supported in Composer 3 environments or greater.
|
||||
|
||||
--node-count=NODE_COUNT
|
||||
The number of nodes to create to run the environment.
|
||||
|
||||
|
|
@ -198,6 +214,10 @@ FLAGS
|
|||
Name of an exisiting Cloud Storage bucket to be used by the
|
||||
environment. Supported only for Composer 2.4.X and above.
|
||||
|
||||
--support-web-server-plugins
|
||||
Enable the support for web server plugins, supported in Composer 3 or
|
||||
greater.
|
||||
|
||||
--tags=[TAG,...]
|
||||
The set of instance tags applied to all node VMs. Tags are used to
|
||||
identify valid sources or targets for network firewalls. Each tag
|
||||
|
|
@ -385,6 +405,27 @@ FLAGS
|
|||
When used with Composer 1.x, cannot be specified unless
|
||||
--enable-ip-alias is also specified.
|
||||
|
||||
Group of arguments for setting dag processor settings in Composer 3 or
|
||||
greater.
|
||||
|
||||
--dag-processor-count=DAG_PROCESSOR_COUNT
|
||||
Number of dag processors, supported in Composer 3 environments or
|
||||
greater.
|
||||
|
||||
--dag-processor-cpu=DAG_PROCESSOR_CPU
|
||||
CPU allocated to Airflow dag processor, supported in Composer 3
|
||||
environments or greater.
|
||||
|
||||
--dag-processor-memory=DAG_PROCESSOR_MEMORY
|
||||
Memory allocated to Airflow dag processor, ex. 1GB, 3GB, 2. If units
|
||||
are not provided, defaults to GB, supported in Composer 3
|
||||
environments or greater.
|
||||
|
||||
--dag-processor-storage=DAG_PROCESSOR_STORAGE
|
||||
Storage allocated to Airflow dag processor, ex. 600MB, 3GB, 2. If
|
||||
units are not provided, defaults to GB, supported in Composer 3
|
||||
environments or greater.
|
||||
|
||||
At most one of these can be specified:
|
||||
|
||||
--disable-cloud-data-lineage-integration
|
||||
|
|
@ -395,6 +436,17 @@ FLAGS
|
|||
Enable Cloud Data Lineage integration, supported for Composer 2
|
||||
Environments.
|
||||
|
||||
At most one of these can be specified:
|
||||
|
||||
--disable-private-builds-only
|
||||
Builds performed during operations that install Python packages have
|
||||
an access to the internet supported in Composer 3 or greater.
|
||||
|
||||
--enable-private-builds-only
|
||||
Builds performed during operations that install Python packages have
|
||||
only private connectivity to Google services, supported in Composer 3
|
||||
or greater.
|
||||
|
||||
Master Authorized Networks configuration
|
||||
|
||||
--enable-master-authorized-networks
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue