Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: update development.md #6258

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
70 changes: 63 additions & 7 deletions developers-guide/README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,68 @@
# Local Devtron Dev Setup
# Development Guide for Devtron

For all the open source contributors out there looking for contributing to Devtron’s code base, here’s how easily you can start contributing in Devtron.
This document provides instructions for setting up a development environment to help you get started with contributing to [Devtron](github.com/devtron-labs/devtron). Make sure to review the [contributing.md](https://github.com/devtron-labs/devtron/blob/main/CONTRIBUTING.md) file for more details on contributing. This document will help guide you through understanding the build process.

## Prerequisite
Any kubernetes Cluster
## Requirements
- [Go Programming language](https://go.dev/)
- [Docker](https://www.docker.com/)
- [Kubernetes Cluster](https://kubernetes.io/)
- [Helm v3](https://helm.sh/)

## Setup Guide
We have documented some of the most popular and easiest ways of creating local kubernetes clusters and setting up the development environment for devtron in our machine.

* [Over Minikube Cluster](https://dev.to/arushi09/local-kubernetes-development-made-easy-with-minikube-devtron-17hf)
* [Over k3s Cluster using k3d](https://hackernoon.com/how-to-install-k3d-and-devtron-locally-for-local-kubernetes-development)
### Install Devtron in a Kubernetes cluster

1. [Create a Kubernetes Cluster](https://docs.devtron.ai/getting-started#create-a-kubernetes-cluster)
- 2 vCPUs
- 4GB+ of free memory
- 20GB+ free disk space

2. [Install Devtron with CI/CD along with GitOps (Argo CD) - Full mode](https://docs.devtron.ai/install/install-devtron-with-cicd-with-gitops)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why should I install with full mode? what if I want to test non-full mode feature?

Copy link
Member

@abhibhaw abhibhaw Jan 13, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

probably this would be too heavy for development that it may not work on most of the pc

Not sure, but we can consider this as well

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why should I install with full mode? what if I want to test non-full mode feature?

Good point. I had a thought that if someone is installing full mode he may play more.


```bash
helm repo add devtron https://helm.devtron.ai
helm repo update devtron
helm install devtron devtron/devtron-operator \
--create-namespace --namespace devtroncd \
--set installer.modules={cicd} \
--set argo-cd.enabled=true
```

Note: If you want to install Devtron on a Managed Kubernetes cluster, please [refer to the guide](https://docs.devtron.ai/install/demo-tutorials).

3. Download the kubeconfig file to access your cluster. It’s a good idea to set it up locally and configure the context to point to the specific cluster you’re working with.

4. Forward the port of PostgreSQL service and Devtron NATS service:

```bash
kubectl -n devtroncd port-forward svc/devtron-nats 4222:4222
Copy link
Member

@abhibhaw abhibhaw Jan 13, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nats may not be there if not full mode

yeah, but the whole documentation is assumed for full mode. we can create a separate doc for that and hyperlink here.

kubectl -n devtroncd port-forward svc/postgresql-postgresql 5432:5432
```

5. Use this command to extract the password of PostgreSQL (Required to put in ENV):

```bash
kubectl exec -it -n devtroncd postgresql-postgresql-0 -- printenv | grep POSTGRES_PASSWORD
```

### Prepare Your Local Workspace

Navigate to the `github.com` directory on your local machine:

- `cd go/src/github.com`
- `git clone http://github.com/devtron-labs/devtron`
- Configure [Environment Variables](https://github.com/devtron-labs/devtron/blob/main/scripts/dev-conf/envfile.env)
- Run the server:

```bash
make run
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

wire must be installed, need to mention abt that

```

This will start your server on `localhost:8080`.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What to do next?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do i need to mention API requests as well?


### Need help?

If you’re looking for the fastest response to your questions, we encourage you to visit our Discord community. Specifically, you can post your inquiries in the [#setup-and-installation](https://discord.com/channels/769482988882493450/801441246849007667) channel, where our team and community members are actively available to assist you on discord channel.



Loading