AppSpecWorkerImage

data class AppSpecWorkerImage(val deployOnPushes: List<AppSpecWorkerImageDeployOnPush>? = null, val digest: String? = null, val registry: String? = null, val registryCredentials: String? = null, val registryType: String, val repository: String, val tag: String? = null)

Constructors

Link copied to clipboard
constructor(deployOnPushes: List<AppSpecWorkerImageDeployOnPush>? = null, digest: String? = null, registry: String? = null, registryCredentials: String? = null, registryType: String, repository: String, tag: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Configures automatically deploying images pushed to DOCR.

Link copied to clipboard
val digest: String? = null

The image digest. Cannot be specified if tag is provided.

Link copied to clipboard
val registry: String? = null

The registry name. Must be left empty for the DOCR registry type. Required for the DOCKER_HUB registry type.

Link copied to clipboard

The credentials required to access a private Docker Hub or GitHub registry, in the following syntax <username>:<token>.

Link copied to clipboard

The registry type. One of DOCR (DigitalOcean container registry) or DOCKER_HUB.

Link copied to clipboard

The repository name.

Link copied to clipboard
val tag: String? = null

The repository tag. Defaults to latest if not provided.