What is the correct process to store images in a project on the Registry Service?
What is the correct process to store images in a project on the Registry Service?
The correct process to store images in a project on the Registry Service is to use the docker push command. This command is used to upload container images to a container registry. The kubectl command is primarily used for interacting with Kubernetes clusters, and the vSphere Client is used for managing vSphere environments, which is not directly related to storing container images in a Registry Service.
To push an image to a project in Harbor, run the following command: docker push <container-registry-IP>/<namespace-name>/<image_name>
I agree with Anthony. Docker push.
https://docs.vmware.com/en/VMware-vSphere/7.0/vmware-vsphere-with-tanzu/GUID-EC76B511-8DEB-4595-9DFA-3E9567C98ECA.html
`docker push` is the command to use
Correct Answer is B. We use docker push command.