Full Stack Journey 081: Growing Your Application Deployments With Acorn

Episode 81 of the Full Stack Journey podcast features Darren Shepherd, one of the creators of Rancher and now a co-founder of Acorn Labs, the company behind the Acorn open source project. Darren (@ibuildthecloud on Twitter) shares a ton of useful information on Acorn, including:

  • Where Acorn fits into the overall landscape of infrastructure and application development tooling
  • Why Kubernetes is useful but not necessarily the “final end state” for many organizations
  • How Acorn helps “plug the gaps” in Kubernetes
  • How you can get started using Acorn in your environment

This episode is both entertaining and highly informative—but we say that about all our episodes! (No, seriously, you’ll enjoy this one.)

Show Notes

Acorn Labs

Getting Started with Acorn

Acorn GitHub Repo

Acorn Users 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); }; } */ ?>