argocd-example-apps VS argocd-example-apps

Compare argocd-example-apps vs argocd-example-apps and see what are their differences.

argocd-example-apps

Example Apps to Demonstrate Argo CD (by argoproj)

argocd-example-apps

Example Apps to Demonstrate Argo CD (by howmybrainworks)
Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
argocd-example-apps argocd-example-apps
18 1
1,338 0
3.5% -
2.2 0.0
3 days ago about 2 years ago
Jsonnet Jsonnet
- -
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

argocd-example-apps

Posts with mentions or reviews of argocd-example-apps. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-07-06.
  • ArgoCD // Helm Chart // Dev/Staging // Your Best-Practise
    3 projects | /r/kubernetes | 6 Jul 2023
  • Did I miss something here, regarding network policies and helm templates? (Slightly ranty)
    3 projects | /r/kubernetes | 30 Jan 2023
  • Am I missing something? (argo cd and helm in AWS)
    2 projects | /r/devops | 29 Jan 2023
    Second, when dealing with OCI helm charts, look up the umbrella chart model https://github.com/argoproj/argocd-example-apps/blob/master/helm-dependency/README.md. This basically lets you create a helm chat that doesn’t do anything but call your next helm chart as a dependency. I use this with OCI stores helm charts all over the place. Also, in the next ArgoCD release, you should be able to get multiple sources for a sync, but we’ll see when that comes out
  • ArgoCD installation
    3 projects | /r/kubernetes | 5 Oct 2022
    For example if I point to https://github.com/argoproj/argocd-example-apps, from the UI, I can see a new repository but no applications
  • GitOps installation
    2 projects | /r/ArgoCD | 5 Oct 2022
    extraObjects: - apiVersion: argoproj.io/v1alpha1 kind: Application metadata: name: my-app namespace: argocd spec: project: default source: repoURL: 'https://github.com/argoproj/argocd-example-apps' path: guestbook targetRevision: HEAD destination: server: 'https://kubernetes.default.svc' namespace: test syncPolicy: automated: {} syncOptions: - CreateNamespace=true EOF
  • Fixing potential security issues in your Infrastructure as Code at the source with Sysdig
    2 projects | dev.to | 14 Sep 2022
    ❯ cd ~/git ❯ gh repo fork https://github.com/argoproj/argocd-example-apps.git --clone ✓ Created fork e-minguez/argocd-example-apps Cloning into 'argocd-example-apps'... ... From github.com:argoproj/argocd-example-apps * [new branch] master -> upstream/master ✓ Cloned fork
  • Best Practices for Argo CD
    6 projects | dev.to | 4 Apr 2022
    What are some best practices when using Argo CD? Within this blog post, we’ll be highlighting some best practices tied to Argo CD, that allow you to leverage GitOps easily within your deployment workflow. Below we will explain the following: What is Argo CD What are some best practices with Argo CD? What is Argo CD Argo CD is the most popular and fastest-growing GitOps tool for Kubernetes. When following a GitOps deployment pattern, Argo CD makes it easy to define a set of applications with their desired state in a repository and where they should be deployed. After a deployment, Argo CD constantly monitors the state and can even catch configuration drift. Argo CD's core component is the Applications Controller that executes continuous monitoring of applications and then compares them to the live application state against your target state defined within your Git repository. The Application controller retrieves the desired resource manifest from the Git repository and compares it to the live resource from your Kubernetes cluster. This approach enables GitOps for your deployment workflow by leveraging Git as your source of truth. Now, let's further explore how we can leverage Argo CD best for our deployments! The image above shows the primary Argo CD dashboard with a single Argo application successfully deployed. The dashboard above provides a detailed view of the same Argo application deployed in the image above. However, it also provides an understanding of the status of the Kubernetes resources. Now, let's explore how we can apply best practices to our Argo CD deployments! Argo CD Best Practices Argo CD has several best practices; however, we will review some of the most important ones we've gathered from the Argo community and prioritized below. 1. Separate your Git repositories It's super important to separate your configurations and source code into different Git repositories. Separating your configs in their repository limits commit access to avoid something being pushed to production environments. For example, if you accidentally push manifest changes to the config repo, it can trigger an infinite loop of build jobs and Git commit triggers. Using an automated CI pipeline, you can also prevent pushing manifest changes to the same repo. Separating your repositories is also more secure and restricts commit access, so someone does not accidentally misconfigure an application. Argo CD does not connect to your source code repository. However, if you make a change to your code and you want to deploy the change to a specific environment, you can do the following: Build a new application code version and then merge a pull request (PR) in the configuration repo to use the new application version you created. Utilize automation for the update you made to your source code by using a pipeline in the source code repository. Argo CD Image Updater allows you to update your container images of the Kubernetes workload managed by Argo CD. These approaches allow you to maintain logs for any auditing process. You can quickly identify development activity and reference your Git history for easy traceability. 2. Create a directory structure to enable a multi-application system for your Argo CD deployments Once you've separated your source code and configs into separate repositories, it's essential to set up a directory structure that applies GitOps for Argo CD deployments. You can leverage several approaches for your Git repository structure that best serves your organization's needs. However, we'll highlight some tips to best structure your directory when using Argo CD. Do: We suggest modeling your environments or clusters using different folders instead of branches in your configuration repository (e.g., prod, staging, testing, etc.). Do: Make sure your cluster and environment configurations repositories are separated (i.e., separate your prod configuration in a different repository from staging). Do: Utilize some sort of manifest management, such as a raw Kubernetes YAML file, Kustomize, or Helm for your environment definitions for your apps. Do: Create an 'argocd' folder in your configuration repository for each cluster and create an Argo CD Application manifest for each app in the cluster's repository. By creating the separate 'argocd' folder, you can also implement role-based access control for different clusters if you wish with Git repository permissions. Do: Leverage a multi-folder or a multi-repo structure instead of a multi-branch approach. You should NOT have permanent branches for your clusters or environments. Don't: Never put any independent applications or applications managed by different teams in the same repository. Implementing these strategies above for your directory structure provides several advantages. Those advantages include improved security, easy rollbacks, audit log, easier testing, and automating your manifest updates. It also allows you to create and delete applications dynamically. If you'd like to see some examples of these directory structures, look here. 3. Determine a promotion strategy Now that you've established a directory structure, you may face a challenge regarding the best promotion practice between clusters. When deploying multiple applications with Argo CD, it's best to pick one promotion strategy that suits your directory structure and stick with it. Below we'll highlight how you can do this based on your own needs. Group your applications ApplicationSets First and foremost, once you've established a way to manage your applications and deployments, and there are too many apps to keep track of - the ApplicationSet is your best solution. We should also note that the ApplicationSet was previously an external controller that you had to install on your own, and now it's integrated and makes things much easier! However, you need some extra support when using the ApplicationSet instead of the App of Apps pattern that is easy enough to use right away without any additional help or a learning curve. Yet, when deploying to production, an ApplicationSet is the best choice. This is because an ApplicationSet is a Kubernetes controller/custom resource definition (CRD) that enables automation and allows flexibility when managing multiple applications across several clusters. The ApplicationSet consists of two main components: Generators Application template You are essentially allowing the ApplicationSet to act as a templating agent. The generators used with the ApplicationSet are responsible for generating params, utilizing the template to consume the variables, and then applying them to the cluster as Argo CD applications. So, any changes made to an ApplicationSet template and its fields will automatically be applied to each application created. This way, you can simultaneously deploy your Argo apps to multiple Kubernetes clusters. App of Apps When managing ten or fewer applications, it's best to use the App of Apps pattern. App of Apps was the pioneer before ApplicationSets that allowed us to deploy multiple applications at once with ease. You are leveraging the actual app itself, aka a "Root App," to contain the other applications instead of individual Kubernetes objects. This, in turn, allows you to manage a group of applications that you can deploy declaratively. Essentially this pattern supports the declaration of children apps in a recursive way. Image from the Argo CD documentation Another possible approach to promoting changes is the Argo CD Image Updater. It's still a relatively new project, but it provides a manual way to update your manifest versions. However, we should note that this approach is not GitOps friendly. Meaning it goes against the declarative nature of GitOps, but perhaps its functionality is what you and your team needs. Which to choose? One does not "need" a promotion strategy when beginning to deploy with Argo CD. The strategies listed above are needed when trying to solve "too many apps." This problem dramatically depends on the number of Argo CD applications you are managing and whether or not you already have a deployment process in place or not. The Argo community has developed the strategies listed above to help you manage all your Argo CD application deployments, depending on your scale, directory structure, and manifest types, amongst other factors. However, it's ultimately up to you and your workload, which is best for you and your team. 4. Manage your secrets securely No one solution for secret management will work for all organizations. However, some common approaches for how to best handle your secrets with Argo CD can help based on these two significant factors: Encrypt your secrets directly in your Git repository: Bitnami Sealed Secrets Sealed secrets are one way to encrypt secrets created by anyone but can only be decrypted by the controller running within the target cluster. SOPS SOPS (Secret OperationS) is an open source solution that allows you to encrypt and decrypt an entire file or field for your Kubernetes secrets. This approach will enable you to store your secrets, and other Kubernetes manifests directly in your Git repository. Externalizing your secrets from your Git repository: Argo CD Vault plugin This solution creates debate about whether it's GitOps or not. Nonetheless, it's a solution using Kubernetes auth in Vault. The Argo CD repo server authorizes Vault to use the service account token in the secret manifest, substituting the required value and creating a secret for you. Cloud Provider Secrets Cloud provider secrets are created by your cloud service providers (CSP) depending on the cloud service. It depends on what your CSP offers and if their secret management solution meets your needs. Ensure you evaluate which strategy secures your data best. Firstly, storing your secrets in a Git repository isn't easy! Perhaps your organization has a different policy for secrets, or you already have a system in place, so in this case, you may want to externalize your secrets. However, if you want to store your secrets in your Git repository, plaintext secrets cannot be stored in your repo, and you never want to risk storing sensitive data and exposing it! But, Git can truly be the source of truth, including your secrets, and you won't have to risk getting fired when they are encrypted asymmetrically. You can use Argo CD to manage your deployment state from Git into your cluster, including your secrets, by ensuring processes are put in place, and the tools above are used safely. 5. Confirm how your team accesses Argo CD Essentially, we cannot say what the best practice for you and your team is to access Argo CD. However, we can advise you and your team to choose which approach works best for your organization and set a standard for your team. Developers require access to Argo CD, so you need to set security measures and role-based access control (RBAC). This approach allows your developers to access the Argo CD UI and ensure that each team has the appropriate access to their applications and their applications only. Argo CD provides an RBAC configuration that includes two pre-defined roles: Read-only Admin You can also implement a permissions definition for your applications and other resource types with Argo CD. You can then sync these roles and permissions together to create a policy to define access to your system. No one within your organization requires access to Argo CD. Some organizations do not want anyone to access the Argo CD UI or the API server. Perhaps the organization would like to use the automation but does not want to leverage the UI component. In this case, you can use a variant of Argo CD, also known as Argo CD Core. This allows developers to make a commit and ignore the UI aspects and reduce complexity. However, we should note that you lose multi-tenancy benefits by installing Argo CD Core. So, whichever approach you choose above - as long as it benefits you and your team, you're making the right choice. 6. Increase automation for your system with the other Argo projects If you're using Argo CD for Continuous Delivery (CD), you want to elevate the rest of your workflow to automate everything in Kubernetes to reduce downtime. Then, you should check out the other Argo projects and learn more about how they can help. We don't encourage you to use any specific projects to leverage best practices, but instead, we encourage you to use those that will help you and your system best. In the meantime, we can explore how we could use Argo Events, Workflows, and Rollouts to enhance your system if you choose to. Progressive Delivery Progressive delivery is a set of practices that roll out new features gradually instead of all at once. Argo Rollouts Rollouts provide advanced deployment capabilities and rolling updates for progressive delivery approaches you might already know, such as blue-green, canary, etc. Advanced Deployment with CI Argo Workflows and Events require you to have an existing Continuous Integration (CI) process to leverage these projects. Argo Workflows Workflows allow you to build and orchestrate parallel jobs and utilize a pipeline on Kubernetes. Argo Events Events is an event-driven workflow automation framework that is used with Kubernetes. By utilizing these other Argo projects, you can easily manage your clusters, run workflows, and implement GitOps for your Kubernetes system! However, not all organizations are ready to implement automation for everything in Kubernetes. Combining all these tools requires time and understanding of how your system works before identifying which tool will best help your team's process. Conclusion Argo CD and the other Argo projects certainly make life easier by allowing you to automate each step for a production release, migration, and the operation workflows for your system! By leveraging these best practices above, you're on the right track to empower your teams and apply GitOps for your infrastructure so you can deploy to prod more frequently. I'd like to thank those who are part of the Argo community who participated and provided feedback for this blog. If you have any questions or think there are better ways to work with Argo CD, please reach out and let me know!
  • How to Model Your Gitops Environments and Promote Releases between Them
    5 projects | dev.to | 23 Mar 2022
    Hopefully this article will help with the endless stream of questions and discussions on this hot topic.
  • Getting started with ArgoCD in under 5 mins!
    2 projects | dev.to | 3 Mar 2022
    TIMESTAMP GROUP KIND NAMESPACE NAME STATUS HEALTH HOOK MESSAGE 2022-03-04T10:54:48+05:30 Service default guestbook-ui OutOfSync Missing 2022-03-04T10:54:48+05:30 apps Deployment default guestbook-ui OutOfSync Missing 2022-03-04T10:54:48+05:30 Service default guestbook-ui OutOfSync Missing service/guestbook-ui created 2022-03-04T10:54:48+05:30 apps Deployment default guestbook-ui OutOfSync Missing deployment.apps/guestbook-ui created Name: guestbook Project: default Server: https://kubernetes.default.svc Namespace: default URL: https://127.0.0.1:8080/applications/guestbook Repo: https://github.com/argoproj/argocd-example-apps.git Target: Path: guestbook SyncWindow: Sync Allowed Sync Policy: Sync Status: Synced to (53e28ff) Health Status: Progressing Operation: Sync Sync Revision: 53e28ff20cc530b9ada2173fbbd64d48338583ba Phase: Succeeded Start: 2022-03-04 10:54:48 +0530 IST Finished: 2022-03-04 10:54:48 +0530 IST Duration: 0s Message: successfully synced (all tasks run) GROUP KIND NAMESPACE NAME STATUS HEALTH HOOK MESSAGE Service default guestbook-ui Synced Healthy service/guestbook-ui created apps Deployment default guestbook-ui Synced Progressing deployment.apps/guestbook-ui created
  • Getting Started with GitOps and Argo CD
    6 projects | dev.to | 23 Feb 2022
    In order for us to create an application to demonstrate how Argo CD works, we are going to use an example repository containing a guestbook application. If you would like to check it out or follow along, it is available at https://github.com/argoproj/argocd-example-apps.git.

