rbd-hub
rbd-hub component description
Based onDocker Registrypackage, providing docker image storage service
Operation mode
Running inside the Kubernetes cluster, POD running, jointly maintained and managed by Kubernetes and Rainbond-Operator
Common parameter description
rbd-hub is based on registry image, please refer to Docker Registry official documentationfor detailed parameters
Push images to the cluster's private image repository
tip
Do the following on any node in the cluster
First obtain the relevant information of the private image repository
kubectl get rainbondcluster -n rbd-system -o yaml|grep -A 3 imageHub
imageHub:
domain: goodrain.me
password: 2118317a
username: admin
Log in to the private mirror repository
$ docker login goodrain.me -uadmin -p2118317a
Change the name of the image to be pushed togoodrain.me/***
, and perform thepush
operation directly
Take pushingnginx
image as an example
# Modify image name
docker tag nginx goodrain.me/nginx:v1
# push image
docker push goodrain.me/nginx:v1