Skip to content

Commit 30d3cf8

Browse files
chore(main): release 0.2.12 (#54)
🤖 I have created a release *beep* *boop* --- ## [0.2.12](v0.2.11...v0.2.12) (2026-01-03) ### Features * adds submodule for butane keepalived install, removes reboot requirement for keepalived ([#53](#53)) ([8fb5b0a](8fb5b0a)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). Co-authored-by: mford-bot[bot] <220537427+mford-bot[bot]@users.noreply.github.com>
1 parent 8fb5b0a commit 30d3cf8

11 files changed

Lines changed: 27 additions & 20 deletions

File tree

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.2.11"
2+
".": "0.2.12"
33
}

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [0.2.12](https://github.com/marshallford/terraform-ansible-k3s/compare/v0.2.11...v0.2.12) (2026-01-03)
4+
5+
6+
### Features
7+
8+
* adds submodule for butane keepalived install, removes reboot requirement for keepalived ([#53](https://github.com/marshallford/terraform-ansible-k3s/issues/53)) ([8fb5b0a](https://github.com/marshallford/terraform-ansible-k3s/commit/8fb5b0a9564fdf66bba52f5c086f2d35f89cea6a))
9+
310
## [0.2.11](https://github.com/marshallford/terraform-ansible-k3s/compare/v0.2.10...v0.2.11) (2026-01-02)
411

512

examples/cilium-cni/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module "k3s" {
22
source = "marshallford/k3s/ansible"
3-
version = "0.2.11" # x-release-please-version
3+
version = "0.2.12" # x-release-please-version
44

55
api_server = {
66
virtual_ip = "192.168.1.99"

examples/cis-hardening/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
module "k3s_cis_hardening" {
22
source = "marshallford/k3s/ansible//modules/cis-hardening"
3-
version = "0.2.11" # x-release-please-version
3+
version = "0.2.12" # x-release-please-version
44
}
55

66
module "k3s" {
77
source = "marshallford/k3s/ansible"
8-
version = "0.2.11" # x-release-please-version
8+
version = "0.2.12" # x-release-please-version
99

1010
api_server = {
1111
virtual_ip = "192.168.1.99"

examples/graceful-node-shutdown/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module "k3s" {
22
source = "marshallford/k3s/ansible"
3-
version = "0.2.11" # x-release-please-version
3+
version = "0.2.12" # x-release-please-version
44

55
api_server = {
66
virtual_ip = "192.168.1.99"

examples/kubeconfig/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ locals {
44

55
module "k3s_kubeconfig" {
66
source = "marshallford/k3s/ansible//modules/kubeconfig"
7-
version = "0.2.11" # x-release-please-version
7+
version = "0.2.12" # x-release-please-version
88

99
server_machine = {
1010
ssh = {

examples/proxmox/cluster.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ resource "time_rotating" "system_upgrade" {
1010

1111
module "k3s_cis_hardening" {
1212
source = "marshallford/k3s/ansible//modules/cis-hardening"
13-
version = "0.2.11" # x-release-please-version
13+
version = "0.2.12" # x-release-please-version
1414
}
1515

1616
module "k3s_authentication_config" {
1717
source = "marshallford/k3s/ansible//modules/authentication-config"
18-
version = "0.2.11" # x-release-please-version
18+
version = "0.2.12" # x-release-please-version
1919
anonymous = {
2020
enabled = true
2121
conditions = [
@@ -41,7 +41,7 @@ locals {
4141

4242
module "k3s" {
4343
source = "marshallford/k3s/ansible"
44-
version = "0.2.11" # x-release-please-version
44+
version = "0.2.12" # x-release-please-version
4545

4646
ansible_navigator_binary = ".venv/bin/ansible-navigator"
4747
ssh_private_keys = [

examples/proxmox/machines.tf

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -30,51 +30,51 @@ locals {
3030
module "server_butane_hostname" {
3131
for_each = local.server_machines
3232
source = "marshallford/k3s/ansible//modules/butane-hostname"
33-
version = "0.2.11" # x-release-please-version
33+
version = "0.2.12" # x-release-please-version
3434

3535
hostname = each.value.full_name
3636
}
3737

3838
module "agent_butane_hostname" {
3939
for_each = local.agent_machines
4040
source = "marshallford/k3s/ansible//modules/butane-hostname"
41-
version = "0.2.11" # x-release-please-version
41+
version = "0.2.12" # x-release-please-version
4242

4343
hostname = each.value.full_name
4444
}
4545

4646
module "butane_python" {
4747
source = "marshallford/k3s/ansible//modules/butane-python"
48-
version = "0.2.11" # x-release-please-version
48+
version = "0.2.12" # x-release-please-version
4949
}
5050

5151
module "butane_keepalived" {
5252
source = "marshallford/k3s/ansible//modules/butane-keepalived"
53-
version = "0.2.11" # x-release-please-version
53+
version = "0.2.12" # x-release-please-version
5454
}
5555

5656
module "butane_qemu_ga" {
5757
source = "marshallford/k3s/ansible//modules/butane-qemu-ga"
58-
version = "0.2.11" # x-release-please-version
58+
version = "0.2.12" # x-release-please-version
5959
}
6060

6161
module "butane_ssh_authorized_key" {
6262
source = "marshallford/k3s/ansible//modules/butane-ssh-authorized-key"
63-
version = "0.2.11" # x-release-please-version
63+
version = "0.2.12" # x-release-please-version
6464

6565
ssh_authorized_key = tls_private_key.machine.public_key_openssh
6666
}
6767

6868
module "butane_dhcp" {
6969
source = "marshallford/k3s/ansible//modules/butane-dhcp"
70-
version = "0.2.11" # x-release-please-version
70+
version = "0.2.12" # x-release-please-version
7171

7272
interface = "ens18"
7373
}
7474

7575
module "butane_zincati_disable" {
7676
source = "marshallford/k3s/ansible//modules/butane-zincati-disable"
77-
version = "0.2.11" # x-release-please-version
77+
version = "0.2.12" # x-release-please-version
7878
}
7979

8080
data "ct_config" "server" {

examples/simple/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ locals {
1313

1414
module "k3s" {
1515
source = "marshallford/k3s/ansible"
16-
version = "0.2.11" # x-release-please-version
16+
version = "0.2.12" # x-release-please-version
1717

1818
ssh_private_keys = [
1919
{

modules/kubeconfig/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ variable "execution_environment_enabled" {
1414

1515
variable "execution_environment_image" {
1616
type = string
17-
default = "ghcr.io/marshallford/terraform-ansible-k3s:v0.2.11" # x-release-please-version
17+
default = "ghcr.io/marshallford/terraform-ansible-k3s:v0.2.12" # x-release-please-version
1818
nullable = true
1919
description = "Name of the execution environment container image."
2020
}

0 commit comments

Comments
 (0)