mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-04 17:49:48 +01:00
18 lines
323 B
Python
18 lines
323 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)
|
||
|
|
||
|
# Set project publicity
|
||
|
project_id = 1
|
||
|
is_public = True
|
||
|
client.set_project_publicity(project_id, is_public)
|