Skip to main content

config

Creates, updates, deletes, gets or lists a config resource.

Overview

Nameconfig
TypeResource
Idgoogle.clouddeploy.config

Fields

NameDatatypeDescription
namestringName of the configuration.
defaultSkaffoldVersionstringDefault Skaffold version that is assigned when a Release is created without specifying a Skaffold version.
supportedVersionsarrayAll supported versions of Skaffold.

Methods

NameAccessible byRequired ParamsDescription
get_configSELECTlocationsId, projectsIdGets the configuration for a location.

SELECT examples

Gets the configuration for a location.

SELECT
name,
defaultSkaffoldVersion,
supportedVersions
FROM google.clouddeploy.config
WHERE locationsId = '{{ locationsId }}'
AND projectsId = '{{ projectsId }}';