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

Update dependency kubernetes-sigs/cluster-api to v1.7.4 #732

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
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 doc/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Parameters controlling the Cluster-API management server (capi management server
| `kind_flavor` | | SCS | `SCS-2V-4` | Flavor to be used for the k8s capi mgmt server |
| `image` | | SCS | `Ubuntu 22.04` | Image for the capi mgmt server. Use `Ubuntu 22.04` or `Debian 12`. Check also the `ssh_username` parameter |
| `ssh_username` | | SCS | `ubuntu` | Name of the default user for the `image` |
| `clusterapi_version` | | SCS | `1.6.3` <!-- renovate: datasource=github-releases depName=kubernetes-sigs/cluster-api --> | Version of the cluster-API incl. `clusterctl` |
| `clusterapi_version` | | SCS | `1.7.4` <!-- renovate: datasource=github-releases depName=kubernetes-sigs/cluster-api --> | Version of the cluster-API incl. `clusterctl` |
| `capi_openstack_version` | | SCS | `0.9.0` <!-- renovate: datasource=github-releases depName=kubernetes-sigs/cluster-api-provider-openstack --> | Version of the cluster-api-provider-openstack (needs to fit the CAPI version) |
| `cilium_binaries` | | SCS | `v0.15.23;v0.13.0` | Versions of the cilium and hubble CLI in the vA.B.C;vX.Y.Z format |
| `restrict_mgmt_server` | | SCS | `["0.0.0.0/0"]` | Allows restricting access to the management server by the given list of CIDRs. Empty value (default) means public. |
Expand Down
2 changes: 1 addition & 1 deletion terraform/environments/environment-default.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ external_id = "<external_network_ID>" # defaults to "" using auto-de
dns_nameservers = [ "DNS_IP1", "DNS_IP2" ] # defaults to [ "5.1.66.255", "185.150.99.255" ] (FF MUC)
kind_flavor = "<flavor>" # defaults to SCS-2V-4 (larger does not hurt)
ssh_username = "<username_for_ssh>" # defaults to "ubuntu"
clusterapi_version = "<1.x.y>" # defaults to `1.6.3` <!-- renovate: datasource=github-releases depName=kubernetes-sigs/cluster-api -->
clusterapi_version = "<1.x.y>" # defaults to `1.7.4` <!-- renovate: datasource=github-releases depName=kubernetes-sigs/cluster-api -->
capi_openstack_version = "<0.x.y>" # defaults to `0.9.0` <!-- renovate: datasource=github-releases depName=kubernetes-sigs/cluster-api-provider-openstack -->
image = "<glance_image>" # defaults to "Ubuntu 22.04"
cilium_binaries = "<v0.aa.bb;v0.xx.yy>" # defaults to "v0.15.23;v0.13.0"
Expand Down
2 changes: 1 addition & 1 deletion terraform/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ variable "calico_version" {
variable "clusterapi_version" {
description = "desired version of cluster-api"
type = string
default = "1.6.3" # renovate: datasource=github-releases depName=kubernetes-sigs/cluster-api
default = "1.7.4" # renovate: datasource=github-releases depName=kubernetes-sigs/cluster-api
}

variable "capi_openstack_version" {
Expand Down