Skip to content

Commit

Permalink
Merge pull request #394 from LCOGT/fix/1.17
Browse files Browse the repository at this point in the history
Fixes for deployment
  • Loading branch information
mgdaily authored Aug 28, 2024
2 parents 96f113b + 51061d2 commit fda317b
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 7 deletions.
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
1.18.1 (2024-08-28)
-------------------
- Update celery config to turn off gossip and mingle as workers were missing lots of heartbeats and were throwing errors. See https://www.cloudamqp.com/docs/celery.html#commandline-arguments for details

1.18.0 (2024-08-09)
-------------------
- Added support for frames that are composed of sub-exposures that
are stacked at site

Expand Down
4 changes: 2 additions & 2 deletions helm-chart/banzai/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apiVersion: v1
appVersion: "1.14.1"
appVersion: "1.18.1"
description: A Helm chart to deploy the BANZAI pipeline
name: banzai
version: 1.14.1
version: 1.18.1
3 changes: 3 additions & 0 deletions helm-chart/banzai/templates/workers-large.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ spec:
- "-A"
- "banzai"
- "worker"
- "--without-heartbeat"
- "--without-gossip"
- "--without-mingle"
- "--concurrency"
- "1"
- "-l"
Expand Down
3 changes: 3 additions & 0 deletions helm-chart/banzai/templates/workers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ spec:
- "-A"
- "banzai"
- "worker"
- "--without-heartbeat"
- "--without-gossip"
- "--without-mingle"
- "--concurrency"
- "1"
- "-l"
Expand Down
10 changes: 5 additions & 5 deletions helm-chart/banzai/values-prod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
# will be started when the CPU usage rises above the configured threshold.
horizontalPodAutoscaler:
enabled: true
minReplicas: 12
maxReplicas: 12
minReplicas: 15
maxReplicas: 15
targetCPUUtilizationPercentage: 50
minLargeReplicas: 3
maxLargeReplicas: 3
minLargeReplicas: 7
maxLargeReplicas: 7

image:
repository: ghcr.io/lcogt/banzai
tag: "1.11.0"
tag: "1.18.1"
pullPolicy: IfNotPresent

# Values for the OCS Ingester library, used by BANZAI.
Expand Down

0 comments on commit fda317b

Please sign in to comment.