當前位置: 首頁>>代碼示例>>Golang>>正文


Golang api.RecreateDeploymentStrategyParams類代碼示例

本文整理匯總了Golang中github.com/openshift/origin/pkg/deploy/api.RecreateDeploymentStrategyParams的典型用法代碼示例。如果您正苦於以下問題:Golang RecreateDeploymentStrategyParams類的具體用法?Golang RecreateDeploymentStrategyParams怎麽用?Golang RecreateDeploymentStrategyParams使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了RecreateDeploymentStrategyParams類的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。

示例1: autoConvert_v1_RecreateDeploymentStrategyParams_To_api_RecreateDeploymentStrategyParams

func autoConvert_v1_RecreateDeploymentStrategyParams_To_api_RecreateDeploymentStrategyParams(in *RecreateDeploymentStrategyParams, out *api.RecreateDeploymentStrategyParams, s conversion.Scope) error {
	SetDefaults_RecreateDeploymentStrategyParams(in)
	out.TimeoutSeconds = in.TimeoutSeconds
	if in.Pre != nil {
		in, out := &in.Pre, &out.Pre
		*out = new(api.LifecycleHook)
		if err := Convert_v1_LifecycleHook_To_api_LifecycleHook(*in, *out, s); err != nil {
			return err
		}
	} else {
		out.Pre = nil
	}
	if in.Mid != nil {
		in, out := &in.Mid, &out.Mid
		*out = new(api.LifecycleHook)
		if err := Convert_v1_LifecycleHook_To_api_LifecycleHook(*in, *out, s); err != nil {
			return err
		}
	} else {
		out.Mid = nil
	}
	if in.Post != nil {
		in, out := &in.Post, &out.Post
		*out = new(api.LifecycleHook)
		if err := Convert_v1_LifecycleHook_To_api_LifecycleHook(*in, *out, s); err != nil {
			return err
		}
	} else {
		out.Post = nil
	}
	return nil
}
開發者ID:juanluisvaladas,項目名稱:origin,代碼行數:32,代碼來源:zz_generated.conversion.go

示例2: updateRecreateParams

func (o *DeploymentHookOptions) updateRecreateParams(dc *deployapi.DeploymentConfig, strategyParams *deployapi.RecreateDeploymentStrategyParams) (bool, error) {
	var updated bool
	if o.Remove {
		if o.Pre && strategyParams.Pre != nil {
			updated = true
			strategyParams.Pre = nil
		}
		if o.Mid && strategyParams.Mid != nil {
			updated = true
			strategyParams.Mid = nil
		}
		if o.Post && strategyParams.Post != nil {
			updated = true
			strategyParams.Post = nil
		}
		return updated, nil
	}
	hook, err := o.lifecycleHook(dc)
	if err != nil {
		return true, err
	}
	switch {
	case o.Pre:
		strategyParams.Pre = hook
	case o.Mid:
		strategyParams.Mid = hook
	case o.Post:
		strategyParams.Post = hook
	}
	return true, nil
}
開發者ID:juanluisvaladas,項目名稱:origin,代碼行數:31,代碼來源:deploymenthook.go

示例3: autoConvert_v1_RecreateDeploymentStrategyParams_To_api_RecreateDeploymentStrategyParams

func autoConvert_v1_RecreateDeploymentStrategyParams_To_api_RecreateDeploymentStrategyParams(in *RecreateDeploymentStrategyParams, out *deploy_api.RecreateDeploymentStrategyParams, s conversion.Scope) error {
	if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found {
		defaulting.(func(*RecreateDeploymentStrategyParams))(in)
	}
	if in.TimeoutSeconds != nil {
		in, out := &in.TimeoutSeconds, &out.TimeoutSeconds
		*out = new(int64)
		**out = **in
	} else {
		out.TimeoutSeconds = nil
	}
	if in.Pre != nil {
		in, out := &in.Pre, &out.Pre
		*out = new(deploy_api.LifecycleHook)
		if err := Convert_v1_LifecycleHook_To_api_LifecycleHook(*in, *out, s); err != nil {
			return err
		}
	} else {
		out.Pre = nil
	}
	if in.Mid != nil {
		in, out := &in.Mid, &out.Mid
		*out = new(deploy_api.LifecycleHook)
		if err := Convert_v1_LifecycleHook_To_api_LifecycleHook(*in, *out, s); err != nil {
			return err
		}
	} else {
		out.Mid = nil
	}
	if in.Post != nil {
		in, out := &in.Post, &out.Post
		*out = new(deploy_api.LifecycleHook)
		if err := Convert_v1_LifecycleHook_To_api_LifecycleHook(*in, *out, s); err != nil {
			return err
		}
	} else {
		out.Post = nil
	}
	return nil
}
開發者ID:RomainVabre,項目名稱:origin,代碼行數:40,代碼來源:conversion_generated.go


注:本文中的github.com/openshift/origin/pkg/deploy/api.RecreateDeploymentStrategyParams類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。