mirror of
https://github.com/goharbor/harbor.git
synced 2024-12-23 00:57:44 +01:00
update notary case
This commit is contained in:
parent
fd2fb483cc
commit
5afc0b5d28
@ -300,7 +300,6 @@ Test Case - Admin Push Signed Image
|
|||||||
Log To Console ${output}
|
Log To Console ${output}
|
||||||
|
|
||||||
Push image ${ip} %{HARBOR_ADMIN} %{HARBOR_PASSWORD} library hello-world:latest
|
Push image ${ip} %{HARBOR_ADMIN} %{HARBOR_PASSWORD} library hello-world:latest
|
||||||
|
|
||||||
${rc} ${output}= Run And Return Rc And Output ./tests/robot-cases/Group9-Content-trust/notary-push-image.sh
|
${rc} ${output}= Run And Return Rc And Output ./tests/robot-cases/Group9-Content-trust/notary-push-image.sh
|
||||||
Log To Console ${output}
|
Log To Console ${output}
|
||||||
Should Be Equal As Integers ${rc} 0
|
Should Be Equal As Integers ${rc} 0
|
||||||
|
@ -1,12 +1,24 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
docker pull tomcat
|
docker pull tomcat:latest
|
||||||
|
|
||||||
IP=`ip addr s eth0 |grep "inet "|awk '{print $2}' |awk -F "/" '{print $1}'`
|
IP=`ip addr s eth0 |grep "inet "|awk '{print $2}' |awk -F "/" '{print $1}'`
|
||||||
|
PASSHRASE='Harbor12345'
|
||||||
|
|
||||||
|
echo $IP
|
||||||
|
|
||||||
export DOCKER_CONTENT_TRUST=1
|
export DOCKER_CONTENT_TRUST=1
|
||||||
export DOCKER_CONTENT_TRUST_SERVER=https://$IP:4443
|
export DOCKER_CONTENT_TRUST_SERVER=https://$IP:4443
|
||||||
|
|
||||||
docker login -u admin -p Harbor12345 $IP
|
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 admin -p Harbor12345 $IP
|
||||||
docker tag tomcat $IP/library/tomcat:latest
|
docker tag tomcat $IP/library/tomcat:latest
|
||||||
python ./tests/robot-cases/Group9-Content-trust/notary-push-image.py
|
docker push $IP/library/tomcat:latest
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user