Skip to content

Commit

Permalink
more memory and support latest version
Browse files Browse the repository at this point in the history
  • Loading branch information
paulineribeyre committed Jan 14, 2025
1 parent 9469fa4 commit a3ac1a5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion gen3/bin/kube-setup-gen3-workflow.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@ setup_funnel_infra() {

namespace="$(gen3 db namespace)"
version="$(g3k_manifest_lookup .versions.funnel)"
helm upgrade --install funnel ohsu/funnel --namespace $namespace --version $version
if [ "$version" == "latest" ]; then
helm upgrade --install funnel ohsu/funnel --namespace $namespace
else
helm upgrade --install funnel ohsu/funnel --namespace $namespace --version $version
fi

# NOTE: this config is needed until funnel supports per-user buckets:
# funnel.conf
Expand Down
4 changes: 2 additions & 2 deletions kube/services/gen3-workflow/gen3-workflow-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,9 @@ spec:
resources:
requests:
cpu: 100m
memory: 100Mi
memory: 1Gi
limits:
memory: 300Mi
memory: 1Gi
# initContainers:
# - name: gen3-workflow-db-migrate
# GEN3_REQUESTOR_IMAGE
Expand Down

0 comments on commit a3ac1a5

Please sign in to comment.