{"id":489,"date":"2023-12-07T10:00:00","date_gmt":"2023-12-07T10:00:00","guid":{"rendered":"https:\/\/jacar.es\/service-mesh-istio-linkerd\/"},"modified":"2023-12-07T10:00:00","modified_gmt":"2023-12-07T10:00:00","slug":"service-mesh-istio-linkerd","status":"publish","type":"post","link":"https:\/\/jacar.es\/en\/service-mesh-istio-linkerd\/","title":{"rendered":"Service Mesh in 2023: Istio, Linkerd, and the Cilium Option"},"content":{"rendered":"<p>A <strong>service mesh<\/strong> adds an infrastructure layer that manages communication between services \u2014 mTLS, observability, traffic management, retry\/timeout policies \u2014 without requiring application code changes. In 2023 the ecosystem has consolidated: <strong>Istio<\/strong> remains the most complete and complex, <strong>Linkerd<\/strong> is the simple lightweight option, and <strong>Cilium<\/strong> has entered strongly offering service mesh over eBPF without sidecars.<\/p>\n<p>We cover what problems a service mesh solves, what it costs to operate, and when it\u2019s the right tool versus simpler alternatives.<\/p>\n<h2 id=\"what-a-service-mesh-does\">What a Service Mesh Does<\/h2>\n<p>When you have 20+ services communicating in Kubernetes, common needs emerge:<\/p>\n<ul>\n<li><strong>Encryption between services<\/strong> (mTLS) \u2014 real Zero Trust between microservices.<\/li>\n<li><strong>Uniform observability<\/strong> \u2014 metrics (latency, error rate, RPS) for each inter-service call without manually instrumenting each app.<\/li>\n<li><strong>Traffic management<\/strong> \u2014 canary deployments, A\/B testing, traffic mirroring without touching code.<\/li>\n<li><strong>Consistent retries, circuit breaking, timeouts<\/strong> \u2014 declarative policies instead of implemented in every service.<\/li>\n<li><strong>Fine authorization<\/strong> \u2014 which services can call which, based on cryptographic identity.<\/li>\n<\/ul>\n<p>Without a service mesh, each team implements this in its language and differently. The mesh provides it as a cross-cutting layer.<\/p>\n<h2 id=\"istio\">Istio<\/h2>\n<p><a href=\"https:\/\/istio.io\/\">Istio<\/a> is the most mature and complete. Originated at Google\/IBM\/Lyft, it\u2019s the closest to \u201cthe standard\u201d in service mesh.<\/p>\n<p><strong>Pros<\/strong>:<\/p>\n<ul>\n<li><strong>Extensive feature set<\/strong>: sophisticated traffic policies, multi-cluster, JWT authentication, validation, fine authorization.<\/li>\n<li><strong>Ecosystem and support<\/strong>: extensive docs, integration with nearly everything, large community.<\/li>\n<li><strong>Enterprise use cases<\/strong> well covered.<\/li>\n<\/ul>\n<p><strong>Cons<\/strong>:<\/p>\n<ul>\n<li><strong>High operational complexity<\/strong>. Hundreds of CRDs, subtle behaviours, hard debugging.<\/li>\n<li><strong>Notable resource consumption<\/strong> \u2014 Envoy sidecars in each pod add CPU\/memory.<\/li>\n<li><strong>Steep learning curve<\/strong>.<\/li>\n<li>Historically, <strong>problematic upgrades<\/strong> (improving in recent versions).<\/li>\n<\/ul>\n<p>Istio is the choice if you need broad functionality and have a team dedicated to operating it.<\/p>\n<h2 id=\"linkerd\">Linkerd<\/h2>\n<p><a href=\"https:\/\/linkerd.io\/\">Linkerd<\/a> (version 2) took the opposite path: simplicity as a guiding principle. Written in Rust for the proxies (linkerd2-proxy instead of Envoy).<\/p>\n<p><strong>Pros<\/strong>:<\/p>\n<ul>\n<li><strong>Operational simplicity<\/strong>. Few CRDs, predictable behaviour, direct debugging.<\/li>\n<li><strong>Excellent performance<\/strong>. Linkerd2-proxy is very lightweight \u2014 less CPU\/memory than Envoy.<\/li>\n<li><strong>Fast onboarding<\/strong>. One hour to have mTLS working between services.<\/li>\n<li><strong>Smooth upgrades<\/strong>.<\/li>\n<\/ul>\n<p><strong>Cons<\/strong>:<\/p>\n<ul>\n<li><strong>Narrower feature set<\/strong>. Advanced functionality (sophisticated multi-cluster, very complex traffic policies) limited vs Istio.<\/li>\n<li><strong>Smaller community<\/strong>, though solid.<\/li>\n<\/ul>\n<p>Linkerd is the choice if you want main service-mesh benefits without taking on Istio\u2019s complexity.<\/p>\n<h2 id=\"cilium-service-mesh\">Cilium Service Mesh<\/h2>\n<p><a href=\"https:\/\/cilium.io\/\">Cilium<\/a>, originally a CNI with eBPF, added service-mesh functionality in 2022. Its novelty: most work happens <strong>in the kernel via eBPF<\/strong>, without Envoy sidecars.<\/p>\n<p><strong>Pros<\/strong>:<\/p>\n<ul>\n<li><strong>No sidecars<\/strong> (\u201csidecarless\u201d mode). You save CPU\/memory Istio or Linkerd consume on every pod.<\/li>\n<li><strong>Networking + service mesh convergence<\/strong> in one tool. If you already use Cilium as CNI, adding mesh is natural.<\/li>\n<li><strong>Deep network observability<\/strong> via Hubble.<\/li>\n<li><strong>mTLS with SPIFFE<\/strong>, traffic policies, layer 7 inspection.<\/li>\n<\/ul>\n<p><strong>Cons<\/strong>:<\/p>\n<ul>\n<li><strong>Less mature as service mesh<\/strong> than Istio or Linkerd. Some features still evolving.<\/li>\n<li><strong>Tied to Cilium as CNI<\/strong>. Not trivial to mix with other CNIs.<\/li>\n<li><strong>eBPF requires modern kernels<\/strong>.<\/li>\n<\/ul>\n<p>Cilium Service Mesh is interesting if Cilium is already your CNI or you\u2019re starting a new cluster.<\/p>\n<h2 id=\"comparison\">Comparison<\/h2>\n<table>\n<colgroup>\n<col style=\"width: 25%\" \/>\n<col style=\"width: 19%\" \/>\n<col style=\"width: 25%\" \/>\n<col style=\"width: 30%\" \/>\n<\/colgroup>\n<thead>\n<tr class=\"header\">\n<th>Aspect<\/th>\n<th>Istio<\/th>\n<th>Linkerd<\/th>\n<th>Cilium SM<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr class=\"odd\">\n<td>Mesh maturity<\/td>\n<td>Very high<\/td>\n<td>High<\/td>\n<td>Medium-high<\/td>\n<\/tr>\n<tr class=\"even\">\n<td>Ops complexity<\/td>\n<td>High<\/td>\n<td>Low<\/td>\n<td>Medium<\/td>\n<\/tr>\n<tr class=\"odd\">\n<td>Performance overhead<\/td>\n<td>Medium (Envoy)<\/td>\n<td>Low (Rust proxy)<\/td>\n<td>Very low (eBPF)<\/td>\n<\/tr>\n<tr class=\"even\">\n<td>Feature richness<\/td>\n<td>Maximum<\/td>\n<td>Essential<\/td>\n<td>Growing<\/td>\n<\/tr>\n<tr class=\"odd\">\n<td>Multi-cluster<\/td>\n<td>Excellent<\/td>\n<td>Limited<\/td>\n<td>In development<\/td>\n<\/tr>\n<tr class=\"even\">\n<td>Sidecars<\/td>\n<td>Yes (Envoy)<\/td>\n<td>Yes (linkerd2-proxy)<\/td>\n<td>Optional\/none<\/td>\n<\/tr>\n<tr class=\"odd\">\n<td>Community<\/td>\n<td>Large<\/td>\n<td>Solid<\/td>\n<td>Growing<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h2 id=\"when-you-dont-need-a-service-mesh\">When You Don\u2019t Need a Service Mesh<\/h2>\n<p>Important honesty: many teams adopt service mesh because \u201cthe conference says so\u201d without having the problem it solves. You don\u2019t need a service mesh if:<\/p>\n<ul>\n<li><strong>You have few services<\/strong> (under 10). Operational overhead doesn\u2019t pay off.<\/li>\n<li><strong>mTLS between services isn\u2019t a requirement<\/strong> and you can solve what you need with Kubernetes NetworkPolicies.<\/li>\n<li><strong>Basic observability<\/strong> is enough with Prometheus + manual app instrumentation.<\/li>\n<li><strong>You don\u2019t do canary or complex traffic shaping<\/strong>. A simple Ingress suffices.<\/li>\n<li><strong>Your team lacks capacity<\/strong> to take on one more system in maintenance.<\/li>\n<\/ul>\n<p>For such cases, lighter alternatives may work better:<\/p>\n<ul>\n<li><strong>Kubernetes NetworkPolicies<\/strong> for basic authorization.<\/li>\n<li><strong>Direct OpenTelemetry<\/strong> for tracing and metrics.<\/li>\n<li><strong>Ingress controller with TLS<\/strong> for external traffic.<\/li>\n<\/ul>\n<h2 id=\"when-it-does-pay-off\">When It Does Pay Off<\/h2>\n<p>Clear indicators it\u2019s time for a service mesh:<\/p>\n<ul>\n<li><strong>More than 20-30 services<\/strong> in production.<\/li>\n<li><strong>Compliance requiring inter-service encryption<\/strong> (not just external-facing).<\/li>\n<li><strong>Canary releases or shadow traffic<\/strong> are regular practices.<\/li>\n<li><strong>Multiple teams<\/strong> needing consistent policies without manual coordination.<\/li>\n<li><strong>Multi-cluster<\/strong> with cross-cluster traffic.<\/li>\n<\/ul>\n<h2 id=\"pragmatic-recommendation\">Pragmatic Recommendation<\/h2>\n<p>For 2024:<\/p>\n<ul>\n<li><strong>Starting out, limited operational budget<\/strong> \u2192 Linkerd. Gives you 80% of the value at 20% of the cost.<\/li>\n<li><strong>Need advanced features (sophisticated multi-cluster, JWT validation, etc.)<\/strong> \u2192 Istio. Take on the operating cost.<\/li>\n<li><strong>Already use Cilium as CNI or starting a new cluster<\/strong> \u2192 Cilium Service Mesh. Convergence saves complexity.<\/li>\n<\/ul>\n<p>And if you doubt whether you need it: probably not yet.<\/p>\n<h2 id=\"conclusion\">Conclusion<\/h2>\n<p>Service mesh is a powerful tool for specific inter-service communication problems at scale. The choice among Istio, Linkerd, and Cilium depends more on operational priority and existing stack than absolute technical capabilities. The most important question isn\u2019t \u201cwhich do I choose\u201d but \u201cdo I need it today\u201d. For many teams, the honest answer is \u201cnot yet\u201d.<\/p>\n<p>Follow us on jacar.es for more on Kubernetes, microservices networking, and cloud-native architecture.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>A service mesh offers cross-cutting mTLS, observability, and traffic management. A comparison among Istio, Linkerd, and Cilium for real cases.<\/p>\n","protected":false},"author":1,"featured_media":490,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[27],"tags":[131,104,58,280,281,103],"class_list":["post-489","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-arquitectura","tag-cilium","tag-istio","tag-kubernetes","tag-linkerd","tag-mtls","tag-service-mesh"],"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>Service Mesh in 2023: Istio, Linkerd, and the Cilium Option - Jacar<\/title>\n<meta name=\"description\" content=\"Service mesh comparison: Istio, Linkerd, and Cilium in 2023. Benefits, operational complexity, and criteria to decide if you need one.\" \/>\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\/service-mesh-istio-linkerd\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Service Mesh in 2023: Istio, Linkerd, and the Cilium Option - Jacar\" \/>\n<meta property=\"og:description\" content=\"Service mesh comparison: Istio, Linkerd, and Cilium in 2023. Benefits, operational complexity, and criteria to decide if you need one.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/jacar.es\/service-mesh-istio-linkerd\/\" \/>\n<meta property=\"og:site_name\" content=\"Jacar\" \/>\n<meta property=\"article:published_time\" content=\"2023-12-07T10: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\\\/service-mesh-istio-linkerd\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/jacar.es\\\/service-mesh-istio-linkerd\\\/\"},\"author\":{\"name\":\"javi\",\"@id\":\"https:\\\/\\\/jacar.es\\\/#\\\/schema\\\/person\\\/54a7f7b4224b38fafc9866eb3e614208\"},\"headline\":\"Service Mesh in 2023: Istio, Linkerd, and the Cilium Option\",\"datePublished\":\"2023-12-07T10:00:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/jacar.es\\\/service-mesh-istio-linkerd\\\/\"},\"wordCount\":1775,\"publisher\":{\"@id\":\"https:\\\/\\\/jacar.es\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/jacar.es\\\/service-mesh-istio-linkerd\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/jcs-wp-jacar-es.fsn1.your-objectstorage.com\\\/wp-content\\\/uploads\\\/2023\\\/12\\\/19234650\\\/jwp-1294106-25838.jpg\",\"keywords\":[\"cilium\",\"istio\",\"kubernetes\",\"linkerd\",\"mtls\",\"service mesh\"],\"articleSection\":[\"Arquitectura\"],\"inLanguage\":\"en-US\"},{\"@type\":[\"WebPage\",\"ItemPage\"],\"@id\":\"https:\\\/\\\/jacar.es\\\/service-mesh-istio-linkerd\\\/\",\"url\":\"https:\\\/\\\/jacar.es\\\/service-mesh-istio-linkerd\\\/\",\"name\":\"Service Mesh in 2023: Istio, Linkerd, and the Cilium Option - Jacar\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/jacar.es\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/jacar.es\\\/service-mesh-istio-linkerd\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/jacar.es\\\/service-mesh-istio-linkerd\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/jcs-wp-jacar-es.fsn1.your-objectstorage.com\\\/wp-content\\\/uploads\\\/2023\\\/12\\\/19234650\\\/jwp-1294106-25838.jpg\",\"datePublished\":\"2023-12-07T10:00:00+00:00\",\"description\":\"Service mesh comparison: Istio, Linkerd, and Cilium in 2023. Benefits, operational complexity, and criteria to decide if you need one.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/jacar.es\\\/service-mesh-istio-linkerd\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/jacar.es\\\/service-mesh-istio-linkerd\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/jacar.es\\\/service-mesh-istio-linkerd\\\/#primaryimage\",\"url\":\"https:\\\/\\\/jcs-wp-jacar-es.fsn1.your-objectstorage.com\\\/wp-content\\\/uploads\\\/2023\\\/12\\\/19234650\\\/jwp-1294106-25838.jpg\",\"contentUrl\":\"https:\\\/\\\/jcs-wp-jacar-es.fsn1.your-objectstorage.com\\\/wp-content\\\/uploads\\\/2023\\\/12\\\/19234650\\\/jwp-1294106-25838.jpg\",\"width\":1200,\"height\":800,\"caption\":\"Cables de red conectados en patr\u00f3n complejo en sala de servidores\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/jacar.es\\\/service-mesh-istio-linkerd\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Portada\",\"item\":\"https:\\\/\\\/jacar.es\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Service mesh en 2023: Istio, Linkerd y la opcion Cilium\"}]},{\"@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":"Service Mesh in 2023: Istio, Linkerd, and the Cilium Option - Jacar","description":"Service mesh comparison: Istio, Linkerd, and Cilium in 2023. Benefits, operational complexity, and criteria to decide if you need one.","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\/service-mesh-istio-linkerd\/","og_locale":"en_US","og_type":"article","og_title":"Service Mesh in 2023: Istio, Linkerd, and the Cilium Option - Jacar","og_description":"Service mesh comparison: Istio, Linkerd, and Cilium in 2023. Benefits, operational complexity, and criteria to decide if you need one.","og_url":"https:\/\/jacar.es\/service-mesh-istio-linkerd\/","og_site_name":"Jacar","article_published_time":"2023-12-07T10: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\/service-mesh-istio-linkerd\/#article","isPartOf":{"@id":"https:\/\/jacar.es\/service-mesh-istio-linkerd\/"},"author":{"name":"javi","@id":"https:\/\/jacar.es\/#\/schema\/person\/54a7f7b4224b38fafc9866eb3e614208"},"headline":"Service Mesh in 2023: Istio, Linkerd, and the Cilium Option","datePublished":"2023-12-07T10:00:00+00:00","mainEntityOfPage":{"@id":"https:\/\/jacar.es\/service-mesh-istio-linkerd\/"},"wordCount":1775,"publisher":{"@id":"https:\/\/jacar.es\/#organization"},"image":{"@id":"https:\/\/jacar.es\/service-mesh-istio-linkerd\/#primaryimage"},"thumbnailUrl":"https:\/\/jcs-wp-jacar-es.fsn1.your-objectstorage.com\/wp-content\/uploads\/2023\/12\/19234650\/jwp-1294106-25838.jpg","keywords":["cilium","istio","kubernetes","linkerd","mtls","service mesh"],"articleSection":["Arquitectura"],"inLanguage":"en-US"},{"@type":["WebPage","ItemPage"],"@id":"https:\/\/jacar.es\/service-mesh-istio-linkerd\/","url":"https:\/\/jacar.es\/service-mesh-istio-linkerd\/","name":"Service Mesh in 2023: Istio, Linkerd, and the Cilium Option - Jacar","isPartOf":{"@id":"https:\/\/jacar.es\/#website"},"primaryImageOfPage":{"@id":"https:\/\/jacar.es\/service-mesh-istio-linkerd\/#primaryimage"},"image":{"@id":"https:\/\/jacar.es\/service-mesh-istio-linkerd\/#primaryimage"},"thumbnailUrl":"https:\/\/jcs-wp-jacar-es.fsn1.your-objectstorage.com\/wp-content\/uploads\/2023\/12\/19234650\/jwp-1294106-25838.jpg","datePublished":"2023-12-07T10:00:00+00:00","description":"Service mesh comparison: Istio, Linkerd, and Cilium in 2023. Benefits, operational complexity, and criteria to decide if you need one.","breadcrumb":{"@id":"https:\/\/jacar.es\/service-mesh-istio-linkerd\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/jacar.es\/service-mesh-istio-linkerd\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jacar.es\/service-mesh-istio-linkerd\/#primaryimage","url":"https:\/\/jcs-wp-jacar-es.fsn1.your-objectstorage.com\/wp-content\/uploads\/2023\/12\/19234650\/jwp-1294106-25838.jpg","contentUrl":"https:\/\/jcs-wp-jacar-es.fsn1.your-objectstorage.com\/wp-content\/uploads\/2023\/12\/19234650\/jwp-1294106-25838.jpg","width":1200,"height":800,"caption":"Cables de red conectados en patr\u00f3n complejo en sala de servidores"},{"@type":"BreadcrumbList","@id":"https:\/\/jacar.es\/service-mesh-istio-linkerd\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Portada","item":"https:\/\/jacar.es\/"},{"@type":"ListItem","position":2,"name":"Service mesh en 2023: Istio, Linkerd y la opcion Cilium"}]},{"@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\/489","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=489"}],"version-history":[{"count":0,"href":"https:\/\/jacar.es\/en\/wp-json\/wp\/v2\/posts\/489\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/jacar.es\/en\/wp-json\/wp\/v2\/media\/490"}],"wp:attachment":[{"href":"https:\/\/jacar.es\/en\/wp-json\/wp\/v2\/media?parent=489"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/jacar.es\/en\/wp-json\/wp\/v2\/categories?post=489"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/jacar.es\/en\/wp-json\/wp\/v2\/tags?post=489"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}