Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/go_modules/github.com/aws/aws-sdk…
Browse files Browse the repository at this point in the history
…-go-v2/feature/s3/manager-1.17.34
  • Loading branch information
jamlo authored Oct 28, 2024
2 parents fbec092 + 2c4963f commit 1452a4f
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 6 deletions.
4 changes: 2 additions & 2 deletions buildkite/scripts/release_cli.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ download_artifact() {
upload_artifact_to_github() {
echo "$BACALHAU_RELEASE_TOKEN" | gh auth login --with-token

if [ -z "$BUILDKITE_TAG" ]; then
if [ -z "${BUILDKITE_TAG:-}" ]; then
echo "Tag is Missing"
exit 1
fi

gh release upload $BUILDKITE_TAG bacalhau_$BUILDKITE_TAG_*
gh release upload "$BUILDKITE_TAG" bacalhau_"${BUILDKITE_TAG}"*
}

main() {
Expand Down
1 change: 0 additions & 1 deletion ops/terraform/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ export OTEL_RESOURCE_ATTRIBUTES="deployment.environment=${terraform.workspace}"
export BACALHAU_ORCHESTRATORS="${var.internal_ip_addresses[0]}:4222"
export BACALHAU_ORCHESTRATOR_ADVERTISE="${var.public_ip_addresses[count.index]}:4222"
export BACALHAU_LOCAL_PUBLISHER_ADDRESS="${var.public_ip_addresses[count.index]}"
export BACALHAU_WEBUI_BACKEND="http://${var.public_ip_addresses[0]}:1234"
### secrets are installed in the install-node.sh script
export SECRETS_GRAFANA_CLOUD_PROMETHEUS_API_KEY="${var.grafana_cloud_prometheus_api_key}"
Expand Down
2 changes: 1 addition & 1 deletion ops/terraform/prod.tfvars
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
bacalhau_version = "v1.5.0"
bacalhau_version = "v1.5.1"
bacalhau_port = "1235"
bacalhau_environment = "production"
ipfs_version = "v0.18.1"
Expand Down
1 change: 0 additions & 1 deletion ops/terraform/remote_files/scripts/start-bacalhau.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ bacalhau serve \
--config Orchestrator.Advertise="${BACALHAU_ORCHESTRATOR_ADVERTISE}" \
--config WebUI.Enabled="${BACALHAU_NODE_WEBUI}" \
--config WebUI.Listen=0.0.0.0:80 \
--config WebUI.Backend="${BACALHAU_WEBUI_BACKEND}" \
--config JobDefaults.Batch.Task.Publisher.Type=local \
--config JobDefaults.Ops.Task.Publisher.Type=local \
--config Publishers.Types.Local.Address="${BACALHAU_LOCAL_PUBLISHER_ADDRESS}"
2 changes: 1 addition & 1 deletion ops/terraform/stage.tfvars
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
bacalhau_version = "v1.5.0"
bacalhau_version = "v1.5.1"
bacalhau_branch = "" # deploy from a branch instead of the version above
bacalhau_port = "1235"
bacalhau_environment = "staging"
Expand Down

0 comments on commit 1452a4f

Please sign in to comment.