mirror of
https://github.com/goharbor/harbor.git
synced 2024-12-02 15:14:09 +01:00
a2fc1bcfaf
1. Change way for quotas verification in upgrade pipeline, prepare specific size of image, then it's an known value for verifcation; 2. Add notary key rotate test; 3. For issue brought by docker 20, clean containerd cache is the only effective way, so both dockerd and containerd should be cache cleard and restarted; 4. Upgrade E2E Dockerfile for importing readable file size package, and other issues; 5. Uncomment project level robot account test in nightly. 6. Get DNS from local setting, and set it into docker deamon config file; Signed-off-by: danfengliu <danfengl@vmware.com>
36 lines
919 B
Bash
Executable File
36 lines
919 B
Bash
Executable File
#!/bin/bash
|
|
|
|
#docker pull $3:$4
|
|
|
|
IP=$1
|
|
USER=$7
|
|
PWD=$8
|
|
PASSHRASE=$8
|
|
notaryServerEndpoint=$5
|
|
tag_src=$6
|
|
echo $IP
|
|
|
|
mkdir -p /etc/docker/certs.d/$IP/
|
|
mkdir -p ~/.docker/tls/$IP:4443/
|
|
|
|
cp /notary_ca.crt /etc/docker/certs.d/$IP/
|
|
cp /notary_ca.crt ~/.docker/tls/$IP:4443/
|
|
|
|
mkdir -p ~/.docker/tls/$notaryServerEndpoint/
|
|
cp /notary_ca.crt ~/.docker/tls/$notaryServerEndpoint/
|
|
|
|
export DOCKER_CONTENT_TRUST=1
|
|
export DOCKER_CONTENT_TRUST_SERVER=https://$notaryServerEndpoint
|
|
|
|
export NOTARY_ROOT_PASSPHRASE=$PASSHRASE
|
|
export NOTARY_TARGETS_PASSPHRASE=$PASSHRASE
|
|
export NOTARY_SNAPSHOT_PASSPHRASE=$PASSHRASE
|
|
export DOCKER_CONTENT_TRUST_ROOT_PASSPHRASE=$PASSHRASE
|
|
export DOCKER_CONTENT_TRUST_REPOSITORY_PASSPHRASE=$PASSHRASE
|
|
export DOCKER_CONTENT_TRUST_OFFLINE_PASSPHRASE=$PASSHRASE
|
|
export DOCKER_CONTENT_TRUST_TAGGING_PASSPHRASE=$PASSHRASE
|
|
|
|
docker login -u $USER -p $PWD $IP
|
|
docker tag $tag_src $IP/$2/$3:$4
|
|
docker push $IP/$2/$3:$4
|