mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-06 18:50:09 +01:00
19 lines
366 B
Python
19 lines
366 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)
|
||
|
|
||
|
# Change password
|
||
|
user_id = 2
|
||
|
old_password = "test-password"
|
||
|
new_password = "new-password"
|
||
|
client.change_password(user_id, old_password, new_password)
|