Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/rancher-turtles/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ keywords:
annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/display-name: Rancher Turtles - the Cluster API Extension
catalog.cattle.io/kube-version: '>= 1.31.4-0 < 1.32.0-0'
catalog.cattle.io/kube-version: '>= 1.31.4-0 < 1.34.0-0'
catalog.cattle.io/namespace: rancher-turtles-system
catalog.cattle.io/os: linux
catalog.cattle.io/permits-os: linux
Expand Down
2 changes: 1 addition & 1 deletion examples/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/rancher/turtles/examples

go 1.24.4
go 1.24.9

require (
github.com/agnivade/levenshtein v1.2.1
Expand Down
2 changes: 1 addition & 1 deletion exp/clusterclass/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/rancher/turtles/exp/clusterclass

go 1.24.4
go 1.24.9

require (
github.com/go-logr/logr v1.4.3
Expand Down
2 changes: 1 addition & 1 deletion exp/day2/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/rancher/turtles/exp/day2

go 1.24.4
go 1.24.9

replace github.com/rancher/turtles => ../..

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/rancher/turtles

go 1.24.4
go 1.24.9

require (
github.com/blang/semver/v4 v4.0.0
Expand Down
17 changes: 9 additions & 8 deletions test/e2e/config/operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,31 +38,33 @@ variables:
SECRET_KEYS: "NGROK_AUTHTOKEN,NGROK_API_KEY,RANCHER_HOSTNAME,RANCHER_PASSWORD,CAPG_ENCODED_CREDS,AWS_ACCESS_KEY_ID,AWS_SECRET_ACCESS_KEY,AZURE_SUBSCRIPTION_ID,AZURE_CLIENT_ID,AZURE_CLIENT_SECRET,AZURE_TENANT_ID,GCP_PROJECT,GCP_NETWORK_NAME,GCP_IMAGE_ID,VSPHERE_TLS_THUMBPRINT,VSPHERE_SERVER,VSPHERE_DATACENTER,VSPHERE_DATASTORE,VSPHERE_FOLDER,VSPHERE_TEMPLATE,VSPHERE_NETWORK,VSPHERE_RESOURCE_POOL,VSPHERE_USERNAME,VSPHERE_PASSWORD,VSPHERE_KUBE_VIP_IP_KUBEADM,VSPHERE_KUBE_VIP_IP_RKE2,DOCKER_REGISTRY_TOKEN,DOCKER_REGISTRY_USERNAME,DOCKER_REGISTRY_CONFIG"

# Kubernetes Configuration
KUBERNETES_VERSION: "v1.31.4"
KUBERNETES_MANAGEMENT_VERSION: "v1.31.4"
RKE2_VERSION: "v1.31.7+rke2r1"
KUBERNETES_VERSION: "v1.33.5"
KUBERNETES_MANAGEMENT_VERSION: "v1.33.4"
RKE2_VERSION: "v1.33.5+rke2r1"
RKE2_CNI: "none"

# Azure Configuration
#
# Azure Kubeadm tests need specific k8s version.
# This is due to the limited availability of published AMIs.
# For example: https://portal.azure.com/#@suseazuredev.onmicrosoft.com/resource/providers/Microsoft.Compute/locations/FranceCentral/CommunityGalleries/ClusterAPI-f72ceb4f-5159-4c26-a0fe-2ea738f0d019/Images/capi-ubun2-2204/overview
AZURE_KUBERNETES_VERSION: "v1.31.1"
# For example: https://portal.azure.com/#view/Microsoft_Azure_ComputeHub/ComputeHubMenuBlade/~/communityImagesBrowse
# Filter `capi-ubun2-2404` images. Beware: not all versions are published on all regions.
AZURE_KUBERNETES_VERSION: "v1.33.5"

# AWS Configuration
#
# AWS Kubeadm tests need specific k8s version.
# This is due to the limited availability of published AMIs.
# For a complete list, run: clusterawsadm ami list
AWS_KUBERNETES_VERSION: "v1.31.0"
# Alternatively, seach for `capa-ami` in https://eu-west-2.console.aws.amazon.com/ec2/home?region=eu-west-2#AMICatalog:
AWS_KUBERNETES_VERSION: "v1.32.6"
AWS_REGION: "eu-west-2"
KUBERNETES_MANAGEMENT_AWS_REGION: "eu-west-2"
AWS_CONTROL_PLANE_MACHINE_TYPE: "t3.large"
AWS_NODE_MACHINE_TYPE: "t3.large"
AWS_RKE2_CONTROL_PLANE_MACHINE_TYPE: "t3.xlarge"
AWS_RKE2_NODE_MACHINE_TYPE: "t3.xlarge"
AWS_AMI_ID: "ami-012e88f0aa221423a" # Public upstream AMI
AWS_AMI_ID: "ami-0e0464240725c0f6b" # Public upstream AMI

# GCP Configuration
GCP_MACHINE_TYPE: "n1-standard-2"
Expand Down Expand Up @@ -97,7 +99,6 @@ variables:
CERT_MANAGER_REPO_NAME: "jetstack"
CERT_MANAGER_URL: "https://charts.jetstack.io"
CERT_MANAGER_PATH: "jetstack/cert-manager"
CPI_IMAGE_K8S_VERSION: "v1.31.0"

# Ingress Configuration (Ngrok)
NGROK_REPO_NAME: "ngrok"
Expand Down
2 changes: 1 addition & 1 deletion test/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/rancher/turtles/test

go 1.24.4
go 1.24.9

replace github.com/rancher/turtles => ../

Expand Down
2 changes: 1 addition & 1 deletion tilt/project/Tiltfile
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ def get_port_forwards(debug):

tilt_helper_dockerfile_header = """
# Tilt image
FROM golang:1.24.4 as tilt-helper
FROM golang:1.24.9 as tilt-helper
# Support live reloading with Tilt
RUN go install github.com/go-delve/delve/cmd/dlv@latest
RUN wget --output-document /restart.sh --quiet https://raw.githubusercontent.com/tilt-dev/rerun-process-wrapper/master/restart.sh && \
Expand Down
Loading