Skip to content

Commit

Permalink
chore: Upgrade deps & bump Kubernetes version (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
tibordp authored Mar 14, 2024
1 parent 5013e94 commit f872d99
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@ and check the access by viewing the created cluster nodes:
```cmd
$ kubectl get nodes --kubeconfig=kubeconfig.conf
NAME STATUS ROLES AGE VERSION
k8s-control-plane-0 Ready control-plane 31m v1.28.3
k8s-worker-0 Ready <none> 31m v1.28.3
k8s-worker-1 Ready <none> 31m v1.28.3
k8s-control-plane-0 Ready control-plane 31m v1.29.2
k8s-worker-0 Ready <none> 31m v1.29.2
k8s-worker-1 Ready <none> 31m v1.29.2
```

## Supported base images
Expand Down
2 changes: 1 addition & 1 deletion modules/worker-node/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ variable "labels" {
variable "kubernetes_version" {
description = "Kubernetes version"
type = string
default = "1.28.3"
default = "1.29.2"

validation {
condition = can(regex("^1\\.([0-9]+)\\.([0-9]+)$", var.kubernetes_version))
Expand Down
2 changes: 1 addition & 1 deletion templates/hetzner_ccm.yaml.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ spec:
%{ endif ~}
- name: HCLOUD_INSTANCES_ADDRESS_FAMILY
value: dualstack
image: hetznercloud/hcloud-cloud-controller-manager:v1.18.0 # x-release-please-version
image: hetznercloud/hcloud-cloud-controller-manager:v1.19.0 # x-release-please-version
ports:
- name: metrics
containerPort: 8233
Expand Down
6 changes: 3 additions & 3 deletions templates/hetzner_csi.yaml.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ spec:
limits: {}
requests: {}
- name: hcloud-csi-driver
image: docker.io/hetznercloud/hcloud-csi-driver:v2.5.1 # x-release-please-version
image: docker.io/hetznercloud/hcloud-csi-driver:v2.6.0 # x-release-please-version
imagePullPolicy: IfNotPresent
command: [/bin/hcloud-csi-driver-node]
volumeMounts:
Expand Down Expand Up @@ -342,7 +342,7 @@ spec:
name: socket-dir

- name: hcloud-csi-driver
image: docker.io/hetznercloud/hcloud-csi-driver:v2.5.1 # x-release-please-version
image: docker.io/hetznercloud/hcloud-csi-driver:v2.6.0 # x-release-please-version
imagePullPolicy: IfNotPresent
command: [/bin/hcloud-csi-driver-controller]
env:
Expand Down Expand Up @@ -398,4 +398,4 @@ spec:
fsGroupPolicy: File
podInfoOnMount: true
volumeLifecycleModes:
- Persistent
- Persistent
2 changes: 1 addition & 1 deletion templates/wigglenet.yaml.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ spec:
serviceAccountName: wigglenet
containers:
- name: wigglenet
image: ghcr.io/tibordp/wigglenet:v0.4.1
image: ghcr.io/tibordp/wigglenet:v0.4.2
imagePullPolicy: IfNotPresent
env:
- name: NODE_NAME
Expand Down
4 changes: 2 additions & 2 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -116,9 +116,9 @@ variable "primary_ip_family" {
}

variable "kubernetes_version" {
description = "Version of Kubernetes to install (default: 1.28.3)"
description = "Version of Kubernetes to install (default: 1.29.2)"
type = string
default = "1.28.3"
default = "1.29.2"

validation {
condition = can(regex("^1\\.([0-9]+)\\.([0-9]+)$", var.kubernetes_version))
Expand Down

0 comments on commit f872d99

Please sign in to comment.