mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-07-26 14:41:29 -07:00
More Cloudbuild Trigger Step support (#223)
<!-- This change is generated by MagicModules. --> /cc @chrisst
This commit is contained in:
parent
e2464b7687
commit
aa34638e35
2 changed files with 321 additions and 3 deletions
|
@ -214,6 +214,93 @@ items:
|
|||
and the remainder will be used as arguments.
|
||||
returned: success
|
||||
type: list
|
||||
env:
|
||||
description:
|
||||
- A list of environment variable definitions to be used when running
|
||||
a step.
|
||||
- The elements are of the form "KEY=VALUE" for the environment variable
|
||||
"KEY" being given the value "VALUE".
|
||||
returned: success
|
||||
type: list
|
||||
id:
|
||||
description:
|
||||
- Unique identifier for this build step, used in `wait_for` to reference
|
||||
this build step as a dependency.
|
||||
returned: success
|
||||
type: str
|
||||
entrypoint:
|
||||
description:
|
||||
- Entrypoint to be used instead of the build step image's default entrypoint.
|
||||
- If unset, the image's default entrypoint is used .
|
||||
returned: success
|
||||
type: str
|
||||
dir:
|
||||
description:
|
||||
- Working directory to use when running this step's container.
|
||||
- If this value is a relative path, it is relative to the build's working
|
||||
directory. If this value is absolute, it may be outside the build's
|
||||
working directory, in which case the contents of the path may not
|
||||
be persisted across build step executions, unless a `volume` for that
|
||||
path is specified.
|
||||
- If the build specifies a `RepoSource` with `dir` and a step with a
|
||||
`dir`, which specifies an absolute path, the `RepoSource` `dir` is
|
||||
ignored for the step's execution.
|
||||
returned: success
|
||||
type: str
|
||||
secretEnv:
|
||||
description:
|
||||
- A list of environment variables which are encrypted using a Cloud
|
||||
Key Management Service crypto key. These values must be specified
|
||||
in the build's `Secret`.
|
||||
returned: success
|
||||
type: list
|
||||
timeout:
|
||||
description:
|
||||
- Time limit for executing this build step. If not defined, the step
|
||||
has no time limit and will be allowed to continue to run until either
|
||||
it completes or the build itself times out.
|
||||
returned: success
|
||||
type: str
|
||||
timing:
|
||||
description:
|
||||
- Output only. Stores timing information for executing this build step.
|
||||
returned: success
|
||||
type: str
|
||||
volumes:
|
||||
description:
|
||||
- List of volumes to mount into the build step.
|
||||
- Each volume is created as an empty volume prior to execution of the
|
||||
build step. Upon completion of the build, volumes and their contents
|
||||
are discarded.
|
||||
- Using a named volume in only one step is not valid as it is indicative
|
||||
of a build request with an incorrect configuration.
|
||||
returned: success
|
||||
type: complex
|
||||
contains:
|
||||
name:
|
||||
description:
|
||||
- Name of the volume to mount.
|
||||
- Volume names must be unique per build step and must be valid names
|
||||
for Docker volumes. Each named volume must be used by at least
|
||||
two build steps.
|
||||
returned: success
|
||||
type: str
|
||||
path:
|
||||
description:
|
||||
- Path at which to mount the volume.
|
||||
- Paths must be absolute and cannot conflict with other volume paths
|
||||
on the same build step or with certain reserved volume paths.
|
||||
returned: success
|
||||
type: str
|
||||
waitFor:
|
||||
description:
|
||||
- The ID(s) of the step(s) that this build step depends on.
|
||||
- This build step will not start until all the build steps in `wait_for`
|
||||
have completed successfully. If `wait_for` is empty, this build step
|
||||
will start when all previous build steps in the `Build.Steps` list
|
||||
have completed successfully.
|
||||
returned: success
|
||||
type: list
|
||||
'''
|
||||
|
||||
################################################################################
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue