diff --git a/.github/workflows/e2e-noscience.yml b/.github/workflows/e2e-noscience.yml index 07050065..e68755bf 100644 --- a/.github/workflows/e2e-noscience.yml +++ b/.github/workflows/e2e-noscience.yml @@ -9,7 +9,6 @@ jobs: call-workflow-passing-data: uses: ./.github/workflows/e2e.yml with: - minimal: true noscience: true secrets: registry_username: ${{ secrets.REGISTRY_USERNAME }} diff --git a/.github/workflows/e2e-science.yml b/.github/workflows/e2e-science.yml index a4b00723..5a037850 100644 --- a/.github/workflows/e2e-science.yml +++ b/.github/workflows/e2e-science.yml @@ -13,7 +13,6 @@ jobs: call-workflow-passing-data: uses: ./.github/workflows/e2e.yml with: - minimal: false noscience: false secrets: registry_username: ${{ secrets.REGISTRY_USERNAME }} diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 13666575..f8cee9a4 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -6,9 +6,6 @@ on: noscience: required: true type: string - minimal: - required: true - type: string secrets: registry_username: required: true diff --git a/conf.sh b/conf.sh index f484d413..82ae638e 100755 --- a/conf.sh +++ b/conf.sh @@ -2,12 +2,8 @@ . "$CIUXCONFIG" # Do not launch science pipeline if true -# Set minimal limits/requests for Spark driver and executor if true NOSCIENCE="${NOSCIENCE:-false}" -MINIMAL="${MINIMAL:-false}" - - # Build parameters # ---------------- diff --git a/doc/devel.adoc b/doc/devel.adoc index be163cf5..156bf568 100644 --- a/doc/devel.adoc +++ b/doc/devel.adoc @@ -21,7 +21,6 @@ cd fink-broker [,shell] ---- # Work with minimal cpu/memory requirements and no science code -export MINIMAL=true export NOSCIENCE=true ---- diff --git a/examples/aliases-fink.zsh b/examples/aliases-fink.zsh index 68bdc2ba..13fcbc4a 100644 --- a/examples/aliases-fink.zsh +++ b/examples/aliases-fink.zsh @@ -21,7 +21,7 @@ alias cdfa="cd $FINK_ALERT_SIM_SRC_DIR" alias cdfb="cd $FINK_BROKER_SRC_DIR" alias cdfc="cd $FINKCTL_SRC_DIR" -alias fns="export MINIMAL=true NOSCIENCE=true" +alias fns="export NOSCIENCE=true" alias fbp="$FINK_BROKER_SRC_DIR/build.sh && $FINK_BROKER_SRC_DIR/push-image.sh" alias fadel="kubectl delete pod -l workflows.argoproj.io/completed"