This content is part of a third party extension that is not supported by the Cake project.
For more information about this extension see
Cake.Openshift.
Summary
Starts a new openshift build for the provided build config with additional options.
Syntax
public static void OpenshiftStartBuild(this ICakeContext context, string buildConfig, OpenshiftBuildStarterSettings settings)
Examples
Cake task:
Task("Openshift-StartBuild")
.Does(() =>
{
var buildConfig = "hello-world";
OpenshiftStartBuild(buildConfig, new OpenshiftBuildStarterSettings
{
Follow = true,
Wait = true
});
});
Attributes
Type |
Description |
CakeMethodAliasAttribute |
|
CakeAliasCategoryAttribute |
|
CakeNamespaceImportAttribute |
|
Parameters
Return Value