Skip to content
This repository was archived by the owner on Oct 5, 2023. It is now read-only.

Commit 8fff0e5

Browse files
committed
v2 changes
1 parent 03c54fc commit 8fff0e5

File tree

2 files changed

+17
-7
lines changed

2 files changed

+17
-7
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,14 @@
11
# Change Log
2+
## [v2.0.0](https://github.com/vultr/terraform-vultr-condor/releases/tag/v2.0.0) (2021-09-03)
3+
### Breaking Changes
4+
* Condor is now based on Mirantis K0s rather than Kubeadm, as such v2 is completely incompatible with previous releases.
5+
### Features
6+
* HA Control Plane
7+
* Isolated control plane(Control Plane nodes are not part of the cluster)
8+
* Control Plane and Worker Node firewalls.
9+
* Declarative cluster and component(Vultr CCM, CSI, Calico, etc.) upgrades
10+
* K0s manifest deployer support
11+
212
## [v1.3.0](https://github.com/3letteragency/terraform-vultr-k0s/releases/tag/v1.3.0) (2021-08-25)
313
### Breaking Changes
414
* Remove `calico_wireguard` variable - nodes were not properly configured, will need to revisit

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Vultr k0s
1+
# Condor
22

3-
[Terraform Module Registry Docs](https://registry.terraform.io/modules/3letteragency/k0s/vultr/latest)
3+
[Terraform Module Registry Docs](https://registry.terraform.io/modules/vultr/condor/vultr/latest)
44

55
## Table of Contents
66
* [Requirements](#requirements)
@@ -29,15 +29,15 @@
2929
* Installs the [Vultr CSI](https://github.com/vultr/vultr-csi)
3030

3131
## Quick Start
32-
Usage and input details can be found in the [Terraform Module Registry Docs](https://registry.terraform.io/modules/3letteragency/k0s/vultr/latest), or use the quickstart below.
32+
Usage and input details can be found in the [Terraform Module Registry Docs](https://registry.terraform.io/modules/vultr/condor/vultr/latest), or use the quickstart below.
3333

34-
1) Create a `main.tf` file with the [Required Inputs](https://registry.terraform.io/modules/3letteragency/k0s/vultr/latest?tab=inputs#required-inputs):
34+
1) Create a `main.tf` file with the [Required Inputs](https://registry.terraform.io/modules/vultr/condor/vultr/latest?tab=inputs#required-inputs):
3535
``` hcl
3636
# main.tf
3737
38-
module "k0s" {
39-
source = "3letteragency/k0s/vultr"
40-
version = "1.3.0"
38+
module "condor" {
39+
source = "vultr/condor/vultr"
40+
version = "2.0.0"
4141
provisioner_public_key = chomp(file("~/.ssh/id_rsa.pub"))
4242
cluster_vultr_api_key = var.cluster_vultr_api_key
4343
control_plane_firewall_rules = [

0 commit comments

Comments
 (0)