...

Package docker10

import "github.com/openshift/api/image/docker10"
Overview
Index

Overview ▾

Package docker10 is the docker10 version of the API.

Constants

const (
    GroupName       = "image.openshift.io"
    LegacyGroupName = ""
)

Variables

SchemeGroupVersion is group version used to register these objects

var (
    GroupVersion             = schema.GroupVersion{Group: GroupName, Version: "1.0"}
    LegacySchemeGroupVersion = schema.GroupVersion{Group: LegacyGroupName, Version: "1.0"}

    SchemeBuilder       = runtime.NewSchemeBuilder(addKnownTypes)
    LegacySchemeBuilder = runtime.NewSchemeBuilder(addLegacyKnownTypes)

    AddToSchemeInCoreGroup = LegacySchemeBuilder.AddToScheme

    // Install is a function which adds this version to a scheme
    Install = SchemeBuilder.AddToScheme

    // SchemeGroupVersion generated code relies on this name
    // Deprecated
    SchemeGroupVersion = GroupVersion
    // AddToScheme exists solely to keep the old generators creating valid code
    // DEPRECATED
    AddToScheme = SchemeBuilder.AddToScheme
)

type DockerConfig

DockerConfig is the list of configuration options used when creating a container.

type DockerConfig struct {
    Hostname        string              `json:"Hostname,omitempty"`
    Domainname      string              `json:"Domainname,omitempty"`
    User            string              `json:"User,omitempty"`
    Memory          int64               `json:"Memory,omitempty"`
    MemorySwap      int64               `json:"MemorySwap,omitempty"`
    CPUShares       int64               `json:"CpuShares,omitempty"`
    CPUSet          string              `json:"Cpuset,omitempty"`
    AttachStdin     bool                `json:"AttachStdin,omitempty"`
    AttachStdout    bool                `json:"AttachStdout,omitempty"`
    AttachStderr    bool                `json:"AttachStderr,omitempty"`
    PortSpecs       []string            `json:"PortSpecs,omitempty"`
    ExposedPorts    map[string]struct{} `json:"ExposedPorts,omitempty"`
    Tty             bool                `json:"Tty,omitempty"`
    OpenStdin       bool                `json:"OpenStdin,omitempty"`
    StdinOnce       bool                `json:"StdinOnce,omitempty"`
    Env             []string            `json:"Env,omitempty"`
    Cmd             []string            `json:"Cmd,omitempty"`
    DNS             []string            `json:"Dns,omitempty"` // For Docker API v1.9 and below only
    Image           string              `json:"Image,omitempty"`
    Volumes         map[string]struct{} `json:"Volumes,omitempty"`
    VolumesFrom     string              `json:"VolumesFrom,omitempty"`
    WorkingDir      string              `json:"WorkingDir,omitempty"`
    Entrypoint      []string            `json:"Entrypoint,omitempty"`
    NetworkDisabled bool                `json:"NetworkDisabled,omitempty"`
    SecurityOpts    []string            `json:"SecurityOpts,omitempty"`
    OnBuild         []string            `json:"OnBuild,omitempty"`
    Labels          map[string]string   `json:"Labels,omitempty"`
}

func (*DockerConfig) DeepCopy

func (in *DockerConfig) DeepCopy() *DockerConfig

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DockerConfig.

func (*DockerConfig) DeepCopyInto

func (in *DockerConfig) DeepCopyInto(out *DockerConfig)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (DockerConfig) SwaggerDoc

func (DockerConfig) SwaggerDoc() map[string]string

type DockerImage

DockerImage is the type representing a container image and its various properties when retrieved from the Docker client API.

Compatibility level 4: No compatibility is provided, the API can change at any point for any reason. These capabilities should not be used by applications needing long term support. +openshift:compatibility-gen:level=4 +openshift:compatibility-gen:internal

type DockerImage struct {
    metav1.TypeMeta `json:",inline"`

    ID              string        `json:"Id"`
    Parent          string        `json:"Parent,omitempty"`
    Comment         string        `json:"Comment,omitempty"`
    Created         metav1.Time   `json:"Created,omitempty"`
    Container       string        `json:"Container,omitempty"`
    ContainerConfig DockerConfig  `json:"ContainerConfig,omitempty"`
    DockerVersion   string        `json:"DockerVersion,omitempty"`
    Author          string        `json:"Author,omitempty"`
    Config          *DockerConfig `json:"Config,omitempty"`
    Architecture    string        `json:"Architecture,omitempty"`
    Size            int64         `json:"Size,omitempty"`
}

func (*DockerImage) DeepCopy

func (in *DockerImage) DeepCopy() *DockerImage

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DockerImage.

func (*DockerImage) DeepCopyInto

func (in *DockerImage) DeepCopyInto(out *DockerImage)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*DockerImage) DeepCopyObject

func (in *DockerImage) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (DockerImage) SwaggerDoc

func (DockerImage) SwaggerDoc() map[string]string