{"id":495,"date":"2023-12-16T10:00:00","date_gmt":"2023-12-16T10:00:00","guid":{"rendered":"https:\/\/jacar.es\/flux-cd-comparativa\/"},"modified":"2023-12-16T10:00:00","modified_gmt":"2023-12-16T10:00:00","slug":"flux-cd-comparativa","status":"publish","type":"post","link":"https:\/\/jacar.es\/en\/flux-cd-comparativa\/","title":{"rendered":"Flux CD vs ArgoCD: Which to Choose for Your Platform"},"content":{"rendered":"<p>After covering <a href=\"https:\/\/jacar.es\/gitops-argocd-madurez\/\">ArgoCD<\/a> as a deploy practice, it\u2019s time for the other major player in the GitOps space: <strong><a href=\"https:\/\/fluxcd.io\/\">Flux CD<\/a><\/strong>. Both are graduated CNCF projects, both solve the same problem, but with different philosophies and trade-offs. We cover the practical differences that matter when choosing between them.<\/p>\n<h2 id=\"different-philosophies\">Different Philosophies<\/h2>\n<p>The most fundamental difference:<\/p>\n<ul>\n<li><strong>ArgoCD<\/strong> is an <strong>application with UI<\/strong>: you connect, see apps, sync, manage. UI is a first-class citizen.<\/li>\n<li><strong>Flux<\/strong> is a <strong>set of controllers<\/strong> living inside the cluster. Conceived as \u201ceverything is Kubernetes-native\u201d. UI is optional (Weave GitOps).<\/li>\n<\/ul>\n<p>This difference reflects in how each models concepts.<\/p>\n<h2 id=\"how-they-model-things\">How They Model Things<\/h2>\n<p>ArgoCD has one main CRD: <code>Application<\/code>. Each Application points to a repo + path and syncs to a target.<\/p>\n<p>Flux decomposes responsibility into several CRDs:<\/p>\n<ul>\n<li><strong><code>GitRepository<\/code><\/strong> \/ <strong><code>HelmRepository<\/code><\/strong> \/ <strong><code>OCIRepository<\/code><\/strong>: define a source.<\/li>\n<li><strong><code>Kustomization<\/code><\/strong>: applies Kustomize\/YAML resources from the source.<\/li>\n<li><strong><code>HelmRelease<\/code><\/strong>: applies a Helm chart.<\/li>\n<li><strong><code>ImageRepository<\/code><\/strong> \/ <strong><code>ImagePolicy<\/code><\/strong> \/ <strong><code>ImageUpdateAutomation<\/code><\/strong>: for image automation.<\/li>\n<\/ul>\n<p>Flux\u2019s decomposition is more granular and \u201cKubernetes-idiomatic\u201d. ArgoCD\u2019s centralisation is simpler to start with.<\/p>\n<h2 id=\"multi-tenancy\">Multi-tenancy<\/h2>\n<p>Both support it, with different approaches:<\/p>\n<p><strong>ArgoCD<\/strong> uses the concept of <code>Project<\/code> \u2014 groups apps with similar permissions. Combined with RBAC, you define which users can do what in which projects. The UI makes who accesses what explicit.<\/p>\n<p><strong>Flux<\/strong> uses Kubernetes namespaces natively. You can deploy Flux instances per tenant in separate namespaces, or use a shared Flux with <code>Kustomization<\/code> per namespace + native RBAC. It\u2019s more \u201cKubernetes way\u201d but less visual.<\/p>\n<p>For large organisations with many teams, both work; ArgoCD gives more visibility into who does what.<\/p>\n<h2 id=\"image-automation\">Image Automation<\/h2>\n<p>Here Flux has a historical advantage:<\/p>\n<p><strong>Flux<\/strong> includes <strong>native image automation<\/strong>. Detects new images in a registry, evaluates against an <code>ImagePolicy<\/code> (semver, regex, etc.), and automatically commits the new tag to the config repo. No extra component.<\/p>\n<p><strong>ArgoCD<\/strong> requires <strong>ArgoCD Image Updater<\/strong>, a separate component with its own configuration and operation. Works but is clearly add-on.<\/p>\n<p>If automating tag bump after each release matters to you, Flux is more natural.<\/p>\n<h2 id=\"helm-and-kustomize-support\">Helm and Kustomize Support<\/h2>\n<p>Both cover the two systems, with nuances:<\/p>\n<ul>\n<li><strong>Flux<\/strong> has <code>HelmRelease<\/code> as a native CRD \u2014 syntax aligned with <code>helm install<\/code>. And <code>Kustomization<\/code> for Kustomize\/YAML.<\/li>\n<li><strong>ArgoCD<\/strong> models both inside the same <code>Application<\/code>, distinguishing by detected manifest type.<\/li>\n<\/ul>\n<p>In Helm specifically, Flux offers more advanced management options (automatic rollback, custom hooks). ArgoCD covers it but with less detail.<\/p>\n<h2 id=\"notification-and-alerting\">Notification and Alerting<\/h2>\n<p>When something goes wrong in GitOps, knowing matters.<\/p>\n<p><strong>Flux<\/strong> has <code>Alert<\/code> and <code>Provider<\/code> CRDs routing notifications to Slack, Discord, MS Teams, GitHub commit status, etc. Declarative configuration.<\/p>\n<p><strong>ArgoCD<\/strong> covers it via <strong>ArgoCD Notifications<\/strong> (integrated component). Similar functionality, slightly different configuration.<\/p>\n<h2 id=\"multi-cluster\">Multi-cluster<\/h2>\n<p><strong>Flux<\/strong> assumes the model \u201cone Flux instance per cluster\u201d. With 10 clusters, you install Flux in each and each manages its own config. Cross-cluster coordination requires bootstrap.<\/p>\n<p><strong>ArgoCD<\/strong> natively supports managing multiple clusters from a single instance. One ArgoCD UI shows apps from all clusters. More comfortable for centralised platform teams.<\/p>\n<p>For large multi-cluster, ArgoCD offers central visibility; Flux offers per-cluster autonomy.<\/p>\n<h2 id=\"learning-curve\">Learning Curve<\/h2>\n<p><strong>ArgoCD<\/strong>: medium ramp. UI helps a lot to understand what\u2019s happening. The <code>Application<\/code> concept is direct.<\/p>\n<p><strong>Flux<\/strong>: steeper at first. Multiple CRDs and concepts. After the curve, it feels very \u201cnatural\u201d in Kubernetes.<\/p>\n<p>For teams preferring visual tooling and quick productivity, ArgoCD. For teams comfortable with Kubernetes-as-platform, Flux may feel more coherent.<\/p>\n<h2 id=\"when-to-choose-each\">When to Choose Each<\/h2>\n<p><strong>Choose ArgoCD if<\/strong>:<\/p>\n<ul>\n<li>You want rich UI visible to multiple teams.<\/li>\n<li>Multi-cluster with central visibility matters.<\/li>\n<li>You prefer a unified simple tool.<\/li>\n<li>Your team values tool UX.<\/li>\n<\/ul>\n<p><strong>Choose Flux if<\/strong>:<\/p>\n<ul>\n<li>Native image automation is a priority.<\/li>\n<li>You prefer to model everything as Kubernetes CRDs.<\/li>\n<li>Each autonomous cluster fits your model.<\/li>\n<li>Your team is comfortable with CLI + YAML as primary interface.<\/li>\n<\/ul>\n<p><strong>You don\u2019t go wrong with either<\/strong>. Both are mature, actively maintained, and have solid communities. The choice may depend more on what your team finds more comfortable than absolute capabilities.<\/p>\n<h2 id=\"hybrid-patterns\">Hybrid Patterns<\/h2>\n<p>Some large organisations use both:<\/p>\n<ul>\n<li><strong>ArgoCD<\/strong> for product apps with central visibility.<\/li>\n<li><strong>Flux<\/strong> for cluster infrastructure (ingress controllers, monitoring, operators).<\/li>\n<\/ul>\n<p>This separation makes sense: product apps benefit from shared UI; infrastructure can be cluster-local managed with Flux.<\/p>\n<h2 id=\"other-aspects-to-consider\">Other Aspects to Consider<\/h2>\n<p>Some operational details worth evaluating:<\/p>\n<ul>\n<li><strong>Performance at scale<\/strong>. ArgoCD sometimes struggles with thousands of apps in one instance (improving with sharding). Flux scales better \u201chorizontally\u201d with per-cluster instances.<\/li>\n<li><strong>Community and Slack<\/strong>. ArgoCD has very active community; Flux also, different culture.<\/li>\n<li><strong>Enterprise support<\/strong>. Both have providers offering supported versions (Akuity for ArgoCD; Weaveworks\/history for Flux \u2014 Weaveworks ceased activity but the project continues strongly maintained).<\/li>\n<li><strong>Future roadmap<\/strong>. Both still active with regular releases.<\/li>\n<\/ul>\n<h2 id=\"conclusion\">Conclusion<\/h2>\n<p>Flux and ArgoCD are excellent tools with different philosophies. The choice isn\u2019t \u201cwhich is better\u201d but \u201cwhich fits your team and case better\u201d. For many people, ArgoCD\u2019s rich UI is decisive; for others, Flux\u2019s native integration with the Kubernetes ecosystem matters more. If your organisation already has one in production and it works, don\u2019t migrate for fashion. If starting, choose the one your team understands faster and move forward.<\/p>\n<p>Follow us on jacar.es for more on GitOps, deployment automation, and Kubernetes operations.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Flux and ArgoCD are the two mature GitOps options. Practical comparison of philosophy, features, and when each fits better.<\/p>\n","protected":false},"author":1,"featured_media":496,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[24,23],"tags":[282,192,289,290,283,58],"class_list":["post-495","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-herramientas","category-metodologias","tag-argocd","tag-ci-cd","tag-flux","tag-fluxcd","tag-gitops","tag-kubernetes"],"translation":{"provider":"WPGlobus","version":"3.0.2","language":"en","enabled_languages":["es","en"],"languages":{"es":{"title":true,"content":true,"excerpt":true},"en":{"title":true,"content":true,"excerpt":true}}},"gutentor_comment":0,"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Flux CD vs ArgoCD: Which to Choose for Your Platform - Jacar<\/title>\n<meta name=\"description\" content=\"Flux vs ArgoCD comparison: philosophy, multi-tenancy, image automation, Helm\/Kustomize integration, and criteria to choose.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/jacar.es\/flux-cd-comparativa\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Flux CD vs ArgoCD: Which to Choose for Your Platform - Jacar\" \/>\n<meta property=\"og:description\" content=\"Flux vs ArgoCD comparison: philosophy, multi-tenancy, image automation, Helm\/Kustomize integration, and criteria to choose.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/jacar.es\/flux-cd-comparativa\/\" \/>\n<meta property=\"og:site_name\" content=\"Jacar\" \/>\n<meta property=\"article:published_time\" content=\"2023-12-16T10:00:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/jcs-wp-jacar-es.fsn1.your-objectstorage.com\/wp-content\/uploads\/2020\/09\/favicon.png\" \/>\n\t<meta property=\"og:image:width\" content=\"252\" \/>\n\t<meta property=\"og:image:height\" content=\"229\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"javi\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"javi\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"9 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/jacar.es\\\/flux-cd-comparativa\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/jacar.es\\\/flux-cd-comparativa\\\/\"},\"author\":{\"name\":\"javi\",\"@id\":\"https:\\\/\\\/jacar.es\\\/#\\\/schema\\\/person\\\/54a7f7b4224b38fafc9866eb3e614208\"},\"headline\":\"Flux CD vs ArgoCD: Which to Choose for Your Platform\",\"datePublished\":\"2023-12-16T10:00:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/jacar.es\\\/flux-cd-comparativa\\\/\"},\"wordCount\":1778,\"publisher\":{\"@id\":\"https:\\\/\\\/jacar.es\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/jacar.es\\\/flux-cd-comparativa\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/jcs-wp-jacar-es.fsn1.your-objectstorage.com\\\/wp-content\\\/uploads\\\/2023\\\/12\\\/19235637\\\/jwp-1311127-19394.jpg\",\"keywords\":[\"argocd\",\"ci cd\",\"flux\",\"fluxcd\",\"gitops\",\"kubernetes\"],\"articleSection\":[\"Herramientas\",\"Metodolog\u00edas\"],\"inLanguage\":\"en-US\"},{\"@type\":[\"WebPage\",\"ItemPage\"],\"@id\":\"https:\\\/\\\/jacar.es\\\/flux-cd-comparativa\\\/\",\"url\":\"https:\\\/\\\/jacar.es\\\/flux-cd-comparativa\\\/\",\"name\":\"Flux CD vs ArgoCD: Which to Choose for Your Platform - Jacar\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/jacar.es\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/jacar.es\\\/flux-cd-comparativa\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/jacar.es\\\/flux-cd-comparativa\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/jcs-wp-jacar-es.fsn1.your-objectstorage.com\\\/wp-content\\\/uploads\\\/2023\\\/12\\\/19235637\\\/jwp-1311127-19394.jpg\",\"datePublished\":\"2023-12-16T10:00:00+00:00\",\"description\":\"Flux vs ArgoCD comparison: philosophy, multi-tenancy, image automation, Helm\\\/Kustomize integration, and criteria to choose.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/jacar.es\\\/flux-cd-comparativa\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/jacar.es\\\/flux-cd-comparativa\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/jacar.es\\\/flux-cd-comparativa\\\/#primaryimage\",\"url\":\"https:\\\/\\\/jcs-wp-jacar-es.fsn1.your-objectstorage.com\\\/wp-content\\\/uploads\\\/2023\\\/12\\\/19235637\\\/jwp-1311127-19394.jpg\",\"contentUrl\":\"https:\\\/\\\/jcs-wp-jacar-es.fsn1.your-objectstorage.com\\\/wp-content\\\/uploads\\\/2023\\\/12\\\/19235637\\\/jwp-1311127-19394.jpg\",\"width\":1200,\"height\":800,\"caption\":\"Br\u00fajula sobre mapa indicando dos direcciones diferentes\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/jacar.es\\\/flux-cd-comparativa\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Portada\",\"item\":\"https:\\\/\\\/jacar.es\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Flux CD frente a ArgoCD: cual elegir para tu plataforma\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/jacar.es\\\/#website\",\"url\":\"https:\\\/\\\/jacar.es\\\/\",\"name\":\"Jacar\",\"description\":\"Passion for Technology\",\"publisher\":{\"@id\":\"https:\\\/\\\/jacar.es\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/jacar.es\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/jacar.es\\\/#organization\",\"name\":\"Jacar\",\"url\":\"https:\\\/\\\/jacar.es\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/jacar.es\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/jacar.es\\\/wp-content\\\/uploads\\\/2020\\\/09\\\/favicon.png\",\"contentUrl\":\"https:\\\/\\\/jacar.es\\\/wp-content\\\/uploads\\\/2020\\\/09\\\/favicon.png\",\"width\":252,\"height\":229,\"caption\":\"Jacar\"},\"image\":{\"@id\":\"https:\\\/\\\/jacar.es\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.linkedin.com\\\/in\\\/javiercanetearroyo\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/jacar.es\\\/#\\\/schema\\\/person\\\/54a7f7b4224b38fafc9866eb3e614208\",\"name\":\"javi\",\"sameAs\":[\"https:\\\/\\\/jacar.es\"],\"url\":\"https:\\\/\\\/jacar.es\\\/en\\\/author\\\/javi\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Flux CD vs ArgoCD: Which to Choose for Your Platform - Jacar","description":"Flux vs ArgoCD comparison: philosophy, multi-tenancy, image automation, Helm\/Kustomize integration, and criteria to choose.","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:\/\/jacar.es\/flux-cd-comparativa\/","og_locale":"en_US","og_type":"article","og_title":"Flux CD vs ArgoCD: Which to Choose for Your Platform - Jacar","og_description":"Flux vs ArgoCD comparison: philosophy, multi-tenancy, image automation, Helm\/Kustomize integration, and criteria to choose.","og_url":"https:\/\/jacar.es\/flux-cd-comparativa\/","og_site_name":"Jacar","article_published_time":"2023-12-16T10:00:00+00:00","og_image":[{"width":252,"height":229,"url":"https:\/\/jcs-wp-jacar-es.fsn1.your-objectstorage.com\/wp-content\/uploads\/2020\/09\/favicon.png","type":"image\/png"}],"author":"javi","twitter_card":"summary_large_image","twitter_misc":{"Written by":"javi","Est. reading time":"9 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/jacar.es\/flux-cd-comparativa\/#article","isPartOf":{"@id":"https:\/\/jacar.es\/flux-cd-comparativa\/"},"author":{"name":"javi","@id":"https:\/\/jacar.es\/#\/schema\/person\/54a7f7b4224b38fafc9866eb3e614208"},"headline":"Flux CD vs ArgoCD: Which to Choose for Your Platform","datePublished":"2023-12-16T10:00:00+00:00","mainEntityOfPage":{"@id":"https:\/\/jacar.es\/flux-cd-comparativa\/"},"wordCount":1778,"publisher":{"@id":"https:\/\/jacar.es\/#organization"},"image":{"@id":"https:\/\/jacar.es\/flux-cd-comparativa\/#primaryimage"},"thumbnailUrl":"https:\/\/jcs-wp-jacar-es.fsn1.your-objectstorage.com\/wp-content\/uploads\/2023\/12\/19235637\/jwp-1311127-19394.jpg","keywords":["argocd","ci cd","flux","fluxcd","gitops","kubernetes"],"articleSection":["Herramientas","Metodolog\u00edas"],"inLanguage":"en-US"},{"@type":["WebPage","ItemPage"],"@id":"https:\/\/jacar.es\/flux-cd-comparativa\/","url":"https:\/\/jacar.es\/flux-cd-comparativa\/","name":"Flux CD vs ArgoCD: Which to Choose for Your Platform - Jacar","isPartOf":{"@id":"https:\/\/jacar.es\/#website"},"primaryImageOfPage":{"@id":"https:\/\/jacar.es\/flux-cd-comparativa\/#primaryimage"},"image":{"@id":"https:\/\/jacar.es\/flux-cd-comparativa\/#primaryimage"},"thumbnailUrl":"https:\/\/jcs-wp-jacar-es.fsn1.your-objectstorage.com\/wp-content\/uploads\/2023\/12\/19235637\/jwp-1311127-19394.jpg","datePublished":"2023-12-16T10:00:00+00:00","description":"Flux vs ArgoCD comparison: philosophy, multi-tenancy, image automation, Helm\/Kustomize integration, and criteria to choose.","breadcrumb":{"@id":"https:\/\/jacar.es\/flux-cd-comparativa\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/jacar.es\/flux-cd-comparativa\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jacar.es\/flux-cd-comparativa\/#primaryimage","url":"https:\/\/jcs-wp-jacar-es.fsn1.your-objectstorage.com\/wp-content\/uploads\/2023\/12\/19235637\/jwp-1311127-19394.jpg","contentUrl":"https:\/\/jcs-wp-jacar-es.fsn1.your-objectstorage.com\/wp-content\/uploads\/2023\/12\/19235637\/jwp-1311127-19394.jpg","width":1200,"height":800,"caption":"Br\u00fajula sobre mapa indicando dos direcciones diferentes"},{"@type":"BreadcrumbList","@id":"https:\/\/jacar.es\/flux-cd-comparativa\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Portada","item":"https:\/\/jacar.es\/"},{"@type":"ListItem","position":2,"name":"Flux CD frente a ArgoCD: cual elegir para tu plataforma"}]},{"@type":"WebSite","@id":"https:\/\/jacar.es\/#website","url":"https:\/\/jacar.es\/","name":"Jacar","description":"Passion for Technology","publisher":{"@id":"https:\/\/jacar.es\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/jacar.es\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/jacar.es\/#organization","name":"Jacar","url":"https:\/\/jacar.es\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jacar.es\/#\/schema\/logo\/image\/","url":"https:\/\/jacar.es\/wp-content\/uploads\/2020\/09\/favicon.png","contentUrl":"https:\/\/jacar.es\/wp-content\/uploads\/2020\/09\/favicon.png","width":252,"height":229,"caption":"Jacar"},"image":{"@id":"https:\/\/jacar.es\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.linkedin.com\/in\/javiercanetearroyo\/"]},{"@type":"Person","@id":"https:\/\/jacar.es\/#\/schema\/person\/54a7f7b4224b38fafc9866eb3e614208","name":"javi","sameAs":["https:\/\/jacar.es"],"url":"https:\/\/jacar.es\/en\/author\/javi\/"}]}},"_links":{"self":[{"href":"https:\/\/jacar.es\/en\/wp-json\/wp\/v2\/posts\/495","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/jacar.es\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/jacar.es\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/jacar.es\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/jacar.es\/en\/wp-json\/wp\/v2\/comments?post=495"}],"version-history":[{"count":0,"href":"https:\/\/jacar.es\/en\/wp-json\/wp\/v2\/posts\/495\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/jacar.es\/en\/wp-json\/wp\/v2\/media\/496"}],"wp:attachment":[{"href":"https:\/\/jacar.es\/en\/wp-json\/wp\/v2\/media?parent=495"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/jacar.es\/en\/wp-json\/wp\/v2\/categories?post=495"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/jacar.es\/en\/wp-json\/wp\/v2\/tags?post=495"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}