Skip to content

Commit ec876ca

Browse files
committed
create buildjob without a CRD
1 parent a825aea commit ec876ca

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

server/src/kubero.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1401,7 +1401,7 @@ export class Kubero {
14011401
if (contextName) {
14021402
this.kubectl.setCurrentContext(contextName);
14031403

1404-
this.kubectl.createBuild(
1404+
this.kubectl.createBuildJob(
14051405
namespace,
14061406
appName,
14071407
pipeline,

server/src/modules/kubectl.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -864,7 +864,7 @@ export class Kubectl {
864864
console.log('ERROR fetching pod by label');
865865
}
866866
}
867-
867+
/*
868868
public async createBuild(
869869
namespace: string,
870870
appName: string,
@@ -937,7 +937,7 @@ export class Kubectl {
937937
console.log('ERROR creating build job');
938938
}
939939
}
940-
940+
*/
941941
public async deployApp(namespace: string, appName: string, tag: string) {
942942

943943
let deploymentName = appName+'-kuberoapp-web';

0 commit comments

Comments
 (0)