mirror of
https://github.com/optim-enterprises-bv/terraform-talos.git
synced 2025-11-01 18:58:39 +00:00
Update version
This commit is contained in:
@@ -9,10 +9,10 @@ The goal is to create all cloud services from scratch.
|
||||
|---|---|---|---|---|
|
||||
| [Azure](azure) | 1.1.0 | CCM,CSI,Autoscaler | many regions, many zones | ✓ |
|
||||
| [GCP](gcp-zonal) | 0.14.0 | CCM,CSI,Autoscaler | one region, many zones | ✓ |
|
||||
| [Hetzner](hetzner) | 1.1.0 | CCM,CSI,Autoscaler | many regions | ✗ |
|
||||
| [Hetzner](hetzner) | 1.2.2 | CCM,CSI,Autoscaler | many regions | ✗ |
|
||||
| [Openstack](openstack) | 1.1.0 | CCM,CSI | many regions, many zones | ✓ |
|
||||
| [Oracle](oracle) | 1.0.0 | | many regions, many zones | ✓ |
|
||||
| [Scaleway](scaleway) | 1.1.0 | CCM,CSI | one region | ✓ |
|
||||
| [Scaleway](scaleway) | 1.2.2 | CCM,CSI | one region | ✓ |
|
||||
|
||||
|
||||
## Common
|
||||
|
||||
@@ -17,6 +17,6 @@ module "worker" {
|
||||
|
||||
vm_params = merge(var.kubernetes, {
|
||||
lbv4 = local.ipv4_vip
|
||||
labels = "project.io/node-pool=web,node.kubernetes.io/disktype=ssd,topology.kubernetes.io/region=${each.key},hcloud/node-group=worker-${each.key}"
|
||||
labels = "project.io/node-pool=worker,node.kubernetes.io/disktype=ssd,topology.kubernetes.io/region=${each.key},hcloud/node-group=worker-${each.key}"
|
||||
})
|
||||
}
|
||||
|
||||
47
scaleway/deployments/test.yaml
Normal file
47
scaleway/deployments/test.yaml
Normal file
@@ -0,0 +1,47 @@
|
||||
apiVersion: v1
|
||||
kind: Pod
|
||||
metadata:
|
||||
name: ubuntu
|
||||
namespace: kube-system
|
||||
spec:
|
||||
hostname: ubuntu
|
||||
hostPID: true
|
||||
hostNetwork: true
|
||||
containers:
|
||||
- image: ubuntu
|
||||
command:
|
||||
- sleep
|
||||
- "14d"
|
||||
name: ubuntu
|
||||
securityContext:
|
||||
privileged: true
|
||||
volumeMounts:
|
||||
- name: dev
|
||||
mountPath: /dev
|
||||
- name: root
|
||||
mountPath: /mnt/root
|
||||
readOnly: true
|
||||
- mountPath: /lib/modules
|
||||
name: lib-modules
|
||||
readOnly: true
|
||||
- name: tmp
|
||||
mountPath: /tmp
|
||||
priorityClassName: system-node-critical
|
||||
tolerations:
|
||||
- operator: Exists
|
||||
- key: node.kubernetes.io/disk-pressure
|
||||
operator: Exists
|
||||
effect: NoSchedule
|
||||
volumes:
|
||||
- name: dev
|
||||
hostPath:
|
||||
path: /dev
|
||||
- name: root
|
||||
hostPath:
|
||||
path: /
|
||||
- hostPath:
|
||||
path: /lib/modules
|
||||
name: lib-modules
|
||||
- name: tmp
|
||||
emptyDir:
|
||||
medium: Memory
|
||||
@@ -7,7 +7,7 @@ variable "hcloud_token" {
|
||||
|
||||
variable "talos_version" {
|
||||
type = string
|
||||
default = "v1.1.2"
|
||||
default = "v1.2.2"
|
||||
}
|
||||
|
||||
locals {
|
||||
|
||||
@@ -23,7 +23,7 @@ variable "scaleway_zone" {
|
||||
|
||||
variable "talos_version" {
|
||||
type = string
|
||||
default = "v1.2.0"
|
||||
default = "v1.2.2"
|
||||
}
|
||||
|
||||
locals {
|
||||
|
||||
Reference in New Issue
Block a user