argocd-example-apps

Posts with mentions or reviews of argocd-example-apps. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-02-23.
  • Getting Started with GitOps and Argo CD
    6 projects | dev.to | 23 Feb 2022
    Name: guestbook Project: default Server: https://kubernetes.default.svc Namespace: default URL: https://localhost:8080/applications/guestbook Repo: https://github.com/howmybrainworks/argocd-example-apps.git Target: Path: guestbook SyncWindow: Sync Allowed Sync Policy: Sync Status: OutOfSync from (13b08f1) Health Status: Healthy GROUP KIND NAMESPACE NAME STATUS HEALTH HOOK MESSAGE Service default guestbook-ui Synced Healthy service/guestbook-ui created apps Deployment default guestbook-ui OutOfSync Healthy deployment.apps/guestbook-ui created

What are some alternatives?

When comparing argocd-example-apps and argocd-example-apps you can also consider the following projects:

microservices-demo - Sample cloud-first application with 10 microservices showcasing Kubernetes, Istio, and gRPC.

gitflow - Git extensions to provide high-level repository operations for Vincent Driessen's branching model.

argocd-autopilot - Argo-CD Autopilot

gitops-environment-promotion - Example for promoting a release between different GitOps environments

argo-cd - Declarative Continuous Deployment for Kubernetes

argocd-vault-plugin - An Argo CD plugin to retrieve secrets from Secret Management tools and inject them into Kubernetes secrets

argo - Workflow Engine for Kubernetes

website - 🌐 Source code for OpenGitOps website

gitops-promotion-source-code - Simple Golang app with environment variables

argo-events - Event-driven Automation Framework for Kubernetes

HomeBrew - 🍺 The missing package manager for macOS (or Linux)