What is a service mesh? Full Stack Journey episode 16 tackles that question, along with a number of other related questions. Joining to help explain service meshes and Linkerd is George Miranda from Buoyant.io.

George and Scott talk about topics including:

* What is a service mesh, and what’s driving the creation and use of service meshes?
* What is Linkerd?
* How would someone get started with Linkerd and service meshes?
* What are some prerequisites people should know first before getting started with service meshes and Linkerd?
* How important a change are service meshes to how networking is done?
* What do you think the future holds for service meshes and networking?

If you enjoyed this episode, we’d really appreciate it if you could take a few minutes to provide some feedback on iTunes. Thanks!

Links:

Kubernetes with Linkerd tutorial series – Buoyant.io

George Miranda on Twitter – Twitter

CNCF Projects – CNCF.io

Linkerd documentation – Linkerd.io

Linkerd Public Slack Channel – Slack

Share this episode

Because you need maintenance too.

Human Infrastructure is a weekly newsletter about life in IT.

Subscribe

Have feedback for the hosts?

We want your follow-up.

SEND AN FU 😎

Leave a Comment

window.addEventListener("DOMContentLoaded", function() { var preElements = document.getElementsByTagName("pre"); if (preElements && preElements.length > 0) { for (var i = 0; i < preElements.length; i++) { var preElement = preElements[i]; var spanElement = document.createElement("span"); spanElement.classList.add("copy-container"); var buttonElement = document.createElement("button"); buttonElement.textContent = "Copy Snippet"; buttonElement.classList.add("copy-button"); buttonElement.addEventListener("click", createCopyTextHandler(preElement)); spanElement.appendChild(preElement.cloneNode(true)); spanElement.appendChild(buttonElement); preElement.parentNode.replaceChild(spanElement, preElement); } } }); function createCopyTextHandler(element) { return function() { var text = element.textContent; var tempInput = document.createElement("textarea"); tempInput.style = "position: absolute; left: -1000px; top: -1000px"; tempInput.value = text; document.body.appendChild(tempInput); tempInput.select(); document.execCommand("copy"); document.body.removeChild(tempInput); }; } */ ?>