在 Kubernetes 上部署 Harbor
To deploy Harbor on Kubernetes, it requires some additional steps because
When Harbor registry uses https, so we need cert or workaround to avoid errors like this:
123Error response from daemon: invalid registry endpoint https://{HOST}/v0/: unable to ping registry endpoint https://{HOST}/v0/v2 ping attempt failed with error: Get https://{HOST}/v2/: EOFv1 ping attempt failed with error: Get https://{HOST}/v1/_ping: EOF. If this private registry supports only HTTP or HTTPS with an unknown CA certificate, please add `--insecure-registry {HOST}` to the daemon's arguments. In the case of HTTPS, if you have access to the registry's CA certificate, no need for the flag; simply place the CA certificate at /etc/docker/certs.d/{HOST}/ca.crtThere is a workaround if you don’t have a cert. The workaround is to add the host into the list of insecure registry by editting the
file: 12```bashsudo vi /etc/default/dockeradd the line at the end of file:
1DOCKER_OPTS="$DOCKER_OPTS --insecure-registry={HOST}"restart docker service
1sudo service docker restartThe registry config file needs to have the IP (or DNS name) of the registry, but on Kubernetes, you don’t know the IP before the service is created. There are several workarounds to solve this problem for now:
- Use DNS name and link the DNS name with the IP after the service is created.
- Rebuild the registry image with the service IP after the service is created and use
rolling-update``` to update to the new image. 1234To start Harbor on Kubernetes, you first need to build the docker images. The docker images for deploying Harbor on Kubernetes depends on the docker images to deploy Harbor with docker-compose. So the first step is to build docker images with docker-compose. Before actually building the images, you need to first adjust the [configuration](https://github.com/vmware/harbor/blob/master/make/harbor.cfg):- Change the [hostname](https://github.com/vmware/harbor/blob/master/make/harbor.cfg#L5) to ```localhost
- Adjust the email settings according to your needs.
Then you can run the following commends to build docker images:
where “your_account” is your own registry. Then you need to update the “image” field in the
Further more, the following configuration could be changed according to your need:
- harbor_admin_password: The password for the administrator of Harbor, by default the password is Harbor12345. You can changed it here.
- auth_mode: The authentication mode of Harbor. By default it is db_auth, i.e. the credentials are stored in a database. Please set it to ldap_auth if you want to verify user’s credentials against an LDAP server. You can change the configuration here.
- ldap_url: The URL for LDAP endpoint, for example ldaps://ldap.mydomain.com. It is only used when auth_mode is set to ldap_auth. It could be changed here.
- ldap_basedn: The basedn template for verifying the user’s credentials against LDAP, for example uid=%s,ou=people,dc=mydomain,dc=com. It is only used when auth_mode is set to ldap_auth. It could be changed here.
- db_password: The password of root user of mySQL database. Change this password for any production use. You need to change both here and here to make the change. Please note, you need to change the
before building the docker images. 12Finally you can start the jobs by running:
kubectl create -f make/kubernetes
```