Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/detiber/capi-templates-koord
https://github.com/detiber/capi-templates-koord
Last synced: 7 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/detiber/capi-templates-koord
- Owner: detiber
- License: apache-2.0
- Created: 2022-03-15T20:51:16.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-03-22T22:02:39.000Z (almost 3 years ago)
- Last Synced: 2024-11-07T20:55:02.274Z (about 2 months ago)
- Language: Makefile
- Size: 200 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# capi-templates-koord
## Differences between these templates and the default Cluster API templates
- Leverages ClusterResourceSet to deploy Calico for CNI
- Leverages ClusterResourceSet to deploy kube-vip for LoadBalancer services using BGP
- Uses kube-vip for Control Plane EIP management
- Configures cloud-provider-equinix-metal appropriately for kube-vip control plane management and load balancer services## enabling CRS for CAPI
When deploying (or updating the management cluster):
```sh
export EXP_CLUSTER_RESOURCE_SET=trueclusterctl init --infrastructure packet
```The Cluster API deployment can be updated manually post install if needed as well: https://cluster-api.sigs.k8s.io/tasks/experimental-features/experimental-features.html#enabling-experimental-features-on-existing-management-clusters
## Generating the templates
```sh
make generate
```
## Using the templatesFor Cluster API v0.3.x:
```sh
export PROJECT_ID=
export SSH_KEY=
CONTROLPLANE_NODE_TYPE=c3.small.x86 WORKER_NODE_TYPE=c3.small.x86 FACILITY=dc13 KUBERNETES_VERSION=1.22.4 clusterctl generate cluster --from ./cluster-template-v1alpha3.yaml capi-test
```For Cluster API v1+:
```sh
export PROJECT_ID=
export SSH_KEY=
CONTROLPLANE_NODE_TYPE=c3.small.x86 WORKER_NODE_TYPE=c3.small.x86 FACILITY=dc13 KUBERNETES_VERSION=1.22.4 clusterctl generate cluster --from ./cluster-template-v1beta1.yaml capi-test
```## Updating various components properly
TODO