Update Kubernetes from v1.26.0 to v1.26.1

* https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG/CHANGELOG-1.26.md#v1261
* Update CoreDNS from v1.9.3 to v1.9.4

Rel: https://github.com/coredns/coredns/releases/tag/v1.9.4
This commit is contained in:
Dalton Hubble
2023-01-19 08:12:12 -08:00
parent 4476e946f6
commit adcc942508
2 changed files with 9 additions and 6 deletions

View File

@@ -1,4 +1,7 @@
# terraform-render-bootstrap [![Workflow](https://github.com/poseidon/terraform-render-bootstrap/actions/workflows/test.yaml/badge.svg)](https://github.com/poseidon/terraform-render-bootstrap/actions/workflows/test.yaml?query=branch%3Amain) [![Sponsors](https://img.shields.io/github/sponsors/poseidon?logo=github)](https://github.com/sponsors/poseidon) [![Twitter](https://img.shields.io/badge/follow-news-1da1f2?logo=twitter)](https://twitter.com/typhoon8s) [![Mastodon](https://img.shields.io/badge/follow-news-6364ff?logo=mastodon)](https://fosstodon.org/@poseidon)
# terraform-render-bootstrap
[![Workflow](https://github.com/poseidon/terraform-render-bootstrap/actions/workflows/test.yaml/badge.svg)](https://github.com/poseidon/terraform-render-bootstrap/actions/workflows/test.yaml?query=branch%3Amain)
[![Sponsors](https://img.shields.io/github/sponsors/poseidon?logo=github)](https://github.com/sponsors/poseidon)
[![Mastodon](https://img.shields.io/badge/follow-news-6364ff?logo=mastodon)](https://fosstodon.org/@typhoon)
`terraform-render-bootstrap` is a Terraform module that renders TLS certificates, static pods, and manifests for bootstrapping a Kubernetes cluster.

View File

@@ -64,13 +64,13 @@ variable "container_images" {
calico_cni = "quay.io/calico/cni:v3.24.5"
cilium_agent = "quay.io/cilium/cilium:v1.12.5"
cilium_operator = "quay.io/cilium/operator-generic:v1.12.5"
coredns = "registry.k8s.io/coredns/coredns:v1.9.3"
coredns = "registry.k8s.io/coredns/coredns:v1.9.4"
flannel = "docker.io/flannelcni/flannel:v0.20.2"
flannel_cni = "quay.io/poseidon/flannel-cni:v0.4.2"
kube_apiserver = "registry.k8s.io/kube-apiserver:v1.26.0"
kube_controller_manager = "registry.k8s.io/kube-controller-manager:v1.26.0"
kube_scheduler = "registry.k8s.io/kube-scheduler:v1.26.0"
kube_proxy = "registry.k8s.io/kube-proxy:v1.26.0"
kube_apiserver = "registry.k8s.io/kube-apiserver:v1.26.1"
kube_controller_manager = "registry.k8s.io/kube-controller-manager:v1.26.1"
kube_scheduler = "registry.k8s.io/kube-scheduler:v1.26.1"
kube_proxy = "registry.k8s.io/kube-proxy:v1.26.1"
}
}