Module gcip.addons.container.images

Classes

class PredefinedImages

PredefinedImages provides container images objects that are widley used withing the gcip.

Expand source code
class PredefinedImages:
    """
    PredefinedImages provides container images objects that are widley used withing the `gcip`.
    """

    KANIKO: Image = Image(
        "gcr.io/kaniko-project/executor", tag="debug", entrypoint=[""]
    )
    CRANE: Image = Image(
        "gcr.io/go-containerregistry/crane", tag="debug", entrypoint=[""]
    )
    DIVE: Image = Image("wagoodman/dive", tag="latest", entrypoint=[""])
    GCIP: Image = Image("thomass/gcip", tag="latest")
    TRIVY: Image = Image("aquasec/trivy", tag="latest", entrypoint=[""])
    BUSYBOX: Image = Image("busybox", tag="latest")
    ALPINE_GIT: Image = Image("alpine/git", tag="latest", entrypoint=[""])

Class variables

var ALPINE_GITImage
var BUSYBOXImage
var CRANEImage
var DIVEImage
var GCIPImage
var KANIKOImage
var TRIVYImage