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

[1.5] bump RKE to 1.5.13, update README #463

Merged
merged 1 commit into from
Oct 15, 2024

Conversation

jiaqiluo
Copy link
Member

@jiaqiluo jiaqiluo commented Oct 3, 2024

#459

This PR bumps RKE to 1.5.13, and updates README

Testing

Since there is no CI available to run tests on the PR, all tests are executed locally using make test.

The basic functionality has also been verified.

Below is the Terraform configuration file used to create a one-node RKE cluster with all roles. Note that Terraform is configured to use the binary built from the PR:

# main.tf

terraform {
  required_providers {
    rke = {
      source = "rancher/rke"
      version = "1.4.4"
    }
  }
}

# Configure the RKE provider
provider "rke" {
  debug = true
  log_file = "./logfile.txt"
}
resource rke_cluster "cluster" {
  enable_cri_dockerd = "true"
  kubernetes_version = "v1.25.16-rancher2-3"
  nodes {
    address = "x.xx.x.x"
    internal_address = "x.xx.x.x"
    user    = "root"
    role    = ["controlplane", "etcd", "worker"]
  }


resource "local_file" "kube_cluster_yaml" {
  filename = "${path.root}/kube_config_cluster.yml"
  content  = rke_cluster.cluster.kube_config_yaml
}

@jiaqiluo jiaqiluo changed the base branch from master to release/v1.5 October 3, 2024 18:29
@jiaqiluo jiaqiluo changed the title bump RKE to 1.5.13, update README [1.5] bump RKE to 1.5.13, update README Oct 3, 2024
@jiaqiluo jiaqiluo requested review from matttrach and a team October 3, 2024 18:30
@jiaqiluo jiaqiluo merged commit a2c17be into rancher:release/v1.5 Oct 15, 2024
@jiaqiluo jiaqiluo deleted the support-rke-1-5-13 branch October 15, 2024 18:20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants