mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-07 19:22:08 +01:00
17 lines
300 B
Python
17 lines
300 B
Python
|
#!/usr/bin/env python
|
||
|
|
||
|
import sys
|
||
|
sys.path.append("../")
|
||
|
|
||
|
from harborclient import harborclient
|
||
|
|
||
|
host = "127.0.0.1"
|
||
|
user = "admin"
|
||
|
password = "Harbor12345"
|
||
|
|
||
|
client = harborclient.HarborClient(host, user, password)
|
||
|
|
||
|
# Delete repository
|
||
|
repo_name = "library/cirros"
|
||
|
client.delete_repository(repo_name)
|