<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0"><channel><title>Pulumi Blog: Nico Thomas</title><link>https://www.pulumi.com/blog/author/nico-thomas/</link><description>Pulumi blog posts: Nico Thomas.</description><language>en-us</language><pubDate>Tue, 27 May 2025 00:00:00 +0000</pubDate><item><title>Platform Engineering Buffet at SEITENBAU</title><link>https://www.pulumi.com/blog/platform-engineering-buffet/</link><pubDate>Tue, 27 May 2025 00:00:00 +0000</pubDate><guid>https://www.pulumi.com/blog/platform-engineering-buffet/</guid><description>
&lt;img src="https://www.pulumi.com/images/generated/blog/platform-engineering-buffet/index.png" /&gt;
&lt;p&gt;&lt;em&gt;This post is based on my video interview with Nico Thomas, a platform engineer at SEITENBAU. In this article, Nico shares how he and his team built a flexible, reusable platform to support 20+ diverse projects using Pulumi. Watch the video below or read on for Nico’s take on building an infrastructure buffet. - Adam Gordon Bell&lt;/em&gt;&lt;/p&gt;
&lt;div style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;"&gt;
&lt;iframe allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share; fullscreen" loading="eager" referrerpolicy="strict-origin-when-cross-origin" src="https://www.youtube.com/embed/wF9COpHJ9b4?rel=0?autoplay=0&amp;amp;controls=1&amp;amp;end=0&amp;amp;loop=0&amp;amp;mute=0&amp;amp;start=0" style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0;" title="YouTube video"&gt;&lt;/iframe&gt;
&lt;/div&gt;
&lt;p&gt;Imagine your company isn&amp;rsquo;t Spotify with one product pipeline, but 20 independent government projects running on Ansible-provisioned VMs—some on Kubernetes, some delivered into other customer data centers, some operated by clients themselves. Each team is building its own CI/CD, secrets management, and integrations. You’re left with a million reinvented wheels.&lt;/p&gt;
&lt;p&gt;That was the situation my team and I faced at SEITENBAU, a German software company specializing in custom development for both public and private sectors. Unlike the typical platform engineering stories—where teams build infrastructure for a single product with multiple microservices—we had a fundamentally different challenge: &lt;strong&gt;How do you build a platform that serves dozens of completely independent projects, each with their own technology choices, deployment targets, and operational models?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;The answer? Stop trying to force everyone onto the same plate. Instead, build a buffet.&lt;/p&gt;
&lt;h2 id="the-buffet-philosophy"&gt;The Buffet Philosophy&lt;/h2&gt;
&lt;p&gt;&lt;img src="slide-02.png" alt="Buffet visualization with labeled containers showing NPM Artifact Storage, Container Registry, and various infrastructure components"&gt;&lt;/p&gt;
&lt;p&gt;Think of a traditional platform as a set menu—also known as prix fixe—where everyone gets the same courses, prepared the same way, in the same order. But what if your diners include vegans, carnivores, and people with various dietary restrictions? What if some want a quick snack while others need a seven-course meal?&lt;/p&gt;
&lt;p&gt;That was exactly the situation we faced. We had:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Government projects that needed to run on-premises due to data sovereignty requirements.&lt;/li&gt;
&lt;li&gt;Modern cloud-native applications leveraging Kubernetes and GitOps.&lt;/li&gt;
&lt;li&gt;Legacy systems still operating on virtual machines managed with Ansible.&lt;/li&gt;
&lt;li&gt;Projects we ran as managed services and others we simply delivered to customers.&lt;/li&gt;
&lt;li&gt;Teams using various CI/CD tools, artifact repositories, and deployment strategies.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;A one-size-fits-all platform would have been a disaster. Instead, my team built a platform offering a rich selection of pre-configured, production-ready components. Teams could mix and match according to their specific needs, creating their own unique infrastructure combinations.&lt;/p&gt;
&lt;h2 id="the-challenge-beyond-microservices"&gt;The Challenge: Beyond Microservices&lt;/h2&gt;
&lt;p&gt;Most platform engineering resources assume you&amp;rsquo;re building infrastructure for a single product – Spotify&amp;rsquo;s Backstage, for example. But what happens when you&amp;rsquo;re dealing with over 20 completely independent projects, each with distinct requirements?&lt;/p&gt;
&lt;p&gt;Each project is distinct, featuring its own:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Technology stack (Java predominates, but we support various frameworks and languages).&lt;/li&gt;
&lt;li&gt;Infrastructure requirements (cloud, on-premises, or hybrid setups).&lt;/li&gt;
&lt;li&gt;Security and compliance constraints.&lt;/li&gt;
&lt;li&gt;Operational models (managed by us, the client, or jointly).&lt;/li&gt;
&lt;li&gt;Release cadences and deployment strategies.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;img src="slide-07.png" alt="Choose your menu"&gt;&lt;/p&gt;
&lt;p&gt;Initially, this diversity seemed chaotic, but we quickly noticed that underneath these variations, common patterns emerged. Every project consistently required source control, CI/CD pipelines, artifact storage, secrets management, and deployment targets. The critical realization was that &lt;strong&gt;we didn&amp;rsquo;t need to standardize what teams chose—we needed to standardize how they connected these building blocks.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;That&amp;rsquo;s where Pulumi became essential. Its flexibility allowed us to construct an infrastructure buffet that genuinely accommodated the diverse appetites and needs of every team.&lt;/p&gt;
&lt;h2 id="building-the-kitchen-architecture-with-pulumi"&gt;Building the Kitchen: Architecture with Pulumi&lt;/h2&gt;
&lt;p&gt;&lt;img src="slide-09.png" alt="Unified project configuration"&gt;&lt;/p&gt;
&lt;p&gt;Behind every great buffet is a well-organized kitchen. For our infrastructure, that kitchen is powered by Pulumi and Python, orchestrating a complex web of infrastructure services, configurations, and deployments. Using Pulumi together with Python has proven extremely valuable—it makes our day-to-day tasks easier to maintain and understand.&lt;/p&gt;
&lt;h3 id="the-multi-stack-approach"&gt;The Multi-Stack Approach&lt;/h3&gt;
&lt;p&gt;Rather than creating a single monolithic infrastructure program, we adopted a modular approach with multiple Pulumi stacks. This decision was essential for managing complexity and empowering team autonomy.&lt;/p&gt;
&lt;p&gt;&lt;img src="slide-10.png" alt="A look in the kitchen"&gt;&lt;/p&gt;
&lt;p&gt;Our architecture comprises several specialized Pulumi programs:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;GitLab System&lt;/strong&gt;: Manages installations and configurations of GitLab.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Project Configuration&lt;/strong&gt;: Sets up team-specific GitLab groups, CI/CD runners, and agents.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Cluster Management&lt;/strong&gt;: Provisions Kubernetes clusters complete with standard add-ons.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;VM Infrastructure&lt;/strong&gt;: Manages traditional VM-based deployments utilizing Ansible.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Platform Services&lt;/strong&gt;: Configures shared services such as artifact repositories and identity providers.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Each program can maintain multiple stacks (dev, staging, prod), allowing us to manage various environments independently while leveraging shared infrastructure code.&lt;/p&gt;
&lt;h2 id="from-ingredients-to-ready-made-dishes-reusable-components"&gt;From Ingredients to Ready-Made Dishes: Reusable Components&lt;/h2&gt;
&lt;p&gt;&lt;img src="slide-06.png" alt="Platform vision showing the complete self-service platform"&gt;&lt;/p&gt;
&lt;p&gt;The real magic happens in our component library. Just as a buffet offers complete dishes rather than raw ingredients, we&amp;rsquo;ve built high-level components that encapsulate complex infrastructure patterns.&lt;/p&gt;
&lt;h3 id="example-the-kubernetes-storage-component"&gt;Example: The Kubernetes Storage Component&lt;/h3&gt;
&lt;p&gt;&lt;img src="slide-15.png" alt="KubeLonghorn component diagram"&gt;&lt;/p&gt;
&lt;p&gt;Consider our Longhorn storage component. Instead of requiring teams to understand Helm charts, storage classes, and snapshot configurations, they simply declare they need persistent storage.&lt;/p&gt;
&lt;p&gt;The component handles all the complexity: installing Longhorn, configuring appropriate replication for test vs. production environments, setting up snapshot classes, and integrating with our internal certificate authority.&lt;/p&gt;
&lt;h2 id="two-years-later-the-buffet-is-open"&gt;Two Years Later: The Buffet is Open&lt;/h2&gt;
&lt;p&gt;After two years of running this platform in production, we&amp;rsquo;ve learned what works and what we&amp;rsquo;d do differently.&lt;/p&gt;
&lt;p&gt;Building a platform for diverse, independent projects requires a different mindset than traditional platform engineering. Instead of forcing standardization, we&amp;rsquo;ve embraced flexibility while maintaining consistency where it matters.&lt;/p&gt;
&lt;p&gt;The buffet approach—powered by Pulumi&amp;rsquo;s flexibility and Python&amp;rsquo;s expressiveness—has allowed us to serve 20+ different projects efficiently while giving teams the autonomy they need. It&amp;rsquo;s not about having one perfect dish; it&amp;rsquo;s about having a kitchen flexible enough to satisfy everyone.&lt;/p&gt;
&lt;p&gt;If you&amp;rsquo;re facing similar challenges with diverse project requirements, consider building a buffet instead of a prix fixe menu. Your teams will thank you for it.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Want to build your own infrastructure buffet? &lt;a href="https://www.pulumi.com/docs/get-started/"&gt;Get started with Pulumi&lt;/a&gt; and join &lt;a href="https://slack.pulumi.com/"&gt;our community Slack&lt;/a&gt; to connect with engineers solving similar challenges.&lt;/em&gt;&lt;/p&gt;</description><author>Nico Thomas</author><author>Adam Gordon Bell</author><category>platform-engineering</category><category>kubernetes</category><category>infrastructure-as-code</category></item></channel></rss>