DEV Community

Cover image for Developer led Kubernetes experience
Bruno
Bruno

Posted on • Updated on

Developer led Kubernetes experience

It’s no secret that Kubernetes is complex, and hence, many organizations rely heavily on building a DevOps team to implement and manage it.

While Kubernetes enables you to build a scalable infrastructure where you can run your applications at scale, it introduces a dependency on the DevOps team, poor developer experience, and an increase in costs.

These are points that many development-led teams don’t want to deal with, especially in organizations where delivering your application is the top priority, you need a developer self-service model, and you want to make sure both complexity and costs are under control.

You can do that today by implementing an Internal Developer Platform. We will use Shipa as the Developer Platform, and you can create a free account here.

Requirements

Getting Started

You can get started by creating a Framework. This is how Shipa will connect to your cluster and allow you to deploy applications without all the complexity Kubernetes introduces.

Create a Framework by clicking on the Frameworks option on your left menu, then click on Create

Creating a Framework

Although you can use Frameworks to enforce policies, we will keep things simple for this example. Choose the Deploy applications with reasonable defaults option and click on Next.

You can later create multiple frameworks to help you isolate applications, which is excellent if you plan to build a multi-tenant environment.

Enter the Framework name and the resource limit plan (you can use the pre-created shipa-plan), and choose the default team (shipa-team). Click on Create

Creating a Framework

With your Framework created, connect it to your Kubernetes cluster.

Click on the Clusters menu option and then on Create

Connecting to a Cluster

Select the Framework (or Frameworks) you created and enter your Kubernetes API endpoint, which you can get by running the following command from your terminal (assuming you are connected to your cluster):

kubectl cluster-info | grep 'Kubernetes' | awk '/http/ {print $NF}'

That’s it! You have a developer platform connected to your Kubernetes cluster without dealing with any Kubernetes complexity. Let’s deploy an application. Click on the Applications menu option and then on Add Application.

Deploying an Application

You can quickly test the application process and experience by entering an application name and selecting the default team and framework you just created.

You can use a sample image for the application image by clicking on the TEST WITH SAMPLE IMAGE button.

Clicking on Deploy will get the deployment process started, and, in a few seconds, you will see your application available and running.

Application Dashboard

By clicking on the application name, Shipa will give you complete information about your application, status, metrics, history, and more:

Application Dashboard

Shipa automatically creates a URL endpoint you can use to access your application.

That’s it. In just a few minutes, you can connect to any Kubernetes cluster and start deploying and managing applications without dependency on a large and specialized Kubernetes team!

Top comments (0)