Skip to content

Commit 931d6d1

Browse files
committed
Update Kubernetes from v1.30.1 to v1.30.2
* Update CoreDNS from v1.9.4 to v1.11.1 * Update Cilium from v1.15.5 to v1.15.6 * Update flannel from v0.25.1 to v0.25.4
1 parent da99a01 commit 931d6d1

File tree

56 files changed

+145
-145
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+145
-145
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Typhoon distributes upstream Kubernetes, architectural conventions, and cluster
1818

1919
## Features <a href="https://www.cncf.io/certification/software-conformance/"><img align="right" src="https://storage.googleapis.com/poseidon/certified-kubernetes.png"></a>
2020

21-
* Kubernetes v1.30.1 (upstream)
21+
* Kubernetes v1.30.2 (upstream)
2222
* Single or multi-master, [Calico](https://www.projectcalico.org/) or [Cilium](https://github.com/cilium/cilium) or [flannel](https://github.com/coreos/flannel) networking
2323
* On-cluster etcd with TLS, [RBAC](https://kubernetes.io/docs/admin/authorization/rbac/)-enabled, [network policy](https://kubernetes.io/docs/concepts/services-networking/network-policies/), SELinux enforcing
2424
* Advanced features like [worker pools](https://typhoon.psdn.io/advanced/worker-pools/), [preemptible](https://typhoon.psdn.io/flatcar-linux/google-cloud/#preemption) workers, and [snippets](https://typhoon.psdn.io/advanced/customization/#hosts) customization
@@ -78,7 +78,7 @@ Define a Kubernetes cluster by using the Terraform module for your chosen platfo
7878

7979
```tf
8080
module "yavin" {
81-
source = "git::https://github.com/poseidon/typhoon//google-cloud/fedora-coreos/kubernetes?ref=v1.30.1"
81+
source = "git::https://github.com/poseidon/typhoon//google-cloud/fedora-coreos/kubernetes?ref=v1.30.2"
8282
8383
# Google Cloud
8484
cluster_name = "yavin"
@@ -117,9 +117,9 @@ In 4-8 minutes (varies by platform), the cluster will be ready. This Google Clou
117117
$ export KUBECONFIG=/home/user/.kube/configs/yavin-config
118118
$ kubectl get nodes
119119
NAME ROLES STATUS AGE VERSION
120-
yavin-controller-0.c.example-com.internal <none> Ready 6m v1.30.1
121-
yavin-worker-jrbf.c.example-com.internal <none> Ready 5m v1.30.1
122-
yavin-worker-mzdm.c.example-com.internal <none> Ready 5m v1.30.1
120+
yavin-controller-0.c.example-com.internal <none> Ready 6m v1.30.2
121+
yavin-worker-jrbf.c.example-com.internal <none> Ready 5m v1.30.2
122+
yavin-worker-mzdm.c.example-com.internal <none> Ready 5m v1.30.2
123123
```
124124

125125
List the pods.

aws/fedora-coreos/kubernetes/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Typhoon distributes upstream Kubernetes, architectural conventions, and cluster
1111

1212
## Features <a href="https://www.cncf.io/certification/software-conformance/"><img align="right" src="https://storage.googleapis.com/poseidon/certified-kubernetes.png"></a>
1313

14-
* Kubernetes v1.30.1 (upstream)
14+
* Kubernetes v1.30.2 (upstream)
1515
* Single or multi-master, [Calico](https://www.projectcalico.org/) or [Cilium](https://github.com/cilium/cilium) or [flannel](https://github.com/coreos/flannel) networking
1616
* On-cluster etcd with TLS, [RBAC](https://kubernetes.io/docs/admin/authorization/rbac/)-enabled, [network policy](https://kubernetes.io/docs/concepts/services-networking/network-policies/), SELinux enforcing
1717
* Advanced features like [worker pools](https://typhoon.psdn.io/advanced/worker-pools/), [spot](https://typhoon.psdn.io/fedora-coreos/aws/#spot) workers, and [snippets](https://typhoon.psdn.io/advanced/customization/#hosts) customization

aws/fedora-coreos/kubernetes/bootstrap.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Kubernetes assets (kubeconfig, manifests)
22
module "bootstrap" {
3-
source = "git::https://github.com/poseidon/terraform-render-bootstrap.git?ref=e1b1e0c75e77e042cf369f463f0e656297a201a8"
3+
source = "git::https://github.com/poseidon/terraform-render-bootstrap.git?ref=886f501bf7b624fc12acac83449b81d0dc8b8849"
44

55
cluster_name = var.cluster_name
66
api_servers = [format("%s.%s", var.cluster_name, var.dns_zone)]

aws/fedora-coreos/kubernetes/butane/controller.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ systemd:
5757
After=afterburn.service
5858
Wants=rpc-statd.service
5959
[Service]
60-
Environment=KUBELET_IMAGE=quay.io/poseidon/kubelet:v1.30.1
60+
Environment=KUBELET_IMAGE=quay.io/poseidon/kubelet:v1.30.2
6161
EnvironmentFile=/run/metadata/afterburn
6262
ExecStartPre=/bin/mkdir -p /etc/cni/net.d
6363
ExecStartPre=/bin/mkdir -p /etc/kubernetes/manifests
@@ -116,7 +116,7 @@ systemd:
116116
--volume /opt/bootstrap/assets:/assets:ro,Z \
117117
--volume /opt/bootstrap/apply:/apply:ro,Z \
118118
--entrypoint=/apply \
119-
quay.io/poseidon/kubelet:v1.30.1
119+
quay.io/poseidon/kubelet:v1.30.2
120120
ExecStartPost=/bin/touch /opt/bootstrap/bootstrap.done
121121
ExecStartPost=-/usr/bin/podman stop bootstrap
122122
storage:

aws/fedora-coreos/kubernetes/workers/butane/worker.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ systemd:
2929
After=afterburn.service
3030
Wants=rpc-statd.service
3131
[Service]
32-
Environment=KUBELET_IMAGE=quay.io/poseidon/kubelet:v1.30.1
32+
Environment=KUBELET_IMAGE=quay.io/poseidon/kubelet:v1.30.2
3333
EnvironmentFile=/run/metadata/afterburn
3434
ExecStartPre=/bin/mkdir -p /etc/cni/net.d
3535
ExecStartPre=/bin/mkdir -p /etc/kubernetes/manifests

aws/flatcar-linux/kubernetes/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Typhoon distributes upstream Kubernetes, architectural conventions, and cluster
1111

1212
## Features <a href="https://www.cncf.io/certification/software-conformance/"><img align="right" src="https://storage.googleapis.com/poseidon/certified-kubernetes.png"></a>
1313

14-
* Kubernetes v1.30.1 (upstream)
14+
* Kubernetes v1.30.2 (upstream)
1515
* Single or multi-master, [Calico](https://www.projectcalico.org/) or [Cilium](https://github.com/cilium/cilium) or [flannel](https://github.com/coreos/flannel) networking
1616
* On-cluster etcd with TLS, [RBAC](https://kubernetes.io/docs/admin/authorization/rbac/)-enabled, [network policy](https://kubernetes.io/docs/concepts/services-networking/network-policies/)
1717
* Advanced features like [worker pools](https://typhoon.psdn.io/advanced/worker-pools/), [spot](https://typhoon.psdn.io/flatcar-linux/aws/#spot) workers, and [snippets](https://typhoon.psdn.io/advanced/customization/#hosts) customization

aws/flatcar-linux/kubernetes/bootstrap.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Kubernetes assets (kubeconfig, manifests)
22
module "bootstrap" {
3-
source = "git::https://github.com/poseidon/terraform-render-bootstrap.git?ref=e1b1e0c75e77e042cf369f463f0e656297a201a8"
3+
source = "git::https://github.com/poseidon/terraform-render-bootstrap.git?ref=886f501bf7b624fc12acac83449b81d0dc8b8849"
44

55
cluster_name = var.cluster_name
66
api_servers = [format("%s.%s", var.cluster_name, var.dns_zone)]

aws/flatcar-linux/kubernetes/butane/controller.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ systemd:
5858
After=coreos-metadata.service
5959
Wants=rpc-statd.service
6060
[Service]
61-
Environment=KUBELET_IMAGE=quay.io/poseidon/kubelet:v1.30.1
61+
Environment=KUBELET_IMAGE=quay.io/poseidon/kubelet:v1.30.2
6262
EnvironmentFile=/run/metadata/coreos
6363
ExecStartPre=/bin/mkdir -p /etc/cni/net.d
6464
ExecStartPre=/bin/mkdir -p /etc/kubernetes/manifests
@@ -109,7 +109,7 @@ systemd:
109109
Type=oneshot
110110
RemainAfterExit=true
111111
WorkingDirectory=/opt/bootstrap
112-
Environment=KUBELET_IMAGE=quay.io/poseidon/kubelet:v1.30.1
112+
Environment=KUBELET_IMAGE=quay.io/poseidon/kubelet:v1.30.2
113113
ExecStart=/usr/bin/docker run \
114114
-v /etc/kubernetes/pki:/etc/kubernetes/pki:ro \
115115
-v /opt/bootstrap/assets:/assets:ro \

aws/flatcar-linux/kubernetes/workers/butane/worker.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ systemd:
3030
After=coreos-metadata.service
3131
Wants=rpc-statd.service
3232
[Service]
33-
Environment=KUBELET_IMAGE=quay.io/poseidon/kubelet:v1.30.1
33+
Environment=KUBELET_IMAGE=quay.io/poseidon/kubelet:v1.30.2
3434
EnvironmentFile=/run/metadata/coreos
3535
ExecStartPre=/bin/mkdir -p /etc/cni/net.d
3636
ExecStartPre=/bin/mkdir -p /etc/kubernetes/manifests

azure/fedora-coreos/kubernetes/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Typhoon distributes upstream Kubernetes, architectural conventions, and cluster
1111

1212
## Features <a href="https://www.cncf.io/certification/software-conformance/"><img align="right" src="https://storage.googleapis.com/poseidon/certified-kubernetes.png"></a>
1313

14-
* Kubernetes v1.30.1 (upstream)
14+
* Kubernetes v1.30.2 (upstream)
1515
* Single or multi-master, [Calico](https://www.projectcalico.org/) or [Cilium](https://github.com/cilium/cilium) or [flannel](https://github.com/coreos/flannel) networking
1616
* On-cluster etcd with TLS, [RBAC](https://kubernetes.io/docs/admin/authorization/rbac/)-enabled, [network policy](https://kubernetes.io/docs/concepts/services-networking/network-policies/), SELinux enforcing
1717
* Advanced features like [worker pools](https://typhoon.psdn.io/advanced/worker-pools/), [spot priority](https://typhoon.psdn.io/fedora-coreos/azure/#low-priority) workers, and [snippets](https://typhoon.psdn.io/advanced/customization/#hosts) customization

0 commit comments

Comments
 (0)