mirror of
https://github.com/puppetmaster/typhoon.git
synced 2025-08-04 10:41:33 +02:00
Compare commits
3 Commits
feat/flatc
...
v1.26.2
Author | SHA1 | Date | |
---|---|---|---|
4891a66e29 | |||
3ff6c2fdf7 | |||
517863c31a |
3
.github/dependabot.yaml
vendored
3
.github/dependabot.yaml
vendored
@ -4,6 +4,3 @@ updates:
|
||||
directory: "/"
|
||||
schedule:
|
||||
interval: weekly
|
||||
pull-request-branch-name:
|
||||
separator: "-"
|
||||
open-pull-requests-limit: 3
|
||||
|
@ -4,6 +4,8 @@ Notable changes between versions.
|
||||
|
||||
## Latest
|
||||
|
||||
## v1.26.2
|
||||
|
||||
* Kubernetes [v1.26.2](https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG/CHANGELOG-1.26.md#v1262)
|
||||
* Update Cilium from v1.12.5 to [v1.12.6](https://github.com/cilium/cilium/releases/tag/v1.12.6)
|
||||
* Update flannel from v0.20.2 to [v0.21.2](https://github.com/flannel-io/flannel/releases/tag/v0.21.2)
|
||||
@ -12,6 +14,10 @@ Notable changes between versions.
|
||||
|
||||
* Add a `worker` module to allow customizing individual worker nodes ([#1295](https://github.com/poseidon/typhoon/pull/1295))
|
||||
|
||||
### Known Issues
|
||||
|
||||
* Fedora CoreOS [issue](https://github.com/coreos/fedora-coreos-tracker/issues/1423) fix is progressing through channels
|
||||
|
||||
## v1.26.1
|
||||
|
||||
* Kubernetes [v1.26.1](https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG/CHANGELOG-1.26.md#v1261)
|
||||
|
@ -73,20 +73,6 @@ variable "worker_node_taints" {
|
||||
default = {}
|
||||
}
|
||||
|
||||
variable "worker_bind_devices" {
|
||||
type = map(list(object({
|
||||
source = string
|
||||
target = string
|
||||
})))
|
||||
description = <<EOD
|
||||
List of devices to bind on kubelet container for direct storage usage
|
||||
[
|
||||
{ source = "/dev/sdb", target = "/dev/sdb" },
|
||||
{ source = "/dev/sdc", target = "/dev/sdc" }
|
||||
]
|
||||
EOD
|
||||
}
|
||||
|
||||
# configuration
|
||||
|
||||
variable "k8s_domain_name" {
|
||||
|
@ -77,9 +77,6 @@ systemd:
|
||||
--register-with-taints=${taint} \
|
||||
%{~ endfor ~}
|
||||
--node-labels=node.kubernetes.io/node
|
||||
%{~ for device in node_devices ~}
|
||||
--device=${device.source}:${device.target}
|
||||
%{~ endfor ~}
|
||||
ExecStart=docker logs -f kubelet
|
||||
ExecStop=docker stop kubelet
|
||||
ExecStopPost=docker rm kubelet
|
||||
|
@ -81,7 +81,6 @@ data "ct_config" "worker" {
|
||||
cluster_domain_suffix = var.cluster_domain_suffix
|
||||
node_labels = join(",", var.node_labels)
|
||||
node_taints = join(",", var.node_taints)
|
||||
node_devices = var.node_devices
|
||||
})
|
||||
strict = true
|
||||
snippets = var.snippets
|
||||
|
@ -72,15 +72,6 @@ variable "node_taints" {
|
||||
default = []
|
||||
}
|
||||
|
||||
variable "node_devices" {
|
||||
type = list(object({
|
||||
source = string
|
||||
target = string
|
||||
}))
|
||||
description = "List of devices object to bind with --device option"
|
||||
default = []
|
||||
}
|
||||
|
||||
# optional
|
||||
|
||||
variable "download_protocol" {
|
||||
|
@ -22,7 +22,6 @@ module "workers" {
|
||||
node_labels = lookup(var.worker_node_labels, var.workers[count.index].name, [])
|
||||
node_taints = lookup(var.worker_node_taints, var.workers[count.index].name, [])
|
||||
snippets = lookup(var.snippets, var.workers[count.index].name, [])
|
||||
node_devices = lookup(var.worker_bind_devices, var.workers[count.index].name, [])
|
||||
|
||||
# optional
|
||||
download_protocol = var.download_protocol
|
||||
|
@ -1,4 +1,4 @@
|
||||
mkdocs==1.4.2
|
||||
mkdocs-material==9.0.15
|
||||
mkdocs-material==9.1.1
|
||||
pygments==2.14.0
|
||||
pymdown-extensions==9.9.2
|
||||
pymdown-extensions==9.10
|
||||
|
Reference in New Issue
Block a user