Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update dependency k3s-io/k3s to v1.32.1+k3s1 #454

Merged
merged 1 commit into from
Feb 1, 2025

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 30, 2025

This PR contains the following updates:

Package Update Change
k3s-io/k3s patch v1.32.0+k3s1 -> v1.32.1+k3s1

Release Notes

k3s-io/k3s (k3s-io/k3s)

v1.32.1+k3s1: v1.32.1+k3s1

Compare Source

This release updates Kubernetes to v1.32.1, and fixes a number of issues.

For more details on what's new, see the Kubernetes release notes.

Changes since v1.32.0+k3s1:

Embedded Component Versions

Component Version
Kubernetes v1.32.1
Kine v0.13.5
SQLite 3.46.1
Etcd v3.5.16-k3s1
Containerd v1.7.23-k3s2
Runc v1.2.4-k3s1
Flannel v0.25.7
Metrics-server v0.7.2
Traefik v2.11.18
CoreDNS v1.12.0
Helm-controller v0.16.5
Local-path-provisioner v0.0.30

Helpful Links

As always, we welcome and appreciate feedback from our community of users. Please feel free to:

What's Changed

Full Changelog: k3s-io/k3s@v1.32.1-rc1+k3s1...v1.32.1+k3s1


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@autonomous-bancey
Copy link
Contributor

Plan Result (prod_twingate)

No changes. Your infrastructure matches the configuration.

@autonomous-bancey
Copy link
Contributor

Plan Result (test_vpn_gateway)

No changes. Your infrastructure matches the configuration.

@autonomous-bancey
Copy link
Contributor

Plan Result (generate_ansible_inventory)

No changes. Your infrastructure matches the configuration.

@autonomous-bancey
Copy link
Contributor

Plan Result (prod_vpn_gateway)

No changes. Your infrastructure matches the configuration.

@autonomous-bancey
Copy link
Contributor

Plan Result (test_gameserver)

No changes. Your infrastructure matches the configuration.

@autonomous-bancey
Copy link
Contributor

Plan Result (prod_gameserver)

No changes. Your infrastructure matches the configuration.

@autonomous-bancey
Copy link
Contributor

Plan Result (prod_dns)

No changes. Your infrastructure matches the configuration.

@autonomous-bancey
Copy link
Contributor

autonomous-bancey bot commented Jan 30, 2025

Plan Result (tiny_virtual_machines)

⚠️ Resource Deletion will happen

This plan contains resource delete operation. Please check the plan result very carefully!

Plan: 1 to add, 0 to change, 1 to destroy.
  • Replace
    • terraform_data.k8s_ansible["tiny"]
Change Result (Click me)
  # terraform_data.k8s_ansible["tiny"] must be replaced
-/+ resource "terraform_data" "k8s_ansible" {
      ~ id               = "19f722fe-b3c3-8289-b04e-17d14e5afe82" -> (known after apply)
      ~ triggers_replace = [
            # (2 unchanged elements hidden)
            {
                hela-tiny-master0 = {
                    primary_mac_address = "BC:24:11:22:1C:50"
                }
                hela-tiny-node0   = {
                    primary_mac_address = "BC:24:11:91:B7:DC"
                }
                loki-tiny-master1 = {
                    primary_mac_address = "BC:24:11:22:E4:A3"
                }
                loki-tiny-node1   = {
                    primary_mac_address = "BC:24:11:DE:E9:1B"
                }
                thor-tiny-master2 = {
                    primary_mac_address = "BC:24:11:8D:F5:D1"
                }
                thor-tiny-node2   = {
                    primary_mac_address = "BC:24:11:90:65:2A"
                }
            },
          ~ <<-EOT
                - name: Prepare and install K3S
                  vars:
                    passed_hosts: wanda_k3s_cluster
              -     k3s_version: "v1.32.0+k3s1"
              +     k3s_version: "v1.32.1+k3s1"
                    run_prep: true
                    run_install: false
                  hosts: "{{ passed_hosts }}"
                  become: true
                  become_user: root
                  become_method: sudo
                  pre_tasks:
                    - name: Set master nodes to be a control node
                      ansible.builtin.set_fact:
                        k3s_control_node: true
                      when: "'master' in inventory_hostname"
                    - name: Add node-ip to k3s_server conf
                      ansible.builtin.set_fact:
                        k3s_server: "{{ k3s_server | combine({ 'node-ip': ansible_host}) }}"
                  tasks:
                    - name: K3S Prepare
                      when: run_prep
                      ansible.builtin.include_role:
                        name: prep
                    - name: Install K3S
                      when: run_install
                      ansible.builtin.include_role:
                        name: xanmanning.k3s
                        public: true
                      vars:
                        k3s_release_version: "{{ k3s_version }}"
                        k3s_install_hard_links: true
                        k3s_become: true
                        k3s_server_manifests_urls:
                          - url: https://raw.githubusercontent.com/projectcalico/calico/v3.29.1/manifests/tigera-operator.yaml
                            filename: tigera-operator.yaml
                          - url: https://raw.githubusercontent.com/metallb/metallb/v0.14.9/config/manifests/metallb-native.yaml
                            filename: metallb-native.yaml
                        k3s_server_manifests_templates:
                          - calico-install.yaml.j2
                          - metallb-config.yaml.j2
                          - coredns-custom.yaml
                    - name: Resource Readiness Check
                      run_once: true
                      kubernetes.core.k8s_info:
                        kubeconfig: /etc/rancher/k3s/k3s.yaml
                        kind: "{{ item.kind }}"
                        name: "{{ item.name }}"
                        namespace: "{{ item.namespace | default('') }}"
                        wait: true
                        wait_sleep: 10
                        wait_timeout: 360
                      loop:
                        - kind: Deployment
                          name: tigera-operator
                          namespace: tigera-operator
                        - kind: Installation
                          name: default
                        - kind: IPAddressPool
                          name: default
                          namespace: metallb-system
                        - kind: L2Advertisement
                          name: default
                          namespace: metallb-system
                      register: resource_check
                      when:
                        - k3s_server_manifests_templates | length > 0
                            or k3s_server_manifests_urls | length > 0
                        - k3s_control_node is defined
                        - k3s_control_node
                    - name: Remove deployed manifest templates
                      ansible.builtin.file:
                        path: "{{ k3s_server_manifests_dir }}/{{ item | basename |
                          regex_replace('\\.j2$', '') }}"
                        state: absent
                      loop: "{{ k3s_server_manifests_templates | default([]) }}"
                    - name: Remove deployed manifest urls
                      ansible.builtin.file:
                        path: "{{ k3s_server_manifests_dir }}/{{ item.filename }}"
                        state: absent
                      loop: "{{ k3s_server_manifests_urls | default([]) }}"
            EOT,
        ]
    }

Plan: 1 to add, 0 to change, 1 to destroy.

@renovate renovate bot force-pushed the renovate/k3s-io-k3s-1.x branch 2 times, most recently from a50fa41 to 8168e80 Compare February 1, 2025 11:39
@renovate renovate bot force-pushed the renovate/k3s-io-k3s-1.x branch from 8168e80 to 414627b Compare February 1, 2025 11:48
@bancey bancey merged commit b017b20 into main Feb 1, 2025
14 checks passed
@renovate renovate bot deleted the renovate/k3s-io-k3s-1.x branch February 1, 2025 11:57
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant