https://github.com/upbound/configuration-aws-eks
AWS EKS Configuration
https://github.com/upbound/configuration-aws-eks
Last synced: 10 months ago
JSON representation
AWS EKS Configuration
- Host: GitHub
- URL: https://github.com/upbound/configuration-aws-eks
- Owner: upbound
- License: apache-2.0
- Created: 2023-10-21T09:50:41.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-08-19T20:12:58.000Z (11 months ago)
- Last Synced: 2025-08-19T22:17:03.217Z (11 months ago)
- Language: AMPL
- Homepage:
- Size: 212 KB
- Stars: 13
- Watchers: 16
- Forks: 8
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# AWS EKS Configuration
This repository contains an Upbound project, tailored for users establishing their initial control plane with [Upbound](https://cloud.upbound.io). This configuration deploys fully managed [Amazon Elastic Kubernetes Service (EKS)](https://aws.amazon.com/eks/) instances.
## Overview
The core components of a custom API in [Upbound Project](https://docs.upbound.io/learn/control-plane-project/) include:
- **CompositeResourceDefinition (XRD):** Defines the API's structure.
- **Composition(s):** Configures the Functions Pipeline
- **Embedded Function(s):** Encapsulates the Composition logic and implementation within a self-contained, reusable unit
In this specific configuration, the API contains:
- **an [AWS EKS](/apis/definition.yaml) custom resource type.**
- **Composition:** Configured in [/apis/composition.yaml](/apis/composition.yaml)
- **Embedded Function:** The Composition logic is encapsulated within [embedded function](/functions/xeks/main.k)
## Deployment
- Execute `up project run`
- Alternatively, install the Configuration from the [Upbound Marketplace](https://marketplace.upbound.io/configurations/upbound/configuration-aws-eks)
- Check [examples](/examples/) for example XR(Composite Resource)
## Testing
The configuration can be tested using:
- `up composition render --xrd=apis/definition.yaml apis/composition.yaml examples/eks-xr.yaml` to render the composition
- `up test run tests/*` to run composition tests in `tests/test-xeks/`
- `up test run tests/* --e2e` to run end-to-end tests in `tests/e2etest-xeks/`
## Next steps
This repository serves as a foundational step. To enhance your configuration, consider:
1. create new API definitions in this same repo
2. editing the existing API definition to your needs
To learn more about how to build APIs for your managed control planes in Upbound, read the guide on [Upbound's docs](https://docs.upbound.io/).