mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-11 15:39:42 +00:00
gcloud: Wed Mar 29 10:40:15 UTC 2023
This commit is contained in:
parent
4ccfc7a5e3
commit
5fabf24be7
269 changed files with 6797 additions and 464 deletions
|
|
@ -12,7 +12,8 @@ SYNOPSIS
|
|||
[--build-artifacts=BUILD_ARTIFACTS | --images=[NAME=TAG,...]]
|
||||
[--disable-initial-rollout | --enable-initial-rollout
|
||||
--initial-rollout-annotations=[KEY=VALUE,...]
|
||||
--initial-rollout-labels=[KEY=VALUE,...]]
|
||||
--initial-rollout-labels=[KEY=VALUE,...]
|
||||
--initial-rollout-phase-id=INITIAL_ROLLOUT_PHASE_ID]
|
||||
[--from-k8s-manifest=FROM_K8S_MANIFEST
|
||||
| --from-run-manifest=FROM_RUN_MANIFEST
|
||||
| --skaffold-file=SKAFFOLD_FILE --source=SOURCE; default="."]
|
||||
|
|
@ -184,6 +185,18 @@ FLAGS
|
|||
$ gcloud alpha deploy releases create \
|
||||
initial-rollout-labels="commit=abc123,author=foo"
|
||||
|
||||
--initial-rollout-phase-id=INITIAL_ROLLOUT_PHASE_ID
|
||||
The phase to start the initial rollout at when creating the release.
|
||||
The phase ID must be a valid phase on the rollout. If not specified,
|
||||
then the rollout will start at the first phase.
|
||||
|
||||
Examples:
|
||||
|
||||
Start rollout at stable phase:
|
||||
|
||||
$ gcloud alpha deploy releases create \
|
||||
--initial-rollout-phase-id=stable
|
||||
|
||||
At most one of these can be specified:
|
||||
|
||||
--from-k8s-manifest=FROM_K8S_MANIFEST
|
||||
|
|
|
|||
|
|
@ -7,8 +7,8 @@ SYNOPSIS
|
|||
(--release=RELEASE
|
||||
: --delivery-pipeline=DELIVERY_PIPELINE --region=REGION)
|
||||
[--annotations=[KEY=VALUE,...]] [--labels=[KEY=VALUE,...]]
|
||||
[--rollout-id=ROLLOUT_ID] [--to-target=TO_TARGET]
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
[--rollout-id=ROLLOUT_ID] [--starting-phase-id=STARTING_PHASE_ID]
|
||||
[--to-target=TO_TARGET] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) If to-target is not specified the command promotes the release from
|
||||
|
|
@ -86,6 +86,13 @@ OPTIONAL FLAGS
|
|||
--rollout-id=ROLLOUT_ID
|
||||
ID to assign to the generated rollout for promotion.
|
||||
|
||||
--starting-phase-id=STARTING_PHASE_ID
|
||||
If set, starts the created rollout at the specified phase.
|
||||
|
||||
Start rollout at stable phase:
|
||||
|
||||
$ gcloud alpha deploy releases promote --starting-phase-id=stable
|
||||
|
||||
--to-target=TO_TARGET
|
||||
Destination target to promote into.
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue