1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
#!/bin/bash -e
# Copyright The Notary Project Authors.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# this script called by ../run.sh
#
# DockerHub has image pulling limit and request rate limit. Please improve your
# subscription level if you confronts those issues.
#
# Usage
# export DOCKER_USERNAME=xxx
# export DOCKER_PASSOWRD=xxx
# ./run.sh dockerhub <notation-binary-path> [old-notation-binary-path]
# check required environment variable
if [ -z "$DOCKER_USERNAME" ] || [ -z "$DOCKER_PASSWORD" ]; then
echo "\$DOCKER_USERNAME or \$DOCKER_PASSWORD is not set"
exit 1
fi
# set environment variables for E2E testing
export NOTATION_E2E_REGISTRY_HOST="docker.io/$DOCKER_USERNAME"
export NOTATION_E2E_REGISTRY_USERNAME="$DOCKER_USERNAME"
export NOTATION_E2E_REGISTRY_PASSWORD="$DOCKER_PASSWORD"
export NOTATION_E2E_DOMAIN_REGISTRY_HOST="$NOTATION_E2E_REGISTRY_HOST"
function setup_registry {
echo "use $NOTATION_E2E_REGISTRY_HOST"
}
function cleanup_registry {
echo "cleaning dockerhub"
# get token
# reference: https://docs.docker.com/docker-hub/api/latest/#tag/authentication
HUB_TOKEN=$(curl -s -H "Content-Type: application/json" -X POST -d "{\"username\": \"$DOCKER_USERNAME\", \"password\": \"$DOCKER_PASSWORD\"}" https://hub.docker.com/v2/users/login/ | jq -r .token)
for (( page=1;;page++ )); do
# page query the repositorys' name
resp=`curl -s -X GET \
-H "Accept: application/json" \
-H "Authorization: JWT $HUB_TOKEN" \
"https://hub.docker.com/v2/repositories/$DOCKER_USERNAME/?page_size=100&&page=$page"`
# check the last page
if [[ "$resp" == *"object not found"* ]]; then
break
fi
# parse json and extract e2e repoName
e2eRepos=(`echo $resp | jq -r '.results|.[]|.name' | grep 'e2e-'`)
echo "repositories: ${e2eRepos[@]}"
for repoName in "${e2eRepos[@]}"; do
# run delete
curl -X DELETE \
-H "Accept: application/json" \
-H "Authorization: JWT $HUB_TOKEN" \
https://hub.docker.com/v2/repositories/$DOCKER_USERNAME/$repoName/ && \
echo "$NOTATION_E2E_REGISTRY_HOST/$repoName deleted."
done
done
}
|