Skip to content

Commit cdca3bd

Browse files
author
Prince Rachit Sinha
committed
Fix failing build
1 parent f93e7b6 commit cdca3bd

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.werft/build.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ export async function deployToDev(deploymentConfig: DeploymentConfig, workspaceF
413413

414414
werft.log("helm", "installing k3s ws cluster")
415415
exec(`export KUBECONFIG=${pathToKubeConfig} && helm dependencies up`);
416-
exec(`export KUBECONFIG=${pathToKubeConfig} && /usr/local/bin/helm3 upgrade --install --timeout 10m -f ../.werft/values.dev.yaml ../werft/values.devK3sWs.yaml ${flags} ${helmInstallName} .`);
416+
exec(`export KUBECONFIG=${pathToKubeConfig} && /usr/local/bin/helm3 upgrade --install --timeout 10m -f ../.werft/values.dev.yaml -f ../werft/values.devK3sWs.yaml ${flags} ${helmInstallName} .`);
417417
}
418418

419419
function addDeploymentFlags() {

.werft/values.devK3sWs.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,8 @@ mysql:
206206

207207
rabbitmq:
208208
# ensure shovels are configured on boot
209+
disabled: true
210+
enabled: false
209211
shovels:
210212
- name: messagebus-0
211213
srcUri: "amqp://$USERNAME:$PASSWORD@messagebus-0"

0 commit comments

Comments
 (0)