Portainer is a powerful tool that simplifies managing containerized applications, and with its built-in GitOps capabilities, deploying and managing applications from Git repositories becomes a seamless experience. In this post we’ll walk through how to configure GitOps in Portainer by creating applications from Kubernetes manifests stored in Git, with real-world examples and practical use cases.
GitOps is a modern way of managing and automating deployments by treating Git as the source of truth for infrastructure and application configurations. With GitOps, all changes are made in a Git repository, and a GitOps tool like Portainer ensures that the live environment matches the desired state defined in Git. This offers benefits like traceability, version control, and automated rollbacks.
In Portainer, you set up GitOps when creating a new application from a manifest stored in a Git repository. There’s no need to “enable” GitOps separately—it’s natively supported as part of the codified application deployment process.
When prompted, you will need to configure the connection to your Git repository:
main
or master
)./manifests/deployment.yaml
). You can add as many manifest paths as you need for your application.Here’s an example of a basic deployment.yaml
:
apiVersion: apps/v1
kind: Deployment
metadata:
name: sample-app
spec:
replicas: 2
selector:
matchLabels:
app: sample-app
template:
metadata:
labels:
app: sample-app
spec:
containers:
- name: sample-app
image: nginx:1.17
ports:
- containerPort: 80
Once you've configured the connection to your repository, Portainer will fetch and apply the manifests to your Kubernetes environment.
During the setup, you can configure Portainer to sync with the Git repository automatically. This ensures that changes pushed to the repository (e.g., new image versions or configuration updates) are automatically applied to your Kubernetes cluster.
Let’s say you manage a containerized web service deployed via GitOps in Portainer. The application is a basic Nginx web server.
deployment.yaml
from nginx:1.17
to nginx:1.18
.
containers:
- name: sample-app
image: nginx:1.18
They then push the updated manifest is pushed to the main
branch of your Git repository.
Portainer’s GitOps feature detects the change (based on the sync interval you configured) and automatically redeploys the updated application to Kubernetes, switching to the new nginx
image version.
GitOps in Portainer also simplifies rollbacks, helping teams quickly revert to a previous known good state if something goes wrong during an update.
After deploying nginx:1.18
, you discover that the new version has introduced a bug.
To roll back, you simply revert the change in the Git repository to the previous nginx:1.17
version:
containers:
- name: sample-app
image: nginx:1.17 # Revert to previous version
Then push the change to the Git repository.
Portainer automatically detects the update and redeploys the previous working version (nginx:1.17
) to Kubernetes, effectively rolling back the change.
If you manage multiple environments, such as development, staging, and production, you can use GitOps with Portainer to manage deployments across all environments in a consistent and controlled manner.
Each environment (development, staging, production) is linked to a different branch in your Git repository.
dev
branchstaging
branchmain
branchDevelopers push changes to the dev
branch, and once tested, they merge changes to the staging
branch for further validation.
Finally, once the changes are validated, the code is merged to the main
branch, which Portainer automatically deploys to the production Kubernetes cluster.
Portainer’s GitOps support provides a powerful way to manage and automate application deployments across Kubernetes environments. By using Git as the source of truth you can ensure consistency, reliability, and traceability in your deployment processes. Whether you need automated updates, easy rollbacks, or multi-environment management, GitOps with Portainer offers a flexible and scalable solution for your Kubernetes workloads.