diff --git a/.github/workflows/run_spicebench.yml b/.github/workflows/run_spicebench.yml index 5779f5c..7a07cf3 100644 --- a/.github/workflows/run_spicebench.yml +++ b/.github/workflows/run_spicebench.yml @@ -244,7 +244,6 @@ jobs: SPIDAPTER_APP_MEMORY_LIMIT: '62Gi' SPIDAPTER_EXECUTOR_MEMORY_LIMIT: '62Gi' SPIDAPTER_EPHEMERAL_STORAGE_LIMIT_GB: '256Gi' - SPIDAPTER_ORGANIZATION_TAG: 'spicehq' ENABLE_PVC: 'false' run: | set -euo pipefail @@ -318,8 +317,6 @@ jobs: ADAPTER_DOCKER_OPTS="${ADAPTER_DOCKER_OPTS} -e SPIDAPTER_APP_MEMORY_LIMIT=${SPIDAPTER_APP_MEMORY_LIMIT}" ADAPTER_DOCKER_OPTS="${ADAPTER_DOCKER_OPTS} -e SPIDAPTER_EXECUTOR_MEMORY_LIMIT=${SPIDAPTER_EXECUTOR_MEMORY_LIMIT}" ADAPTER_DOCKER_OPTS="${ADAPTER_DOCKER_OPTS} -e SPIDAPTER_EPHEMERAL_STORAGE_LIMIT_GB=${SPIDAPTER_EPHEMERAL_STORAGE_LIMIT_GB}" - ADAPTER_DOCKER_OPTS="${ADAPTER_DOCKER_OPTS} -e SPIDAPTER_ORGANIZATION_TAG" - if [ "${ENABLE_PVC}" = "true" ]; then echo "PVC enabled: app=3GB, executor=2GB" ADAPTER_DOCKER_OPTS="${ADAPTER_DOCKER_OPTS} -e SPIDAPTER_APP_STORAGE_SIZE_GB=3 -e SPIDAPTER_EXECUTOR_STORAGE_SIZE_GB=2 -e SPIDAPTER_CAYENNE_DATA_DIR=/data/data -e SPIDAPTER_CAYENNE_METADATA_DIR=/data/metadata" diff --git a/.github/workflows/run_spicebench_debug_spice_cloud.yml b/.github/workflows/run_spicebench_debug_spice_cloud.yml index 98f3be9..c603b25 100644 --- a/.github/workflows/run_spicebench_debug_spice_cloud.yml +++ b/.github/workflows/run_spicebench_debug_spice_cloud.yml @@ -177,7 +177,6 @@ jobs: EXECUTOR_REPLICAS: ${{ github.event.inputs.executor_replicas || '4' }} SPIDAPTER_APP_MEMORY_LIMIT: ${{ github.event.inputs.app_memory_limit || '16Gi' }} SPIDAPTER_EXECUTOR_MEMORY_LIMIT: ${{ github.event.inputs.executor_memory_limit || '16Gi' }} - SPIDAPTER_ORGANIZATION_TAG: 'spicehq' CUSTOM_IMAGE_TAG: ${{ github.event.inputs.custom_image_tag || '' }} run: | set -euo pipefail @@ -226,8 +225,6 @@ jobs: ADAPTER_DOCKER_OPTS="${ADAPTER_DOCKER_OPTS} -e SPIDAPTER_APP_MEMORY_LIMIT=${SPIDAPTER_APP_MEMORY_LIMIT}" ADAPTER_DOCKER_OPTS="${ADAPTER_DOCKER_OPTS} -e SPIDAPTER_EXECUTOR_MEMORY_LIMIT=${SPIDAPTER_EXECUTOR_MEMORY_LIMIT}" - ADAPTER_DOCKER_OPTS="${ADAPTER_DOCKER_OPTS} -e SPIDAPTER_ORGANIZATION_TAG" - # Optional custom image from ghcr.io/spiceai/spiceai-dev if [ -n "${CUSTOM_IMAGE_TAG}" ]; then echo "Custom image tag: tag=${CUSTOM_IMAGE_TAG}"