From release 1.8.0 onwards, user settings are configured separately from the system settings. You do not configure user settings in the harbor.yml file, but rather in the Harbor interface or via HTTP requests.

Example Configuration Commands:

Add a new user in the local database:

  1. curl -X PUT -u "<username>:<password>" -H "Content-Type: application/json" -ki <Harbor Server URL>/api/v2.0/configurations -d'{"<item_name>":"<item_value>"}'

Get the current configuration:

  1. curl -u "<username>:<password>" -H "Content-Type: application/json" -ki <Harbor Server URL>/api/v2.0/configurations

Update Harbor to use LDAP authentication:

Command

  1. curl -X PUT -u "<username>:<password>" -H "Content-Type: application/json" -ki https://harbor.sample.domain/api/v2.0/configurations -d'{"auth_mode":"ldap_auth"}'

Output

  1. HTTP/1.1 200 OK
  2. Server: nginx
  3. Date: Wed, 08 May 2019 08:22:02 GMT
  4. Content-Type: text/plain; charset=utf-8
  5. Content-Length: 0
  6. Connection: keep-alive
  7. Set-Cookie: sid=a5803a1265e2b095cf65ce1d8bbd79b1; Path=/; HttpOnly

Restrict project creation to Harbor administrators:

Command

  1. curl -X PUT -u "<username>:<password>" -H "Content-Type: application/json" -ki https://harbor.sample.domain/api/v2.0/configurations -d'{"project_creation_restriction":"adminonly"}'

Output

  1. HTTP/1.1 200 OK
  2. Server: nginx
  3. Date: Wed, 08 May 2019 08:24:32 GMT
  4. Content-Type: text/plain; charset=utf-8
  5. Content-Length: 0
  6. Connection: keep-alive
  7. Set-Cookie: sid=b7925eaf7af53bdefb13bdcae201a14a; Path=/; HttpOnly

Update the token expiration time:

Command

  1. curl -X PUT -u "<username>:<password>" -H "Content-Type: application/json" -ki https://harbor.sample.domain/api/v2.0/configurations -d'{"token_expiration":"300"}'

Output

  1. HTTP/1.1 200 OK
  2. Server: nginx
  3. Date: Wed, 08 May 2019 08:23:38 GMT
  4. Content-Type: text/plain; charset=utf-8
  5. Content-Length: 0
  6. Connection: keep-alive
  7. Set-Cookie: sid=cc1bc93ffa2675253fc62b4bf3d9de0e; Path=/; HttpOnly

Harbor user settings

Configure item nameDescriptionTypeRequiredDefault Value
auth_modeAuthentication mode, it can be db_auth, ldap_auth, uaa_auth or oidc_authstring
email_fromEmail fromstringrequired (email feature)
email_hostEmail serverstringrequired (email feature)
email_identityEmail identitystringoptional (email feature)
email_passwordEmail passwordstringrequired (email feature)
email_insecureEmail verify certificate, true or falsebooleanoptional (email feature)false
email_portEmail server portnumberrequired (email feature)
email_sslEmail SSLbooleanoptionalfalse
email_usernameEmail usernamestringrequired (email feature)
ldap_urlLDAP URLstringrequired
ldap_base_dnLDAP base DNstringrequired(ldap_auth)
ldap_filterLDAP filterstringoptional
ldap_scopeLDAP search scope, 0-Base Level, 1- One Level, 2-Sub Treenumberoptional2-Sub Tree
ldap_search_dnLDAP DN to search LDAP usersstringrequired(ldap_auth)
ldap_search_passwordLDAP DN’s passwordstringrequired(ldap_auth)
ldap_timeoutLDAP connection timeoutnumberoptional5
ldap_uidLDAP attribute to indicate the username in Harborstringoptionalcn
ldap_verify_certVerify cert when create SSL connection with LDAP server, true or falsebooleanoptionaltrue
ldap_group_admin_dnLDAP Group Admin DNstringoptional
ldap_group_attribute_nameLDAP Group Attribute, the LDAP attribute indicate the groupname in Harbor, it can be gid or cnstringoptionalcn
ldap_group_base_dnThe Base DN which to search the LDAP groupsstringrequired(ldap_auth and LDAP group)
ldap_group_search_filterThe filter to search LDAP groupsstringoptional
ldap_group_search_scopeLDAP group search scope, 0-Base Level, 1- One Level, 2-Sub Treenumberoptional2-Sub Tree
ldap_group_membership_attributeLDAP group membership attribute, to indicate the group membership, it can be memberof, or ismemberofstringoptionalmemberof
project_creation_restrictionThe option to indicate user can be create object, it can be everyone, adminonlystringoptionaleveryone
read_onlyThe option to set repository read only, it can be true or falsebooleanoptionalfalse
self_registrationUser can register account in Harbor, it can be true or falsebooleanoptionaltrue
token_expirationSecurity token expirtation time in minutesnumberoptional30
uaa_client_idUAA client IDstringrequired(uaa_auth)
uaa_client_secretUAA certificatestringrequired(uaa_auth)
uaa_endpointUAA endpointstringrequired(uaa_auth)
uaa_verify_certUAA verify cert, true or falsebooleanoptionaltrue
oidc_nameName for OIDC authenticationstringrequired(oidc_auth)
oidc_endpointEndpoint for OIDC authstringrequired(oidc_auth)
oidc_client_idClient id for OIDC authstringrequired(oidc_auth)
oidc_client_secretClient secret for OIDC authstringrequired(oidc_auth)
oidc_scopeCcope for OIDC authstringrequired(oidc_auth)
oidc_verify_certVerify certificate for OIDC auth, true or falsebooleanoptionaltrue
robot_token_durationRobot token expiration time in minutesnumberoptional43200 (30days)

Both booleans and numbers can be enclosed with double quote in the request json, for example: 123, "123", "true" or true is OK.