RegistryImageArgs

data class RegistryImageArgs(val authConfig: Output<RegistryImageAuthConfigArgs>? = null, val insecureSkipVerify: Output<Boolean>? = null, val keepRemotely: Output<Boolean>? = null, val name: Output<String>? = null, val triggers: Output<Map<String, String>>? = null) : ConvertibleToJava<RegistryImageArgs>

Manages the lifecycle of docker image in a registry. You can upload images to a registry (= docker push) and also delete them again

Constructors

Link copied to clipboard
constructor(authConfig: Output<RegistryImageAuthConfigArgs>? = null, insecureSkipVerify: Output<Boolean>? = null, keepRemotely: Output<Boolean>? = null, name: Output<String>? = null, triggers: Output<Map<String, String>>? = null)

Properties

Link copied to clipboard

Authentication configuration for the Docker registry. It is only used for this resource.

Link copied to clipboard
val insecureSkipVerify: Output<Boolean>? = null

If true, the verification of TLS certificates of the server/registry is disabled. Defaults to false

Link copied to clipboard
val keepRemotely: Output<Boolean>? = null

If true, then the Docker image won't be deleted on destroy operation. If this is false, it will delete the image from the docker registry on destroy operation. Defaults to false

Link copied to clipboard
val name: Output<String>? = null

The name of the Docker image.

Link copied to clipboard
val triggers: Output<Map<String, String>>? = null

A map of arbitrary strings that, when changed, will force the docker.RegistryImage resource to be replaced. This can be used to repush a local image

Functions

Link copied to clipboard
open override fun toJava(): RegistryImageArgs