anynines’ cover photo
anynines

anynines

IT Services and IT Consulting

Tailored Cloud Platform Solutions

About us

anynines excels at building cloud computing and cloud automation data solutions for enterprises on their digital transformation journey. Our sophisticated data management and data service solutions and cloud infrastructure services streamline processes, freeing up resources and allowing organizations to focus on more complex tasks that create value. Reduce or eliminate the manual work of cloud provisioning, configuration and management with anynines. With a cornerstone focus on cloud-native innovations like Cloud Foundry and Kubernetes, anynines is dedicated to elevating operational efficiency and the productivity of application developers. Our commitment is deeply rooted in addressing the intricate challenges of cloud database management and data services on a large scale. We deliver robust, scalable solutions catering to on-demand provisioning, on-premise, multi-cloud, and hybrid-cloud development, all while ensuring enterprise-level security and compliance. Our broad clientele ranges from dynamic startups to established enterprises. The heart of anynines' operation lies in the meticulous planning, building, and operating of modern application developer platforms, backed by years of experience in automating the delivery of enterprise-grade platforms utilizing a plethora of technologies such as Kubernetes and Cloud Foundry. At anynines, we have deep understanding and experience in automating databases and other data services, enabling us to offer comprehensive platforms that seamlessly integrate the entire application and data lifecycle. Our extensive expertise and services encompass platform engineering and operations, data service operations and cloud-based data management, and highly scalable and automated Platform-as-a-Service solutions aimed at fostering excellence and innovation within our clients' operations. With anynines, organizations are equipped to navigate the complexities of modern cloud environments with precision and agility.

Website
https://www.anynines.com
Industry
IT Services and IT Consulting
Company size
51-200 employees
Headquarters
Saarbrücken
Type
Self-Owned
Founded
2013
Specialties
Platform Operations, Data Security, Public Platform as a Service, BOSH, Kubernetes, Cloud-Native, Open Source, Database automation, and Data Services

Locations

Employees at anynines

