{"id":6557,"date":"2021-12-03T14:21:29","date_gmt":"2021-12-03T13:21:29","guid":{"rendered":"https:\/\/geko.cloud\/?p=6557"},"modified":"2021-12-03T14:29:19","modified_gmt":"2021-12-03T13:29:19","slug":"firsts-steps-with-argocd","status":"publish","type":"post","link":"https:\/\/geko.cloud\/en\/firsts-steps-with-argocd\/","title":{"rendered":"Firsts steps with ArgoCD"},"content":{"rendered":"<h2>Introduction<\/h2>\n<p>In this article we will talk about one of the hot tools in the topic of continuous integration and deployment processes &#8220;<a href=\"https:\/\/www.redhat.com\/en\/topics\/devops\/what-is-ci-cd\">CICD<\/a>&#8221; in Kubernetes, <a href=\"https:\/\/argo-cd.readthedocs.io\">ArgoCD<\/a>. In recent months, many leading companies in the Internet sector have publicly declared the use of ArgoCD to deploy applications in their clusters. <a href=\"https:\/\/github.com\/argoproj\/argo-cd\/blob\/master\/USERS.md\">You can see a list here.<\/a><\/p>\n<p>To begin with, let&#8217;s review what ArgoCD is for and how far ArgoCD&#8217;s functionalities go. Then, we will see a typical use case of application deployment using ArgoCD and the advantages of its implementation. Finally, we will comment on the conclusions we have drawn in terms of pros and cons, and we will analyze what other tools complement ArgoCD to further optimize the process of integration and continuous deployment of applications.<\/p>\n<h2>What is ArgoCD?<\/h2>\n<p>ArgoCD is a tool that allows us adopt <a href=\"https:\/\/www.redhat.com\/en\/topics\/devops\/what-is-gitops\">GitOps<\/a> methodologies for continuous deployment of applications in Kubernetes clusters.<\/p>\n<p>The main feature is that ArgoCD synchronizes the state of the deployed applications with their respective manifests declared in git. This allows developers to deploy new versions of the application by simply modifying the git content, either with commits to development branches or by modifying main branch.<br \/>\nOnce the code has been modified in git, ArgoCD detects, via webhook or periodic checks every few minutes, that there have been changes in the application manifests. It then compares the manifests declared in git with those applied in the clusters and updates the latter until they are synchronised.<\/p>\n<p>Its user-friendly user interface allows us to visualize very well the content, structure and state of the clusters as well as manipulate resources.<\/p>\n<p>Can ArgoCD automate the entire CI\/CD process of an application?<\/p>\n<p>No, ArgoCD takes care of deploying the application once the artifact already exists in a container registry, such as Dockerhub or ECR. This implies that previously the application code has already been tested and containerised in an image. At the end of this article we will talk about what options currently exist to accomplish this previous task in an automated gitops way.<\/p>\n<p>As we have already explained, ArgoCD synchronizes the state of deployed applications with their respective manifests declared in git. But it does not refer to the git repository of the application code itself, but to a separate repository, as best practices suggest, that contains the application&#8217;s kubernetes infrastructure code, which can be in the form of <a href=\"https:\/\/github.com\/argoproj\/argo-cd\/blob\/master\/USERS.md\">helm charts, kustomize application, ksonnet&#8230;<\/a><\/p>\n<p>To better explain the main benefits offered by ArgoCD let&#8217;s see an use case example.<\/p>\n<h2>Using ArgoCD<\/h2>\n<p>In this example we will see how ArgoCD can deploy either applications developed by third parties, which have their own helm chart maintained by another organization, or one of our own where we have defined the chart ourselves.<\/p>\n<p>For the example we will deploy a monitoring stack consisting of Prometheus, Grafana and Thanos using their helm charts.<\/p>\n<p>ArgoCD deploys the applications through a custom object called <a href=\"https:\/\/argo-cd.readthedocs.io\/en\/stable\/operator-manual\/declarative-setup\/#applications\">Application<\/a>. This object has as attributes a source and a destination. The source can read several formats, in this exaple our application object will read and deploy helm charts from a chart repository, and charts from a git repository. The destination is the cluster to which the content of the source will be deployed. In the application configuration we can enable that ArgoCD automatically keeps the state of the deployed kubernetes objects synchronized with the configuration indicated in the source (charts\/git). This option is very interesting because it ensures that ArgoCD is going to be aware every few minutes that everything is still in sync, by contrast, deploying applications directly with helm commands only ensure synchronization at the time of deployment.<\/p>\n<p>Now that we have explained what the Application object is, for our monitoring-stack, we are going to create four. Why four applications if there will only be 3 services in the stack? (Prometheus, Grafana and Thanos).<\/p>\n<p>ArgoCD also offers the possibility of creating groups of applications that follow the &#8220;<a href=\"https:\/\/argo-cd.readthedocs.io\/en\/stable\/operator-manual\/cluster-bootstrapping\/#app-of-apps-pattern\">app of apps pattern<\/a>&#8221; concept. This is an ArgoCD application that deploys other applications and so on recursively. In the case of our monitoring stack, we are going to create a fourth application that will deploy the other 3 applications, the parent application will be called &#8220;monitoring-stack&#8221;.<\/p>\n<p>To create an application we can define an ArgoCD Application manifest, as indicated in <a href=\"https:\/\/argo-cd.readthedocs.io\/en\/stable\/operator-manual\/cluster-bootstrapping\/#app-of-apps-pattern\">this page<\/a> of the documentation. We can also do it by <a href=\"https:\/\/argo-cd.readthedocs.io\/en\/stable\/getting_started\/#creating-apps-via-cli\">command line<\/a>. But ArgoCD has a great UI that allows you to create applications manually as well, you can see how <a href=\"https:\/\/argo-cd.readthedocs.io\/en\/stable\/getting_started\/#creating-apps-via-ui\">here<\/a>.<\/p>\n<p>The &#8220;monitoring-stack&#8221; application will point its source to a git repository with a Helm chart. This chart will contain the manifests of the other three applications in the &#8220;templates&#8221; directory in yaml format. These files are <a href=\"https:\/\/argo-cd.readthedocs.io\/en\/stable\/operator-manual\/declarative-setup\/#applications\">Application<\/a> object definitions that point to the relevant official Helm chart of each service. Using the &#8220;values files&#8221;, we will be able to deploy different versions in different environments.<\/p>\n<figure id=\"attachment_5055\" aria-describedby=\"caption-attachment-5055\" style=\"width: 300px\" class=\"wp-caption aligncenter\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-5055 size-medium\" src=\"https:\/\/geko.cloud\/wp-content\/uploads\/2021\/10\/Screenshot-2021-10-29-at-13.39.28-300x248.png\" alt=\"\" width=\"300\" height=\"248\" srcset=\"https:\/\/geko.cloud\/wp-content\/uploads\/2021\/10\/Screenshot-2021-10-29-at-13.39.28-300x248.png 300w, https:\/\/geko.cloud\/wp-content\/uploads\/2021\/10\/Screenshot-2021-10-29-at-13.39.28.png 350w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><figcaption id=\"caption-attachment-5055\" class=\"wp-caption-text\">Git repository containing monitoring-stack Helm chart. It consists of 3 applications defined in the directory monitoring-stack\/templates\/<\/figcaption><\/figure>\n<p>Once the templates of the &#8220;monitoring-stack&#8221; chart have been defined, we will create the parent ArgoCD Application, and in source we will point to the previously mentioned repository. ArgoCD will detect that it is a helm chart and we can indicate the path of the specific values file, for example &#8220;prod_values.yaml&#8221;.<\/p>\n<p>At the end of the manual configuration of the application, in the user interface we will see how all the created objects are represented, organized in a hierarchical way.<\/p>\n<figure id=\"attachment_5057\" aria-describedby=\"caption-attachment-5057\" style=\"width: 742px\" class=\"wp-caption aligncenter\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-5057 size-full\" src=\"https:\/\/geko.cloud\/wp-content\/uploads\/2021\/10\/Screenshot-2021-10-29-at-12.35.05.png\" alt=\"\" width=\"742\" height=\"343\" srcset=\"https:\/\/geko.cloud\/wp-content\/uploads\/2021\/10\/Screenshot-2021-10-29-at-12.35.05.png 742w, https:\/\/geko.cloud\/wp-content\/uploads\/2021\/10\/Screenshot-2021-10-29-at-12.35.05-300x139.png 300w\" sizes=\"(max-width: 742px) 100vw, 742px\" \/><figcaption id=\"caption-attachment-5057\" class=\"wp-caption-text\">The monitoring-stack application creates the three applications defined in the templates directory of the chart.<\/figcaption><\/figure>\n<figure id=\"attachment_5065\" aria-describedby=\"caption-attachment-5065\" style=\"width: 800px\" class=\"wp-caption aligncenter\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-5065 size-large\" src=\"https:\/\/geko.cloud\/wp-content\/uploads\/2021\/10\/Screenshot-2021-10-29-at-14.40.16-1024x476.png\" alt=\"\" width=\"800\" height=\"372\" srcset=\"https:\/\/geko.cloud\/wp-content\/uploads\/2021\/10\/Screenshot-2021-10-29-at-14.40.16-1024x476.png 1024w, https:\/\/geko.cloud\/wp-content\/uploads\/2021\/10\/Screenshot-2021-10-29-at-14.40.16-300x139.png 300w, https:\/\/geko.cloud\/wp-content\/uploads\/2021\/10\/Screenshot-2021-10-29-at-14.40.16-768x357.png 768w, https:\/\/geko.cloud\/wp-content\/uploads\/2021\/10\/Screenshot-2021-10-29-at-14.40.16-1536x714.png 1536w, https:\/\/geko.cloud\/wp-content\/uploads\/2021\/10\/Screenshot-2021-10-29-at-14.40.16.png 1585w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><figcaption id=\"caption-attachment-5065\" class=\"wp-caption-text\">The grafana application has deployed it&#8217;s official helm chart, through the UI we can see all the resources in operation. It also allows us to interact with them, for example we can delete a pod and see how the deployment automatically creates another one.<\/figcaption><\/figure>\n<p>Since the applications are synchronized with our repository, and the charts are parameterized with templates and values. To deploy a new version of any of our applications we will only have to modify the values file through git commits.<br \/>\nArgoCD will detect the changes in the repository and apply them in the kubernetes cluster through a rolling update deployment.<\/p>\n<figure id=\"attachment_5067\" aria-describedby=\"caption-attachment-5067\" style=\"width: 292px\" class=\"wp-caption aligncenter\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-5067 size-full\" src=\"https:\/\/geko.cloud\/wp-content\/uploads\/2021\/10\/Screenshot-2021-10-29-at-14.54.37.png\" alt=\"\" width=\"292\" height=\"170\" \/><figcaption id=\"caption-attachment-5067\" class=\"wp-caption-text\">chart versions defined in the file prod_values.yaml<\/figcaption><\/figure>\n<p>As a note, using <a href=\"https:\/\/github.com\/argoproj-labs\/argocd-image-updater\">ArgoCD Image Updater<\/a> can save us from doing this last step manually, or even having to develop a complex pipeline to update the values.yaml file in git when we want to deploy the new image.<br \/>\nThis tool periodically queries the latest tags in our image repository looking for new artifacts to deploy. This way, once it has found a new one, it takes care of automating the deployment process by editing the git configuration with the name of the new tag.<br \/>\nIt is worth mentioning that there is not yet a stable version of ArgoCD Image Updater but it is expected soon.<\/p>\n<p>In this example we have created an application that points to a repository that creates applications which point to official helm charts, but this hierarchical loop can be extended much further, following the &#8220;app of apps pattern&#8221;.<\/p>\n<p>Another interesting feature of ArgoCD is that it allows us to deploy applications in different clusters. There are several ways to do this, but the most direct way is through the Application Set resource.<br \/>\nIn its manifest we can specify a list of clusters where to deploy simultaneously with different paths of the repository. Since in our repository we can specify different versions for each cluster.<\/p>\n<p>The relative ease of installation that ArgoCD has is another positive point to take into account, here you can consult the <a href=\"https:\/\/github.com\/argoproj-labs\/argocd-image-updater\">steps<\/a>.<\/p>\n<h2>Automation of the entire CICD process with Argo tools<\/h2>\n<p>If we want to go a step further and automate the entire CICD process in Kubernetes, we can complement ArgoCD with the rest of the tools presented by the <a href=\"https:\/\/argoproj.github.io\/\">Argo project<\/a>.<br \/>\nBy combining Argo Events, Argo Workflows, ArgoCD and Argo Rollouts, further automation is possible following best practices in the current continuous integration standards.<br \/>\nVictor Farcic explains it very coherently in this <a href=\"https:\/\/www.youtube.com\/watch?v=XNXJtxkUKeY&amp;t=277s&amp;ab_channel=DevOpsToolkit\">video<\/a>.<\/p>\n<p>As a solution to the added complexity of installing and managing all these Argo project tools, some applications that encompass this entire stack have already been released allowing us to configure the pipelines for integration and deployment from a simplified higher level layer. Below we mention a couple of them, although in this post we are not going to analyze the particular functionalities.<\/p>\n<p><a href=\"https:\/\/devtron.ai\/\">Devtron<\/a> is an open source tool that installs underneath this Argo stack and other tools and promises that it will let us automate the entire CICD process completely from the user interface. Devtron simplifies the configuration quite a lot as we interact with the internal tools from a high level layer, without manually installing any of them. Although after testing it, we do not believe that the tool is mature enough to be implemented in a production environment for the time being.<\/p>\n<p>Similar to Devtron&#8217;s approach, <a href=\"https:\/\/devtron.ai\/\">Codefresh<\/a> also uses all of the Argo stack to automate all integration and deployment. But apart from the fact that the tool is still in early-access, a big difference is that access will be in SaaS format. As we can see in the pricing section, the full automation option will be paid and the price is not mentioned on the website.<\/p>\n<h2>Conclusions<\/h2>\n<p>ArgoCD is a very useful tool to automate the deployment process using GitOps best practices. Thanks to its implementation, developers can test new versions of applications more quickly and deploy to production safely once testing is complete. In addition, thanks to the auto-sync feature and its beautiful interface, ArgoCD allows us to keep track of the status of applications and their resources deployed in Kubernetes at all times. Combined with the other tools of the Argo project we can automate the entire CICD process (and many other utilities outside the scope of this post) following good practices for current standards.<\/p>\n<p>On the downside, using ArgoCD will introduce an extra layer of complexity to our configuration, as it has many different options, introduces custom objects and concepts we are not familiar with yet. It can be &#8220;overkill&#8221; if we have a very small cluster with only a handful of applications.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction In this article we will talk about one of the hot tools in the topic of continuous integration and deployment processes &#8220;CICD&#8221; in Kubernetes, ArgoCD. In recent months, many leading companies in the Internet sector have publicly declared the use of ArgoCD to deploy applications in their clusters. You can see a list here. [&hellip;]<\/p>\n","protected":false},"author":23,"featured_media":6553,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"footnotes":""},"categories":[118,67],"tags":[128,73,90],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v22.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Firsts steps with ArgoCD - Geko Cloud<\/title>\n<meta name=\"description\" content=\"Get to know the whole ArgoCD environment, from its advantages to complementary tools to automate the whole CICD. Read more in the post.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/geko.cloud\/es\/primeros-pasos-con-argocd\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Firsts steps with ArgoCD - Geko Cloud\" \/>\n<meta property=\"og:description\" content=\"Get to know the whole ArgoCD environment, from its advantages to complementary tools to automate the whole CICD. Read more in the post.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/geko.cloud\/es\/primeros-pasos-con-argocd\/\" \/>\n<meta property=\"og:site_name\" content=\"Geko Cloud\" \/>\n<meta property=\"article:published_time\" content=\"2021-12-03T13:21:29+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-12-03T13:29:19+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/geko.cloud\/wp-content\/uploads\/2021\/11\/3d-render-low-poly-plexus-design-network-communications-1-scaled.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"2560\" \/>\n\t<meta property=\"og:image:height\" content=\"1920\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"X\u00e8nia Adan\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/geko.cloud\/wp-content\/uploads\/2021\/11\/3d-render-low-poly-plexus-design-network-communications-1-scaled.jpg\" \/>\n<meta name=\"twitter:creator\" content=\"@geko_cloud\" \/>\n<meta name=\"twitter:site\" content=\"@geko_cloud\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/geko.cloud\/es\/primeros-pasos-con-argocd\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/geko.cloud\/es\/primeros-pasos-con-argocd\/\"},\"author\":{\"name\":\"X\u00e8nia Adan\",\"@id\":\"https:\/\/geko.cloud\/es\/#\/schema\/person\/d0eb78f4c8e7a25a3d34040655f7d9d2\"},\"headline\":\"Firsts steps with ArgoCD\",\"datePublished\":\"2021-12-03T13:21:29+00:00\",\"dateModified\":\"2021-12-03T13:29:19+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/geko.cloud\/es\/primeros-pasos-con-argocd\/\"},\"wordCount\":1732,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/geko.cloud\/es\/#organization\"},\"image\":{\"@id\":\"https:\/\/geko.cloud\/es\/primeros-pasos-con-argocd\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/geko.cloud\/wp-content\/uploads\/2021\/11\/3d-render-low-poly-plexus-design-network-communications-1-scaled.jpg\",\"keywords\":[\"ArgoCD\",\"cicd\",\"Kubernetes\"],\"articleSection\":[\"Featured LABS\",\"Labs\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/geko.cloud\/es\/primeros-pasos-con-argocd\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/geko.cloud\/es\/primeros-pasos-con-argocd\/\",\"url\":\"https:\/\/geko.cloud\/es\/primeros-pasos-con-argocd\/\",\"name\":\"Firsts steps with ArgoCD - Geko Cloud\",\"isPartOf\":{\"@id\":\"https:\/\/geko.cloud\/es\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/geko.cloud\/es\/primeros-pasos-con-argocd\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/geko.cloud\/es\/primeros-pasos-con-argocd\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/geko.cloud\/wp-content\/uploads\/2021\/11\/3d-render-low-poly-plexus-design-network-communications-1-scaled.jpg\",\"datePublished\":\"2021-12-03T13:21:29+00:00\",\"dateModified\":\"2021-12-03T13:29:19+00:00\",\"description\":\"Get to know the whole ArgoCD environment, from its advantages to complementary tools to automate the whole CICD. Read more in the post.\",\"breadcrumb\":{\"@id\":\"https:\/\/geko.cloud\/es\/primeros-pasos-con-argocd\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/geko.cloud\/es\/primeros-pasos-con-argocd\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/geko.cloud\/es\/primeros-pasos-con-argocd\/#primaryimage\",\"url\":\"https:\/\/geko.cloud\/wp-content\/uploads\/2021\/11\/3d-render-low-poly-plexus-design-network-communications-1-scaled.jpg\",\"contentUrl\":\"https:\/\/geko.cloud\/wp-content\/uploads\/2021\/11\/3d-render-low-poly-plexus-design-network-communications-1-scaled.jpg\",\"width\":2560,\"height\":1920,\"caption\":\"ArgoCD\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/geko.cloud\/es\/primeros-pasos-con-argocd\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Portada\",\"item\":\"https:\/\/geko.cloud\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Firsts steps with ArgoCD\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/geko.cloud\/es\/#website\",\"url\":\"https:\/\/geko.cloud\/es\/\",\"name\":\"Geko Cloud\",\"description\":\"Servicios de consultor\u00eda cloud y devops\",\"publisher\":{\"@id\":\"https:\/\/geko.cloud\/es\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/geko.cloud\/es\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/geko.cloud\/es\/#organization\",\"name\":\"Geko Cloud\",\"url\":\"https:\/\/geko.cloud\/es\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/geko.cloud\/es\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/geko.cloud\/wp-content\/uploads\/2021\/10\/geko_logo-positivo.png\",\"contentUrl\":\"https:\/\/geko.cloud\/wp-content\/uploads\/2021\/10\/geko_logo-positivo.png\",\"width\":1650,\"height\":809,\"caption\":\"Geko Cloud\"},\"image\":{\"@id\":\"https:\/\/geko.cloud\/es\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/geko_cloud\",\"https:\/\/www.instagram.com\/gekocloud\/\",\"https:\/\/www.linkedin.com\/company\/gekocloud\",\"https:\/\/www.youtube.com\/channel\/UC5EFLCqUM7fEaXSa_0nWowQ\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/geko.cloud\/es\/#\/schema\/person\/d0eb78f4c8e7a25a3d34040655f7d9d2\",\"name\":\"X\u00e8nia Adan\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/geko.cloud\/es\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/7ced1192bab3d2c2b036d1551ed4fc4d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/7ced1192bab3d2c2b036d1551ed4fc4d?s=96&d=mm&r=g\",\"caption\":\"X\u00e8nia Adan\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Firsts steps with ArgoCD - Geko Cloud","description":"Get to know the whole ArgoCD environment, from its advantages to complementary tools to automate the whole CICD. Read more in the post.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/geko.cloud\/es\/primeros-pasos-con-argocd\/","og_locale":"en_US","og_type":"article","og_title":"Firsts steps with ArgoCD - Geko Cloud","og_description":"Get to know the whole ArgoCD environment, from its advantages to complementary tools to automate the whole CICD. Read more in the post.","og_url":"https:\/\/geko.cloud\/es\/primeros-pasos-con-argocd\/","og_site_name":"Geko Cloud","article_published_time":"2021-12-03T13:21:29+00:00","article_modified_time":"2021-12-03T13:29:19+00:00","og_image":[{"width":2560,"height":1920,"url":"https:\/\/geko.cloud\/wp-content\/uploads\/2021\/11\/3d-render-low-poly-plexus-design-network-communications-1-scaled.jpg","type":"image\/jpeg"}],"author":"X\u00e8nia Adan","twitter_card":"summary_large_image","twitter_image":"https:\/\/geko.cloud\/wp-content\/uploads\/2021\/11\/3d-render-low-poly-plexus-design-network-communications-1-scaled.jpg","twitter_creator":"@geko_cloud","twitter_site":"@geko_cloud","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/geko.cloud\/es\/primeros-pasos-con-argocd\/#article","isPartOf":{"@id":"https:\/\/geko.cloud\/es\/primeros-pasos-con-argocd\/"},"author":{"name":"X\u00e8nia Adan","@id":"https:\/\/geko.cloud\/es\/#\/schema\/person\/d0eb78f4c8e7a25a3d34040655f7d9d2"},"headline":"Firsts steps with ArgoCD","datePublished":"2021-12-03T13:21:29+00:00","dateModified":"2021-12-03T13:29:19+00:00","mainEntityOfPage":{"@id":"https:\/\/geko.cloud\/es\/primeros-pasos-con-argocd\/"},"wordCount":1732,"commentCount":0,"publisher":{"@id":"https:\/\/geko.cloud\/es\/#organization"},"image":{"@id":"https:\/\/geko.cloud\/es\/primeros-pasos-con-argocd\/#primaryimage"},"thumbnailUrl":"https:\/\/geko.cloud\/wp-content\/uploads\/2021\/11\/3d-render-low-poly-plexus-design-network-communications-1-scaled.jpg","keywords":["ArgoCD","cicd","Kubernetes"],"articleSection":["Featured LABS","Labs"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/geko.cloud\/es\/primeros-pasos-con-argocd\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/geko.cloud\/es\/primeros-pasos-con-argocd\/","url":"https:\/\/geko.cloud\/es\/primeros-pasos-con-argocd\/","name":"Firsts steps with ArgoCD - Geko Cloud","isPartOf":{"@id":"https:\/\/geko.cloud\/es\/#website"},"primaryImageOfPage":{"@id":"https:\/\/geko.cloud\/es\/primeros-pasos-con-argocd\/#primaryimage"},"image":{"@id":"https:\/\/geko.cloud\/es\/primeros-pasos-con-argocd\/#primaryimage"},"thumbnailUrl":"https:\/\/geko.cloud\/wp-content\/uploads\/2021\/11\/3d-render-low-poly-plexus-design-network-communications-1-scaled.jpg","datePublished":"2021-12-03T13:21:29+00:00","dateModified":"2021-12-03T13:29:19+00:00","description":"Get to know the whole ArgoCD environment, from its advantages to complementary tools to automate the whole CICD. Read more in the post.","breadcrumb":{"@id":"https:\/\/geko.cloud\/es\/primeros-pasos-con-argocd\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/geko.cloud\/es\/primeros-pasos-con-argocd\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/geko.cloud\/es\/primeros-pasos-con-argocd\/#primaryimage","url":"https:\/\/geko.cloud\/wp-content\/uploads\/2021\/11\/3d-render-low-poly-plexus-design-network-communications-1-scaled.jpg","contentUrl":"https:\/\/geko.cloud\/wp-content\/uploads\/2021\/11\/3d-render-low-poly-plexus-design-network-communications-1-scaled.jpg","width":2560,"height":1920,"caption":"ArgoCD"},{"@type":"BreadcrumbList","@id":"https:\/\/geko.cloud\/es\/primeros-pasos-con-argocd\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Portada","item":"https:\/\/geko.cloud\/en\/"},{"@type":"ListItem","position":2,"name":"Firsts steps with ArgoCD"}]},{"@type":"WebSite","@id":"https:\/\/geko.cloud\/es\/#website","url":"https:\/\/geko.cloud\/es\/","name":"Geko Cloud","description":"Servicios de consultor\u00eda cloud y devops","publisher":{"@id":"https:\/\/geko.cloud\/es\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/geko.cloud\/es\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/geko.cloud\/es\/#organization","name":"Geko Cloud","url":"https:\/\/geko.cloud\/es\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/geko.cloud\/es\/#\/schema\/logo\/image\/","url":"https:\/\/geko.cloud\/wp-content\/uploads\/2021\/10\/geko_logo-positivo.png","contentUrl":"https:\/\/geko.cloud\/wp-content\/uploads\/2021\/10\/geko_logo-positivo.png","width":1650,"height":809,"caption":"Geko Cloud"},"image":{"@id":"https:\/\/geko.cloud\/es\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/geko_cloud","https:\/\/www.instagram.com\/gekocloud\/","https:\/\/www.linkedin.com\/company\/gekocloud","https:\/\/www.youtube.com\/channel\/UC5EFLCqUM7fEaXSa_0nWowQ"]},{"@type":"Person","@id":"https:\/\/geko.cloud\/es\/#\/schema\/person\/d0eb78f4c8e7a25a3d34040655f7d9d2","name":"X\u00e8nia Adan","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/geko.cloud\/es\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/7ced1192bab3d2c2b036d1551ed4fc4d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/7ced1192bab3d2c2b036d1551ed4fc4d?s=96&d=mm&r=g","caption":"X\u00e8nia Adan"}}]}},"_links":{"self":[{"href":"https:\/\/geko.cloud\/en\/wp-json\/wp\/v2\/posts\/6557"}],"collection":[{"href":"https:\/\/geko.cloud\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/geko.cloud\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/geko.cloud\/en\/wp-json\/wp\/v2\/users\/23"}],"replies":[{"embeddable":true,"href":"https:\/\/geko.cloud\/en\/wp-json\/wp\/v2\/comments?post=6557"}],"version-history":[{"count":1,"href":"https:\/\/geko.cloud\/en\/wp-json\/wp\/v2\/posts\/6557\/revisions"}],"predecessor-version":[{"id":6558,"href":"https:\/\/geko.cloud\/en\/wp-json\/wp\/v2\/posts\/6557\/revisions\/6558"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/geko.cloud\/en\/wp-json\/wp\/v2\/media\/6553"}],"wp:attachment":[{"href":"https:\/\/geko.cloud\/en\/wp-json\/wp\/v2\/media?parent=6557"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/geko.cloud\/en\/wp-json\/wp\/v2\/categories?post=6557"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/geko.cloud\/en\/wp-json\/wp\/v2\/tags?post=6557"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}