# Prerequisites
To collaborate on the External Secrets Operator (ESO) project, you need to install some tools on your computer. This guide explains what each tool is, why it is needed, the recommended version, and how to install it on the corresponding operating system.
### Supported Operating Systems
To collaborate on the External Secrets Operator (ESO) project, it is recommended to use Unix-based operating systems, such as Linux and macOS. ESO's development environment is primarily designed for these systems, and many of the tools and scripts used during development are built to work on them.
### Can You Develop on Windows?
It is possible to use Windows for development, but there are important considerations to keep in mind. Since ESO's development environment is not optimized for Windows, compatibility issues may arise with tools like Make, Tilt, and shell scripts. The project's automation scripts and commands are written for Unix environments, using bash scripting, which might not be compatible with Windows without adaptations. This tutorial will not cover the installation and configuration of tools on Windows due to its complexity and lack of testing.
---
## Install Go (Golang)
Go, also known as Golang, is a programming language design at Google by Robert Griesemer, Rob Pike, and Ken Thompson. It is known for being efficient, easy to learn, and excellent for developing fast and scalable applications. In the External Secrets Operator project, Go is used to develop core parts of the code. It is required to compile, run, and contribute to the project's source code. Minimum version: Go 1.20 or higher. Recommended version: Go 1.24.1About Golang
What is Go?
Why is Go needed?
Golang Installation
Required Version
As of this writing, the latest version of Go is 1.24.1As of this writing, the latest version of Go is 1.24.1 , which worked perfectly with the External Secrets Operator project. Previous versions failed to test the application. Before testing the project, check your Go version.
How to Install Go
Please consult the official documentation.
Helm is a package manager for Kubernetes, the platform that automates deployment, scaling, and management of containerized applications.
In the External Secrets Operator project, Helm is used to simplify the installation and management of applications within Kubernetes, automating complex configuration and deployment processes.
Recommended version: Helm 3 (latest version of Helm 3).
Please consult the official Helm installation guide.
yq is a command-line tool for reading, manipulating, and writing YAML files, which are widely used for configurations.
In the External Secrets Operator project, yq is used to automate the editing of YAML configuration files, facilitating adjustments and implementations.
Recommended version: yq v4.44.3 or higher.
Please consult the official yq repository.
jq is a command-line tool for processing and manipulating JSON data.
In the External Secrets Operator project, jq is essential for working with JSON data, enabling efficient filtering and transformation of information.
Recommended version: jq 1.6 or later.
Please consult the official jq website.
Kubernetes is an open-source platform for automating the deployment, scaling, and management of containerized applications. It orchestrates containerized workloads across a cluster of machines, ensuring high availability and efficient resource utilization.
In the External Secrets Operator project, Kubernetes provides the infrastructure to deploy and manage containerized applications. It allows integration with cloud-native services, enabling scalability, fault tolerance, and streamlined operations in dynamic environments.
To work with Kubernetes, we need to install and configure some tools first. This will be explained in the sections below. For more details, check the [official documentation](https://kubernetes.io/docs/home/).
Docker is a platform for building, deploying, and running applications in containers. Containers package an application with all its dependencies into a standard unit for development and deployment.
In the External Secrets Operator project, Docker is used to create container images and run services in isolated environments. It is essential for developing, testing, and deploying the application within a Kubernetes environment.
By default, Docker requires superuser (root) privileges to run. To simplify usage, it is recommended to add the current user to the docker group to execute commands without sudo.
sudo groupadd docker
sudo usermod -aG docker $USER
newgrp docker
docker run hello-world
If the command works without errors, the configuration is successful.
kubectl is the command-line tool for managing Kubernetes clusters. It enables running commands on the cluster, managing resources, and debugging applications.
In the External Secrets Operator project, kubectl is used to interact with local or remote Kubernetes clusters, apply configurations, and check the state of deployed resources.
A version compatible with the installed Kubernetes version (usually the latest stable version).
Please consult the official kubectl documentation.
ctlptl (Control Plane Tool) is a tool for managing local Kubernetes development clusters. It simplifies the creation and management of clusters like Kind (Kubernetes in Docker) and the configuration of local container registries.
In the External Secrets Operator project, ctlptl is used to create and manage a local Kubernetes cluster using Kind, as well as to configure a local container registry to store Docker images during development.
The latest available version of ctlptl.
Please consult the official ctlptl installation guide.
Kind (Kubernetes in Docker) is a tool to run local Kubernetes clusters using Docker containers as cluster nodes.
docker run -d --restart=always -p "5000:5000" --name kind-registry registry:2
ctlptl create cluster kind --registry=kind-registry
This will create a Kind cluster configured to use the local registry at localhost:5000.
kubectl cluster-info --context kind-kind
ctlptl get clusters
Tilt is a tool that accelerates development in Kubernetes environments. It automates building, deploying, and monitoring code, enabling a faster development cycle.
In the External Secrets Operator project, Tilt is used to develop and test code changes efficiently, reflecting updates almost instantly in the local Kubernetes environment.
Please consult the official Tilt installation guide.