Artifactory how many repository can I create? - docker

I have artifactory pro license.
I want to use the artifactory for docker repository.
As you know, docker repository support user namespace like this,
example.com/username/imagename:tag
but artifactory use repository name instead of username.
but i wanna to use username space and apply permission for each user for their repository.
so, how many repository supported?

Using an Artifactory pro myself, I confirm a docker registry support as many namespace (not just username) as you would need.
All I need to do is:
login
docker login my-registry
tag
docker tag my_tag my-registry:my_label/my_tag
push
docker push my-registry:my_label/my_tag
With "my-registry" being the name of the server referencing your artifactory docker registry, as configured by "Configuring Artifactory / Configuring a Reverse Proxy / Configuring NGINX "
That is because Docker requires the URL of any repository it connects to conform to a specific format (http(s)://<host>:<port>/v1), and Artifactory requires a specific URL format (http://<host>:<port>/artifactory/api/docker/<docker_repository>).
Hence the need for a reverse proxy.
But: there is no notion of username, only namespace.
As mentioned in Artifactory Docker Registry:
With the fine-grained access control provided by built-in security features, Artifactory offers secure Docker push and pull with local Docker repositories as fully functional, secure, private Docker registries.
But those built-in security features are for user authentication to Artifactory in general, not specific to a docker registry which has no notion of username: if a user has permission of pushing to a docker registry, it pushing to any part of it.
I want is to perform ACLs on a namespace basis.
As far as I know, this would not be supported.
You might configure NGiNX to filter that for you, but Artifactory itself does not provide docker registry namespace-based ACL.
So I want to create a repository for each user and grant permission to that repository to use an artifactory like a docker hub. So I'm wondering how many repositories I can create in an artifactory
That implies two things:
different local docker repositories: there are no official limit to the number of repos, only local storage quota limits.
different NGiNX reverse proxied domain names: each separate registry needs to have its own domain name.

Related

Change default registry for docker push commands

There is an option to set registry-mirrors in daemon.json of docker to config default registry while pulling images.
Is there another way so I can push docker images to a local registry by default (without specifying local registry URL)?
To describe more, we have 2 nexus repositories, one as proxy of default registry (so we pull images through it), and one hosted one.
We want all developers push their images to our hosted registry, not docker hub.
registry-mirrors is a mirror of Docker Hub, so the design is to push to the authoritative source, and if a pull to one of the Hub mirrors fails, that will also fall back to Hub.
It looks like what you are trying to do is merge a multiple namespaces into one, the namespace for Hub, and the namespace for your local Nexus repositories. Doing that is dangerous because deploying the same image reference on different machines, or when the Nexus instance is unavailable for any reason, will result in a dependency confusion attack.
The design of image references is to always specify the registry when you don't want to use Docker Hub. This avoids the dependency confusion attacks seen by other package repositories.
If you're worried about developers pushing images to Hub that they shouldn't be, then I'd recommend setting up an HTTP proxy that rejects POST and PUT requests to registry-1.docker.io (a pull uses GET and HEAD requests), and make sure all developers use that proxy (typically via a network policy that doesn't allow direct access without the proxy).

How to setup Nexus OSS in order to use docker proxy credentials

