本文整理汇总了Golang中k8s/io/helm/pkg/proto/hapi/services.ReleaseServiceClient.InstallRelease方法的典型用法代码示例。如果您正苦于以下问题:Golang ReleaseServiceClient.InstallRelease方法的具体用法?Golang ReleaseServiceClient.InstallRelease怎么用?Golang ReleaseServiceClient.InstallRelease使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类k8s/io/helm/pkg/proto/hapi/services.ReleaseServiceClient
的用法示例。
在下文中一共展示了ReleaseServiceClient.InstallRelease方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: rpcInstallRelease
// Executes tiller.InstallRelease RPC.
func (o *options) rpcInstallRelease(chr *cpb.Chart, rlc rls.ReleaseServiceClient, opts ...InstallOption) (*rls.InstallReleaseResponse, error) {
// apply the install options
for _, opt := range opts {
opt(o)
}
o.instReq.Chart = chr
o.instReq.DryRun = o.dryRun
return rlc.InstallRelease(context.TODO(), &o.instReq)
}
示例2: rpcInstallRelease
// Executes tiller.InstallRelease RPC.
func (o *options) rpcInstallRelease(chr *cpb.Chart, rlc rls.ReleaseServiceClient, ns string, opts ...InstallOption) (*rls.InstallReleaseResponse, error) {
// apply the install options
for _, opt := range opts {
opt(o)
}
o.instReq.Chart = chr
o.instReq.Namespace = ns
o.instReq.DryRun = o.dryRun
o.instReq.DisableHooks = o.disableHooks
o.instReq.ReuseName = o.reuseName
return rlc.InstallRelease(NewContext(), &o.instReq)
}