crossplane-on-eks
crossplane-on-eks copied to clipboard
[FEATURE] Upbound Provider EKS composition
Is your feature request related to a problem? Please describe
There is no EKS composition for the upbound AWS provider, only for the contrib one
Describe the solution you'd like
Create an EKS composition for the upbound provider
Describe alternatives you've considered
Each of us can create our own composition, but it would be beneficial for us all to have an "official" one that adheres to AWS best practices and will be actively maintained
@tomikonio please check https://github.com/upbound/configuration-aws-eks/ , which is used as a part of a larger https://github.com/upbound/platform-ref-aws/
@ytsarev Thanks.
Sadly it is not a ready solution as of now - there are some lacking resources in the Xnetwork configuration - i.e. private subnets using a route table that is used for the public ones (0.0.0.0/0 -> igw
), no natgw.
Totally, that's why we name it as basic Composition in https://github.com/upbound/configuration-aws-network and leave room for more complex XNetwork implementation depending on specific infrastructure needs.
@ytsarev few questions:
- is there any upbound hub for shared compositions?
- about terminology, why all the component usually set name with X at the beginning? any guideline for name conversion? what X stand for?
- Setting up EKS composition, would you recommend to add inside the composition also the create of the relevant roles? of roles better to be define in different composition? (because sometime a company allow admin persona to create the cluster and vpn but other person to configure the permissions. Do you have 2 cent on that?
- Is there any composition linter tool?
Hey @shay-berman , great questions :)
- Yes, we publish Crossplane Configurations to https://marketplace.upbound.io/ and it would be great to see crossplane-on-eks Configurations there btw :)
- X stands for Composite Resource, meaning that it is cluster-scoped in contrast to namespace-scoped Claim that is usually named without X, like XDatabase(XR) vs Database(Claim), for end-user consumption. It is a soft naming convention and not enforced by the code.
- It depends on your organization's requirements, if you need to create a separate abstraction for role management, I would definitely create a separate XR/Composition for it.
-
crossplane validate
is coming in the next release https://github.com/crossplane/crossplane/issues/5162