We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06c4a5e commit c6d38aeCopy full SHA for c6d38ae
.werft/jobs/build/prepare.ts
@@ -63,7 +63,8 @@ function configureCoreDevAccess() {
63
}
64
65
function decideHarvesterVMCreation(werft: Werft, config: JobConfig) {
66
- if (config.withVM && !VM.vmExists({ name: config.previewEnvironment.destname })) {
+ const namespace = "preview-" + config.previewEnvironment.destname
67
+ if (config.withVM && !VM.vmExists({ name: namespace })) {
68
prepareVM(werft, config)
69
} else {
70
werft.currentPhaseSpan.setAttribute("werft.harvester.created_vm", false)
0 commit comments