Skip to content

Commit

Permalink
makeAdminUsernameConfigerable
Browse files Browse the repository at this point in the history
  • Loading branch information
teimyBr committed Apr 19, 2024
1 parent 12cc25b commit fdc7946
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/harbor.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class ProjectRole(Enum):
MAINTAINER = 4


admin_username = "admin"
admin_username = os.environ.get("ADMIN_USERNAME", "admin")
old_admin_password = os.environ.get("ADMIN_PASSWORD_OLD")
new_admin_password = os.environ.get("ADMIN_PASSWORD_NEW")
api_url = os.environ.get("HARBOR_API_URL")
Expand Down

0 comments on commit fdc7946

Please sign in to comment.