Registry Image Args
data class RegistryImageArgs(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
Properties
Link copied to clipboard
If true
, the verification of TLS certificates of the server/registry is disabled. Defaults to false
Link copied to clipboard
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