Using Cloud IDEs to Develop for the Cloud | SUSE Communities

Using Cloud IDEs to Develop for the Cloud

Share

Deploying changes rapidly is an important part of developing cloud native applications. Because of this, many teams strive to build development environments that have close parity with their production environments to simplify and speed up testing. Whether it is a remote staging server or a local cluster, developers are looking for better development workflows.

Disclaimer: I work at Coder, a cloud development platform and maintainers of code-server (cloud IDE).

What Constitutes a Cloud IDE?

Cloud-based IDEs offer one pathway for improvement. When most people think of cloud IDEs, they envision an editor only accessible from the web browser. While this is often the case, running a local IDE that supports a remote target is possible. Both variations will be referred to as “cloud IDEs” in this post.

VS Code Remote is a great way to develop and debug on remote environments, either on your local machine (such as a k3d cluster) or an environment in the cloud.

Also, many modern web IDEs are open source, fast, and provide a familiar development experience:

Cloud IDEs offer interesting workflows to developers by bringing the development tools, source code, and IDE to the cloud. Developers using cloud IDEs do not have to configure their local machine, install dependencies or clone source code. Cloud IDEs can also be much closer to production environments, such as a remote Kubernetes cluster, thereby reducing latency when accessing other cloud-based resources, such as databases. Read more about the advantages of using a cloud IDE.

Development Platforms

It’s common to see cloud IDEs paired with remote development platforms, such as CoderGitPod, or RedHat CodeReady Workspaces. These let teams provision workspaces on demand and configure workspaces on a team or admin level.

This makes it possible, for example, to avoid version mismatches by orchestrating version bumps of the developers’ environments, such as a new version of Python, or to roll out a new dev tool to multiple users simultaneously.

Many of these platforms, including ours at Coder, take an editor-neutral approach in order to support the popular cloud IDEs that work best for organizations.

Try a Cloud IDE: code-server

Because code-server is built for the web, it’s a popular choice for developing from an iPad or Chromebook. It’s also used for secure remote development, so developers don’t need to use a remote desktop or a VPN to access and test their code.

code-server has packages on many operating systems, as well as a Docker image and a helm chart so that it can be deployed into your cloud for a remote dev environment.

To get started, follow the install guides to install on your local machine or a remote server. Once installed, you can use the –link flag to tunnel code-server without setting up networking or authentication:

$ code-server --link

Proxying code-server, you can access your IDE at
https://bens_macbook-bpmct.cdr.co

Now, Create a Cloud Development Environment

If you want to develop on any device, like an iPad, “code-server –link” on your main desktop or VM will do the trick!

To source-controlled workspaces and roll-out changes, deploying a custom code-server container with your development tools (kubectl, helm, Python, pip, etc.) is a great way to go! Development platforms like Coder can help distribute these environments across your teams.

(Visited 1 times, 1 visits today)