-
Notifications
You must be signed in to change notification settings - Fork 153
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
Update RKE to latest #443
Comments
Will be good if provider updated to latest. |
More specifically, can we upgrade to the 1.5 branch of RKE, so that we can deploy Kubernetes 1.27+? 1.26 is EOL at the end of February 2024. https://kubernetes.io/releases/#release-v1-26 |
any updates on this? |
Sorry any update? |
This can be validated with https://github.com/rancher/terraform-provider-rke/releases/tag/v1.4.4-rc1 |
Ticket #443 - Test Results - ✅Verified using tfp-rke
Testing was conducted by utilizing the following terraform {
required_providers {
rke = {
source = "terraform.local/local/rke"
version = "1.4.4-rc1"
}
local = {
source = "hashicorp/local"
version = "2.4.0"
}
}
}
# Create a new RKE cluster using arguments
resource "rke_cluster" "rke_cluster" {
kubernetes_version = "v1.27.11-rancher1-1"
enable_cri_dockerd = true
nodes {
address = "<REDACTED>"
internal_address = "<REDACTED>"
user = "ubuntu"
role = ["controlplane", "worker", "etcd"]
ssh_key = file("<REDACTED>")
}
upgrade_strategy {
drain = true
max_unavailable_worker = "20%"
}
}
# Save kubeconfig file locally
resource "local_file" "kube_config" {
content = "${rke_cluster.rke_cluster.kube_config_yaml}"
filename = "<REDACTED_FILE_PATH>/kube_config.yaml"
} |
https://github.com/rancher/rke/releases
The text was updated successfully, but these errors were encountered: