Harbor Installation, Push/Pull
in blog on Harbor, Pull, Push
Harbor Installation, Push, Pull
Installation
Download: values.yaml
Using
- expose.type: loadBalancer
- expose.tls.enabled: false
- externalURL: http://core.harbor.localhost
expose:
type: loadBalancer
ports:
httpPort: 80
tls:
enabled: false # true
externalURL: http://core.harbor.localhost
kubectl create ns hb
helm install harbor -f values.yaml . -n hb
minikube tunnel
Login
browse to http://localhost
id: admin
, password: Harbor12345
Image Push
docker login core.harbor.localhost
id: admin
, password: Harbor12345
docker pull pushdown99/myweb1
docker tag pushdown99/myweb1:latest core.harbor.localhost/library/myweb1:latest
docker push core.harbor.localhost/library/myweb1:latest