Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nuuday/terraform-aws-eks-addons
Provides Terraform modules for installing and configuring commonly used K8s components into EKS clusters.
https://github.com/nuuday/terraform-aws-eks-addons
eks terraform
Last synced: 22 days ago
JSON representation
Provides Terraform modules for installing and configuring commonly used K8s components into EKS clusters.
- Host: GitHub
- URL: https://github.com/nuuday/terraform-aws-eks-addons
- Owner: nuuday
- License: mit
- Created: 2020-05-28T12:30:08.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-04-11T08:16:36.000Z (almost 4 years ago)
- Last Synced: 2023-03-03T19:33:52.879Z (almost 2 years ago)
- Topics: eks, terraform
- Language: HCL
- Homepage:
- Size: 292 KB
- Stars: 3
- Watchers: 5
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# terraform-aws-eks-addons
This repository contains Terraform modules for adding add-ons to EKS clusters.
See [modules/](modules/) for the currently supported K8s modules.
The following modules have been moved to their own repository and removed from this:
* calico => https://github.com/nuuday/terraform-aws-eks-addon-calico
* cluster-autoscaler => https://github.com/nuuday/terraform-aws-eks-addon-cluster-autoscaler
* metrics-server => https://github.com/nuuday/terraform-k8s-addon-metrics-server
* prometheus => https://github.com/nuuday/terraform-aws-eks-addon-prometheus
* nginx-ingress-controller => https://github.com/nuuday/terraform-k8s-addon-nginx-ingress-controller
* prometheus-operator => https://github.com/nuuday/terraform-aws-eks-prometheus-operator## Usage
All add-ons are **disabled** by default.
```terraform
module "addons" {
# add '?ref=v0.1.0' to pin versions
source = "github.com/nuuday/terraform-aws-eks-addons"cluster_autoscaler = {
enable = true
# ...
}
}
```You may want to reference individual add-ons directly.
This is done by sourcing the sub-modules inside [modules/](modules/).**NOTE** When referencing an add-on through its sub-module, the add-on is **enabled** by default.
```terraform
module "addon-cluster-autoscaler" {
# add '?ref=v0.1.0' to pin versions
source = "github.com/nuuday/terraform-aws-eks-addons//modules/cluster-autoscaler"
}
```## Releasing
This module adheres to [semantic versioning](https://semver.org/), and versions are made visible through Git tags.
At any point in time, the maintainers of this repository will decide to create a new release.
It is important to know which contributions have been made to `master` since the last release,
in order to decide whether the version bump will be a *patch*, *minor*, or *major*.Steps for creating a new **minor** release are as follows
```sh
# Typically, releases are made on the master branch.
# This will checkout master and pull latest changes if any.
git checkout master && git pull# Figure out what the next version number will be.
# NOTE: This is for a *minor* version. Change to patch or major if it applies.
make scope=minor show-next-version # outputs e.g. v0.2.0# Update CHANGELOG.md based on the unreleased changes.
# NOTE: Remember to change the version to the version from previous step.
make changelog && git add CHANGELOG.md && git commit -m "chore: update changelog for vx.y.z"# Tag HEAD with the version tag, and push master and newly created tag.
make scope=minor release
```## Contributing
See [CONTRIBUTING](.github/CONTRIBUTING) for contribution guidelines. *(pending)*
## Changelog
See [CHANGELOG.md](CHANGELOG.md) for a complete changelog.