Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( SchemeBuilder = runtime.NewSchemeBuilder(addKnownTypes) AddToScheme = SchemeBuilder.AddToScheme )
View Source
var SchemeGroupVersion = unversioned.GroupVersion{Group: "", Version: "v1"}
SchemeGroupVersion is group version used to register these objects
Functions ¶
This section is empty.
Types ¶
type BuildDefaultsConfig ¶
type BuildDefaultsConfig struct { unversioned.TypeMeta `json:",inline"` // gitHTTPProxy is the location of the HTTPProxy for Git source GitHTTPProxy string `json:"gitHTTPProxy,omitempty"` // gitHTTPSProxy is the location of the HTTPSProxy for Git source GitHTTPSProxy string `json:"gitHTTPSProxy,omitempty"` // gitNoProxy is the list of domains for which the proxy should not be used GitNoProxy string `json:"gitNoProxy,omitempty"` // env is a set of default environment variables that will be applied to the // build if the specified variables do not exist on the build Env []kapi.EnvVar `json:"env,omitempty"` // sourceStrategyDefaults are default values that apply to builds using the // source strategy. SourceStrategyDefaults *SourceStrategyDefaultsConfig `json:"sourceStrategyDefaults,omitempty"` // imageLabels is a list of docker labels that are applied to the resulting image. // User can override a default label by providing a label with the same name in their // Build/BuildConfig. ImageLabels []buildapi.ImageLabel `json:"imageLabels,omitempty"` // nodeSelector is a selector which must be true for the build pod to fit on a node NodeSelector map[string]string `json:"nodeSelector,omitempty"` // annotations are annotations that will be added to the build pod Annotations map[string]string `json:"annotations,omitempty"` // resources defines resource requirements to execute the build. Resources kapi.ResourceRequirements `json:"resources,omitempty"` }
BuildDefaultsConfig controls the default information for Builds
func (*BuildDefaultsConfig) GetObjectKind ¶
func (obj *BuildDefaultsConfig) GetObjectKind() unversioned.ObjectKind
func (BuildDefaultsConfig) SwaggerDoc ¶ added in v1.1.4
func (BuildDefaultsConfig) SwaggerDoc() map[string]string
type SourceStrategyDefaultsConfig ¶ added in v1.3.0
type SourceStrategyDefaultsConfig struct { // incremental indicates if s2i build strategies should perform an incremental // build or not Incremental *bool `json:"incremental,omitempty"` }
SourceStrategyDefaultsConfig contains values that apply to builds using the source strategy.
func (SourceStrategyDefaultsConfig) SwaggerDoc ¶ added in v1.3.0
func (SourceStrategyDefaultsConfig) SwaggerDoc() map[string]string
Click to show internal directories.
Click to hide internal directories.