TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Crossplane vs. Terraform

20 pointsby bassamtabbaraabout 4 years ago

3 comments

obrien1984aeabout 4 years ago
&quot;Where Terraform can fall apart is when more engineers need to collaborate to manage their organisation’s infrastructure.&quot;<p>I have seen this _so often_, with large teams of Engineers resorting to one of two methods to deal with the terraform sprawl:<p>1. Breakup the terraform into ever smaller modules, which reduces blast radius of the drift, but at the cost of visibility. 2. &quot;-target&quot; applies. Which amounts to basically the same thing as #1.<p>Terraform offers small teams a common language for controlling their infrastructure, and an efficient method of comparing desired state to actual state. Crossplane appears to have a clear yaml syntax (easy enough to commit to source control) and runs a control plane for enforcement (easier than setting up Atlantis, I imagine).
评论 #26335063 未加载
hasheddanabout 4 years ago
&gt; It also raises the level of configuration abstraction for application developers without raising the level of access control abstraction.<p>This may be the most interesting point in this post. Terraform (and cloud provider APIs for that matter) are not built for developer self-service, not because they are complicated, but because the developer must be given credentials to perform the granular operations, even if they are interfacing with a higher-level interface. Crossplane flips this model by instead saying that the developer is only given permission to perform operations at the interface they are interacting with and the operator (in this case a Kubernetes controller) that satisfies the high-level request by performing granular operations is given permissions for those operations. This greatly simplifies the model for both the platform builder and the platform consumer. The builder is responsible for defining the interface and exposing it to consumers. The consumer knows that if they have RBAC on an abstraction, the underlying operations can be performed on their behalf.
prasekabout 4 years ago
Many folks are using GitOps with Flux&#x2F;ArgoCD to deploy their k8s apps but they can&#x27;t use Terraform in the same workflow. How does Crossplane help get to a single GitOps workflow so app teams can self-service the infra from within the app cluster alongside their k8s app Deployments?
评论 #26335042 未加载