Updates

  • Dockerfile + kubectl. CI + Buildpacks + GitOps. Helm. Kustomize. cf push. Five different ways to get source code running on Kubernetes, and they don't just differ in tooling. They differ in who owns the complexity. The lower-level approaches (Dockerfile, Helm, Kustomize) hand developers more control, but also more to learn: image builds, manifests, rollout behavior, templating logic. The higher-level approaches (GitOps, cf push with Korifi) push that complexity into the platform layer so developers can focus on shipping code, not debugging YAML. Neither is "wrong." The real question is: where does your organization want that complexity to live? We broke down all five approaches, effort, time to first deploy, required Kubernetes expertise, and best-fit use cases in this comparison. Worth a read if you're rethinking your team's deployment path: 🔗 https://anynin.es/4h8n91h #OpenSource #PlatformEngineering #Kubernetes #CloudFoundry

    • No alternative text description for this image
  • AI can spin up a prototype in minutes. It cannot spin up years of operational scars. In a new piece, anynines CEO Julian Fischer makes the case that AI won't kill standard software; it will expose which standards actually deserve to exist. The core argument: LLMs are great at reproducing patterns that the world has already paid to discover through documentation, incident response, failed migrations, and years of customer feedback. That's not a substitute for standard software. It's standard software's exhaust, repackaged. A few points worth sitting with: ➡️ "Vibe coding" your own internal tool doesn't remove the operational burden; it just means you own it without the support structure a real vendor would have built. ➡️ If AI erodes the economics that fund deep product knowledge, the well it's drinking from eventually runs dry. ➡️ Bad, lazy standard software should be scared of AI. Products built on genuine accumulated expertise should not be. Using anynines' own transition from Cloud Foundry to Kubernetes-native tooling (Klutch, a9s Hub) as the case study, the piece argues good vendors don't chase hype cycles; they carry hard-won knowledge forward while adapting to new paradigms. Worth a read for anyone in platform engineering, infra, or product, thinking about where AI actually adds value vs. where it just adds duplication. 🔗 https://anynin.es/4h6GBeT #PlatformEngineering #AI #Kubernetes

    • No alternative text description for this image
  • anynines reposted this

    You do not need to rebuild your stack to adopt Klutch. Teams running EKS and RDS today can install Klutch directly into existing application clusters using Helm or Kustomize, no greenfield deployment required. Julian Fischer, CEO of anynines, explains how the Klutch control plane installs alongside your current CI/CD pipeline, with pre-built Amazon Web Services (AWS) integrations shipping out of the box. "As long as it is within those best practices, we are basically able to slurp in, reflect on the existing Amazon topology and import this into a9s Hub." In this short clip with Swapnil Bhartiya at TFiR, Julian explains Klutch's installation model, AWS data service integrations, and RDS migration tooling in development. Check out the discussion on our YouTube page: https://lnkd.in/gpGaRf6Q #Kubernetes #EKS #anynines #PlatformEngineering #CloudNative #DataServices #AWS #DevOps

    • No alternative text description for this image
  • You followed AWS's guidance. Split workloads across accounts. One per team, one per environment, one per workload. The isolation boundaries are real — billing, IAM, service quotas, networking — and the benefits are genuine. Then six months passed. Now you have dozens of accounts, three different ways to provision a database depending on which team you ask, and a platform engineer spending their Fridays manually reconciling state across environments. The accounts didn't create the chaos. The absence of a coherent control plane did. Here's where the complexity actually lives — and why the usual answers fall short: ➡️ Managed services don't cross account boundaries on your behalf. RDS, Aurora, MSK — excellent primitives. Not a control plane. ➡️ Cluster-level operators don't understand organizational context. An operator reconciling state within one account has no visibility into Service Control Policies defined two levels up in your AWS Organizations hierarchy. It manages its slice of the world and nothing else. ➡️ VPC peering doesn't scale transitively. The image below shows what this looks like in practice. Three accounts need three peering connections. Five accounts need ten. Ten accounts need 45. At some point, someone introduces Transit Gateway to solve the transitivity problem — then starts counting the per-attachment and per-GB costs accumulating across the estate. ➡️ Distributing operators across application clusters isn't free either. Crossplane works well for backend integrations at the control-plane level. But deploy it as a client extension across hundreds of application clusters — each carrying CRD overhead for 15 database types — and you have a real operational constraint, plus major-version upgrades that now have to propagate everywhere simultaneously. What actually works: a control plane that sits above the cluster, understands your account topology, enforces policy at the point of provisioning, and gives developers a consistent interface regardless of which account their resources land in. The account topology should be an implementation detail — not something every team navigates independently. We wrote about where complexity accumulates in multi-account AWS, why the standard tooling doesn't resolve it, and what a federated control-plane architecture looks like in practice. Read the article: https://anynin.es/3Sm7wcA

    • No alternative text description for this image
  • View organization page for anynines

    1,586 followers

    Most teams add Kubernetes complexity they don't actually need. If your developers are writing Dockerfiles, managing manifests, and debugging Helm template output just to ship a routine API update, that's not Kubernetes being powerful. That's complexity that wasn't allocated properly. There are five practical ways to get from source code to a running application on Kubernetes: 1. Dockerfile + kubectl: maximum control, maximum cognitive load, rarely the right default at team scale 2. CI + Cloud Native Buildpacks + GitOps with Argo CD: strong auditability, high pipeline complexity 3. OCI image + Helm: reusable packaging, but templates get complicated fast 4. OCI image + Kustomize: plain YAML with environment overlays, still requires Kubernetes expertise 5. cf push with Korifi: application-level workflow, Kubernetes as execution environment, not developer interface The real question isn't which approach gives you the most control. It's where you want complexity to live: in the platform layer or in every developer's hands. Most web applications, APIs, workers, and background services don't need custom Kubernetes primitives for every release. They need a reliable delivery path. We compared all five in detail: developer effort, time to first deploy, required Kubernetes expertise, CI/CD complexity, flexibility, and best-fit workload type. Full breakdown: https://anynin.es/4eKvTYP Which approach does your team use, and is it the right fit for your workload types? #PlatformEngineering #Kubernetes

  • Still managing Cloud Foundry through the CLI or relying on ops for routine requests? There’s a better way. CF AppStage is a modern Cloud Foundry portal built on Backstage and using the Cloud Controller API v3. It gives platform operators and developers a unified view across all foundations, enhancing efficiency through self-service capabilities that let developers take action immediately, reducing delays and boosting productivity. No re-platforming required. Continue using your existing CF foundations, service brokers, and operating model to gain new capabilities without disruption. 🚀 Learn more and request a free demo with our product team: https://anynin.es/3R1ppgk #CloudFoundry #CloudNative #PlatformEngineering #CFAppStage

  • How can you let developers access self-service tools across your Kubernetes clusters while still keeping central governance in place? This is one of the toughest challenges in platform engineering, especially when you use the AWS Well-Architected Framework and have dedicated EKS clusters for each tenant. In a recent interview with TFiR, our CEO Julian Fischer explained how anynines is solving this with Klutch and shared what "enterprise-grade" really means in practice: ➡️ Per-tenant account isolation ➡️ Automatic data service provisioning scoped to the correct tenant account ➡️ Klutch as the central control plane for orchestration and governance This is the direction a9s Hub is moving toward, both for AWS environments and on-premises deployments. If you manage multi-tenant EKS and want to enable self-service without adding governance issues, this interview is worth watching. 🎥 Full interview: https://anynin.es/3QVSE43 #PlatformEngineering #Kubernetes #EKS

  • The Kubernetes landscape is shifting — and KubeCon proves it every year. 🎯 Our CEO, Julian Fischer, sat down with Swapnil Bhartiya from TFiR to share what we're seeing on the ground: platform engineers have gone from "what problem?" to "we need this now" in just two years. The urgency is real. The conversation is worth it. 👇

    View organization page for TFiR

    823 followers

    Most engineers have only managed one Kubernetes cluster — and that single blind spot is quietly creating a crisis at scale. Platform teams scaling to multiple clusters face a completely different class of operational challenge, yet most organizations don't recognize the problem until they're already in it. Julian Fischer, CEO of anynines, shares how awareness of this multi-cluster complexity has shifted dramatically among platform engineers over the past two years — and why urgency is now rising fast. "Platform engineers are coming around — you can see that they have now recognized the problem. Now they see the problem, and the urgency has increased.” In this short clip with Swapnil Bhartiya at TFiR, Julian Fischer explains how real-world KubeCon conversations are shaping Klutch and what platform teams need to understand about multi-cluster Kubernetes (Official) management. Check out the discussion on our YouTube page: https://lnkd.in/g9xas3Zx #Kubernetes #PlatformEngineering #MultiCluster #Klutch #anynines #CloudNative #KubeCon #CNCF #DevOps

  • Most issues with AWS multi-account setups aren’t really about infrastructure. They’re actually control-plane problems. The accounts are there, and the isolation boundaries do their job. But even when teams follow AWS’s advice, they often end up with 15 accounts, several ways to provision databases, and a platform engineer manually fixing things every Friday. The complexity didn’t increase; it just changed form. Some real challenges include VPC peering, which is hard to scale across accounts; SCPs that restrict but don’t tie into provisioning logic; operators who only manage their own account’s part of the system; and limited visibility that ends at the account boundary. The answer isn’t just adding more accounts or hiring better operators. Instead, it’s about having a layer that understands account topology, enforces policy during provisioning, and provides developers with a consistent interface regardless of what’s under the hood. We’ve written about what this layer should look like and where most architectures fall short before reaching that point: https://lnkd.in/dvVfqTxA #PlatformEngineering #AWS #Kubernetes #CloudArchitecture #DevOps

  • Kubernetes Self-Service Data Provisioning: What's Actually Missing. In a recent interview, anynines CEO Julian Fischer shares insights from collaborating with organizations on Klutch, the open-source foundation of a9s Hub for AWS. A key takeaway is that Crossplane alone is insufficient. Many teams have attempted to build a central control plane for data service orchestration using only Crossplane, but encountered scaling challenges when: • Managing numerous database instances • Supporting multiple tenants and Kubernetes clusters • Exposing an extensive service library for self-service across application clusters Klutch addresses these gaps directly. The Klutch Connector is lightweight and can be deployed across hundreds of Kubernetes clusters with minimal overhead. The Klutch developer team has also found that integration flexibility is essential. Native operators, Crossplane when suitable, and technologies such as KRO (Kubernetes Resource Orchestrator) are emerging as viable options. If you manage complex multi-tenant data services, explore how a9s Hub for AWS can simplify orchestration for your team. To learn more and see specific use cases, watch the interview: https://lnkd.in/gpb9sSDz

Similar pages

Browse jobs