2 # Copyright (C) The Arvados Authors. All rights reserved.
4 # SPDX-License-Identifier: Apache-2.0
6 export ARVADOS_API_TOKEN=changemesystemroottoken
7 export ARVADOS_API_HOST=__CLUSTER__.__DOMAIN__:__HOST_SSL_PORT__
8 export ARVADOS_API_HOST_INSECURE=true
11 # https://doc.arvados.org/v2.0/install/install-jobs-image.html
12 echo "Creating Arvados Standard Docker Images project"
13 uuid_prefix=$(arv --format=uuid user current | cut -d- -f1)
14 project_uuid=$(arv --format=uuid group list --filters '[["name", "=", "Arvados Standard Docker Images"]]')
16 if [ "x${project_uuid}" = "x" ]; then
17 project_uuid=$(arv --format=uuid group create --group "{\"owner_uuid\": \"${uuid_prefix}-tpzed-000000000000000\", \"group_class\":\"project\", \"name\":\"Arvados Standard Docker Images\"}")
19 read -rd $'\000' newlink <<EOF; arv link create --link "${newlink}"
21 "tail_uuid":"${uuid_prefix}-j7d0g-fffffffffffffff",
22 "head_uuid":"${project_uuid}",
23 "link_class":"permission",
29 echo "Arvados project uuid is '${project_uuid}'"
31 echo "Uploading arvados/jobs' docker image to the project"
33 arv-keepdocker --pull arvados/jobs "${VERSION}" --project-uuid "${project_uuid}"
35 # Create the initial user
36 echo "Creating initial user '__INITIAL_USER__'"
37 user_uuid=$(arv --format=uuid user list --filters '[["email", "=", "__INITIAL_USER_EMAIL__"], ["username", "=", "__INITIAL_USER__"]]')
39 if [ "x${user_uuid}" = "x" ]; then
40 user_uuid=$(arv --format=uuid user create --user '{"email": "__INITIAL_USER_EMAIL__", "username": "__INITIAL_USER__"}')
41 echo "Setting up user '__INITIAL_USER__'"
42 arv user setup --uuid "${user_uuid}"
45 echo "Activating user '__INITIAL_USER__'"
46 arv user update --uuid "${user_uuid}" --user '{"is_active": true}'
48 echo "Getting the user API TOKEN"
49 user_api_token=$(arv api_client_authorization list --filters "[[\"owner_uuid\", \"=\", \"${user_uuid}\"],[\"kind\", \"==\", \"arvados#apiClientAuthorization\"]]" --limit=1 |jq -r .items[].api_token)
51 if [ "x${user_api_token}" = "x" ]; then
52 user_api_token=$(arv api_client_authorization create --api-client-authorization "{\"owner_uuid\": \"${user_uuid}\"}" | jq -r .api_token)
55 # Change to the user's token and run the workflow
56 export ARVADOS_API_TOKEN="${user_api_token}"
58 echo "Running test CWL workflow"
59 cwl-runner hasher-workflow.cwl hasher-workflow-job.yml