I've purchased a Docker account and setup my Docker proxy using Nexus OSS as following :
Repositories -> Create a Docker Proxy -> Select Use Docker Hub (Remote Storage : https://registry-1.docker.io) -> with Authentication Enabled (providing username/password of Docker)
And inside my client I configured it to use my Nexus as registry mirror using following command :
systemctl edit docker
then added:
[Service]
ExecStart=
ExecStart=/usr/bin/dockerd -H fd:// --registery-mirror=https://myprivatenexus.com
Yet when I'm trying to use "docker pull" inside my client I'll get the annoying "Docker Hub Pull Limits" error.
Is it possible to use my Docker account inside Nexus or should I try something else?
We used Nexus at work in a similar setting. Your nexus configuration looks like ours. For me the client mirror configuration looks strange. If I access a nexus repository without any configured connectors the I have to configure on client side the whole context path.
After your screenshot: https://YOUR_SERVER/repository/DockerHub
If you would connect a dedicated repository connector e.g. http/8088, then you could configure your client with
http://YOUR_SERVER:8088
The documentation from sonatype describes the same:
A configured context-path for the user interface does not affect the repository connector URLs used by Docker. E.g. if your repository manager instance is configured to be available at http://localhost:8081/nexus instead of the default root context http://localhost:8081/, the URLs for your Docker repositories will still only use the configured port for the repository and omit the context path in the URL. This is a side-effect of the the fact that Docker does not support context paths in the registry API.

How to run docker image in AKS without using docker repository

I am using Azure Kubernetes Service(AKS) and I am no allowed to use Docker Hub repository for pushing and pulling Images, so please tell me, is there a way to create kubernetes deployments or pods by using tar of image or by pulling image using ssh connection from other server in which I am having Docker engine running.
I am assuming that the reason why you are not allowed to use Docker Hub is because of the company policy that wants to keep everything private and contained within Azure.
In that case, I suggest using the Azure's own container registry service named Azure Container Registry which have the following benefit:
It works similar to DockerHub in the sense that you can just sign in with username and password, update the image name and you are good to go.
It is the solution from Azure which should fit nicely in your Infrastructure design. Please refer to this link for details instructions on how to connect your AKS and ACR.
The traffic flow from AKS and ACR is private and not exposed to the Internet.

Google Cloud Kubernetes accessing private Docker Hub hosted images

Is it possible, to pull private images from Docker Hub to a Google Cloud Kubernetes cluster?
Is this recommended, or do I need to push my private images also to Google Cloud?
I read the documentation, but I found nothing that could explain me this clearly. It seems that it is possible, but I don´t know if it's recommended.
There is no restriction to use any registry you want. If you just use the image name, (e.g., image: nginx) in pod specification, the image will be pulled from public docker hub registry with tag assumed as :latest
As mentioned in the Kubernetes documentation:
The image property of a container supports the same syntax as the
docker command does, including private registries and tags. Private
registries may require keys to read images from them.
Using Google Container Registry
Kubernetes has native support for the Google Container Registry (GCR), when running on Google
Compute Engine (GCE). If you are running your cluster on GCE or Google
Kubernetes Engine, simply use the full image name (e.g.
gcr.io/my_project/image:tag). All pods in a cluster will have read
access to images in this registry.
Using AWS EC2 Container Registry
Kubernetes has native support for the AWS EC2 Container Registry, when nodes are AWS EC2 instances.
Simply use the full image name (e.g.
ACCOUNT.dkr.ecr.REGION.amazonaws.com/imagename:tag) in the Pod
definition. All users of the cluster who can create pods will be able
to run pods that use any of the images in the ECR registry.
Using Azure Container Registry (ACR)
When using Azure Container Registry you can authenticate using either an admin user or a
service principal. In either case, authentication is done via standard
Docker authentication. These instructions assume the azure-cli command
line tool.
You first need to create a registry and generate credentials, complete
documentation for this can be found in the Azure container registry
documentation.
Configuring Nodes to Authenticate to a Private Repository
Here are the recommended steps to configuring your nodes to use a private
registry. In this example, run these on your desktop/laptop:
Run docker login [server] for each set of credentials you want to use. This updates $HOME/.docker/config.json.
View $HOME/.docker/config.json in an editor to ensure it contains just the credentials you want to use.
Get a list of your nodes, for example:
if you want the names: nodes=$(kubectl get nodes -o jsonpath='{range.items[*].metadata}{.name} {end}')
if you want to get the IPs: nodes=$(kubectl get nodes -o jsonpath='{range
.items[*].status.addresses[?(#.type=="ExternalIP")]}{.address}
{end}')
Copy your local .docker/config.json to the home directory of root on each node.
for example: for n in $nodes; do scp ~/.docker/config.json root#$n:/root/.docker/config.json; done
Use cases:
There are a number of solutions for configuring private registries.
Here are some common use cases and suggested solutions.
Cluster running only non-proprietary (e.g. open-source) images. No need to hide images.
Use public images on the Docker hub.
No configuration required.
On GCE/Google Kubernetes Engine, a local mirror is automatically used for improved speed and availability.
Cluster running some proprietary images which should be hidden to those outside the company, but visible to all cluster users.
Use a hosted private Docker registry.
It may be hosted on the Docker Hub, or elsewhere.
Manually configure .docker/config.json on each node as described above.
Or, run an internal private registry behind your firewall with open read access.
No Kubernetes configuration is required.
Or, when on GCE/Google Kubernetes Engine, use the project’s Google Container Registry.
It will work better with cluster autoscaling than manual node configuration.
Or, on a cluster where changing the node configuration is inconvenient, use imagePullSecrets.
Cluster with a proprietary images, a few of which require stricter access control.
Ensure AlwaysPullImages admission controller is active. Otherwise, all Pods potentially have access to all images.
Move sensitive data into a “Secret” resource, instead of packaging it in an image.
A multi-tenant cluster where each tenant needs own private registry.
Ensure AlwaysPullImages admission controller is active. Otherwise, all Pods of all tenants potentially have access to all
images.
Run a private registry with authorization required.
Generate registry credential for each tenant, put into secret, and populate secret to each tenant namespace.
The tenant adds that secret to imagePullSecrets of each namespace.
Consider reading the Pull an Image from a Private Registry document if you decide to use a private registry.
There are 3 types of registries:
Public (Docker Hub, Docker Cloud, Quay, etc.)
Private: This would be a registry running on your local network. An example would be to run a docker container with a registry image.
Restricted: That is one registry that needs some credentials to validate. Google Container Registry (GCR) in an example.
As you are well saying, in a public registry, such as Docker Hub, you can have private images.
Private and Restricted registries are more secure obviously, as one of them is not even exposed to internet (ideally), and the other one needs credentials.
I guess you can achieve an acceptable security level with any of them. So, it is matter of choice. If you feel your application is critical, and you don't want to run any risk, you should have it in GCR, or in a private registry.
If you feel like it is important, but not critical, you could have it in any public repository, making it private. This will give a layer of security.

artifactory as docker registry

I tried to set up artifactory as docker registry as shown in this video: http://www.jfrog.com/video/artifactory-docker-integration/
However, I don't have SSL installed in artifactory so I'm using the --insecure-registry flag. (as shown in error in docker build publish plugin and Remote access to a private docker-registry)
Anyway, I don't know how to figure out the artifactory as docker registry url so I can do this:
curl -k -uusername:password "http://sdpvvrwm812.ib.tor.company.com:8081/artifactory/api/docker/docker-images"
This page, http://www.jfrog.com/confluence/display/RTF/Docker+Repositories, shows at the bottom that something called a reverse proxy might be needed? Is this true and if so how do I install such a thing?
The reason behind requiring a reverse proxy in front of Artifactory is related to a Docker client limitation - you cannot use a context path when providing the registry path, e.g sdpvvrwm812.ib.tor.company.com:8081/artifactory/api/docker/docker-images is not valid.The Docker client assumes you are working with one big registry for all images, while Artifactory allows you to manage multiple registries (repositories) on the same server.
To overcome this issue you should setup a reverse proxy which will allow the Docker client to send requests to the root context and forward those requests to the correct repository path in Artifactory. For example, forwarding requests from sdpvvrwm812.ib.tor.company.com:8888/ to sdpvvrwm812.ib.tor.company.com:8081/artifactory/api/docker/docker-images
The Artifactory documentation contains configuration examples for NginX, Apache and HAProxy.
Notice that there are different configurations for Docker registry API v1 and v2.
After setting up the reverse proxy, the Docker client should use the proxy in order to access Artifactory.
If you are using the --insecure-registry flag there is no need to configure an SSL certificate. With older versions of Docker, before this flag was introduced (Docker 1.3.2) it was a mandatory requirement.

Resources