Use JFrog Artifactory to Deliver Software with Confidence to AWS EKS

JFrog Artifactory on AWS EKS

AWS is launching the Amazon Elastic Container Service for Kubernetes (Amazon EKS) and is announcing JFrog as a proud integration partner. Over the past year, it seems that even companies that weren’t in the first phase of Kubernetes adoption are now joining the party. JFrog has been a key part of the container movement, launching an enterprise-grade Docker registry back in 2015. Now, nearly three years later, we offer a robust Kubernetes Registry that is compatible with a growing list of Kubernetes cluster providers.

Based on our experience with customers and the community adopting Kubernetes, you need to combine these 3 Kubernetes essentials to create the new infrastructure abstraction smoothly:

  • A k8s cluster (which EKS has incredibly simplified).
  • A pipeline (which you can get from many sources including our partners, and soon to be available on AWS CodeStar).
  • JFrog Artifactory serving as your Kubernetes registry.

In this blog post, we’ll show you how to quickly and easily configure Artifactory as your Kubernetes registry for EKS.

Provisioning and configuring Artifactory as your Kubernetes Registry

Choices for deploying Artifactory

Artifactory can run from a number of possible locations. Our example is based on subscribing to JFrog Artifactory Cloud through the AWS Marketplace.
Additional available options are:

Let’s get started!

    1. Subscribe to JFrog Artifactory Cloud through the AWS Marketplace.
    2. Following your subscription to AWS Marketplace, JFrog generates and sends you an email with your account details and user credentials. Use your assigned credentials to log in to the JFrog Artifactory Account Management Dashboard to view and control your account information.
      Artifactory Account Mgt Dashboard
                                                                     Figure 1 – JFrog Account Management Dashboard
    3. Click GO TO MY SERVER to launch the Artifactory onboarding wizard.

                                                                    Figure 2 – JFrog Artifactory onboarding wizard
    4. Select the software repositories you want to manage. In this example, we have only selected a handful of repositories including Docker, Helm, Maven, NPM, and NuGet.
      Universal Repositories in Artifactory
                                                                   Figure 3 – Supported package types in Artifactory

      A configuration summary is displayed when you complete the wizard displaying all the handy things that were configured to make your life easier including local, remote, and virtual repositories.
      Artiactory Onboarding Wizard

      Figure 4 – Artifactory configuration settings summary

      To learn more about how to plan for production, see Best Practices for Structuring and Naming Artifactory Repositories.

Creating an Artifactory private Docker registry

Now let’s configure Docker to use Artifactory as your private Docker registry.

  1. From the Artifactory Home page, click the Docker virtual repository in the Set Me Up panel.
    The command to log in to your Docker registry is displayed.
    Set up Your Docker Registry
                                                                 Figure 5 – Docker Set Me Up in Artifactory
  2. Copy the docker login command to log in to the Docker client. Use your Admin username and password, as we have not enabled anonymous access.
  3. Proceed to use the Docker client.

    docker pull partneraws-docker.jfrog.io/nginx
    Using default tag: latest
    Latest: Pulling from nginx
    Digest:sha256:e4f-47a75c510f40b37b6b7dc6b7dc2516241ffa8vde5a442vde3d3372c9519c84d90
    Status: Downloaded newer image for partneraws-docker.jfrog.io/nginx:latest
  4. In the Artifactory Package Viewer search for nginx to view it in Artifactory.
  5. Click the image to view the tag details.
    Arifactory Package Viewer
                                                                 Figure 6 – Artifactory Package Viewer

Provisioning EKS

Provisioning a Kubernetes cluster using EKS is just as easy.

  1. Access the AWS Amazon EKS console and click Create Cluster.
    Create K8s Cluster in EKS AWS
                                                                 Figure 7 – Creating a cluster in the AWS Amazon EKS console
  2. Configure your master cluster.
    The settings in our example are the default settings used for the EKS trials. Your settings may vary.
    AWS EKS Cluster Configuration

    Figure 8 – Configure the master cluster in AWS Amazon EKS console
    As the cluster is provisioned, the EKS progress is displayed.
    Cluster Creation Initiated
    Cluster Setting in Progress

                                                             Figure 9 – The cluster is provisioned in EKS
The endpoint is displayed when the process ends.
Cluster Details

                                                             Figure 10 – The endpoint is created

  1. Configure the worker nodes as described in the AWS EKS documentation.
  2. Make sure that kubectl is setup as per the AWS EKS documentation.
  3. Verify that the pods are not deployed.

    kubectl get pods
    No resources found.

Running a simple nginx deployment on the EKS cluster

Now let’s run a simple nginx deployment on the EKS cluster using the Docker image from Artifactory.

  1. Create a Kubernetes secret to authenticate with your private Artifactory hosted Docker registry.
    kubectl create secret docker-registry regcred 
    --docker-server=parneraws-docker.jfrog.io 
    --docker-username=admin
    --docker-password=[your_password] --docker-email=[your_email]
  2. Create a simple Kubernetes .yaml file to run two pods of nginx. Referenced from the Kubernetes Deployment Example.
    craigp-mac:~ craiggp$ cat run-nginx.yaml
    apiVersion: apps/v1 # for versions before 1.9.0 use apps/v1beta2
    kind: Deployment
    metadata:
       name: nginx-deployment
    spec:
     selector:
        matchLabels:
           app: nginx
      replicas: 2 # tells deployment to run 2 pods matching the template
      template: # create pods using pod definition in this template
        metadata:
           # unlike pod-nginx.yaml, the name is not included in the metadata as a unique
           name is 
           # generated from the deployment name
           labels:
              app: nginx
        spec:
           containers:
           - name: nginx
           - image: partneraws-docker.jfrog.io/nginx:1.7.9
           ports:
          - containerPort: 80
       imagePullSecrets:
          - name: regcred  
  3. Create the deployment using kubectl.

    kubectl apply -f run-nginx.yaml 
    deployment.apps “nginx-deployment” created
    

    And now you can view two pods running the images pulled from your private Docker
    registry.

    kubectl get pods
     
    NAME                               READY STATUS   RESTARTS AGE
    Nginx-deployment-74d975fb86-4vtxt  1/1   Running  0        51s
    Nginx-deployment-74d975fb86-T771n  1/1   Running  0        36s

Try it and let us know what you think!

Creating a safe and effective way to run cloud-native applications has never been safer or easier than before using Artifactory as your Kubernetes registry for clusters managed by AWS using EKS.

Click to try Amazon Elastic Container Service for Kubernetes (Amazon EKS) and JFrog Artifactory Cloud on AWS Marketplace free trial.

We’d appreciate your feedback. Please provide me your feedback at https://www.twitter.com/peterscraig.