Browse Source
[2.22] Add hashes for kubernetes 1.26.11, 1.26.10 (#10704)
[2.22] Add hashes for kubernetes 1.26.11, 1.26.10 (#10704)
* [kubernetes] Add hashes for kubernetes 1.26.11, 1.26.10 Make kubernetes 1.26.11 default * Workaround for yaml/pyyaml#601 * Convert exoscale tf provider to new version (#10646) This is untested. It passes terraform validate to un-broke the CI. * Update 0040-verify-settings.yml (#10699) remove embedded template * Use supported version of fedora in CI (#10108) * tests: replace fedora35 with fedora37 Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch> * tests: replace fedora36 with fedora38 Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch> * docs: update fedora version in docs Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch> * molecule: upgrade fedora version Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch> * tests: upgrade fedora images for vagrant and kubevirt Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch> * vagrant: workaround to fix private network ip address in fedora Fedora stop supporting syconfig network script so we added a workaround here https://github.com/hashicorp/vagrant/issues/12762#issuecomment-1535957837 to fix it. * netowrkmanager: do not configure dns if using systemd-resolved We should not configure dns if we point to systemd-resolved. Systemd-resolved is using NetworkManager to infer the upstream DNS server so if we set NetworkManager to 127.0.0.53 it will prevent systemd-resolved to get the correct network DNS server. Thus if we are in this case we just don't set this setting. Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch> * image-builder: update centos7 image Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch> * gitlab-ci: mark fedora packet jobs as allow failure Fedora networking is still broken on Packet, let's mark it as allow failure for now. Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch> --------- Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch> --------- Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch> Co-authored-by: piwinkler <9642809+piwinkler@users.noreply.github.com> Co-authored-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch>pull/10726/head
Max Gautier
11 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
30 changed files with 198 additions and 163 deletions
Split View
Diff Options
-
2.gitlab-ci.yml
-
2.gitlab-ci/lint.yml
-
2.gitlab-ci/molecule.yml
-
13.gitlab-ci/packet.yml
-
4.gitlab-ci/vagrant.yml
-
4README.md
-
16Vagrantfile
-
8contrib/terraform/exoscale/default.tfvars
-
202contrib/terraform/exoscale/modules/kubernetes-cluster/main.tf
-
16contrib/terraform/exoscale/modules/kubernetes-cluster/output.tf
-
2contrib/terraform/exoscale/modules/kubernetes-cluster/versions.tf
-
12docs/ci.md
-
2inventory/sample/group_vars/k8s_cluster/k8s-cluster.yml
-
3pipeline.Dockerfile
-
2roles/container-engine/cri-o/molecule/default/molecule.yml
-
24roles/download/defaults/main.yml
-
2roles/kubernetes/preinstall/tasks/0040-verify-settings.yml
-
2roles/kubernetes/preinstall/tasks/0063-networkmanager-dns.yml
-
2roles/kubespray-defaults/defaults/main.yaml
-
20test-infra/image-builder/roles/kubevirt-images/defaults/main.yml
-
4tests/cloud_playbooks/roles/packet-ci/defaults/main.yml
-
1tests/constraints.txt
-
2tests/files/packet_fedora37-calico-selinux.yml
-
2tests/files/packet_fedora37-calico-swap-selinux.yml
-
2tests/files/packet_fedora37-crio.yml
-
2tests/files/packet_fedora38-docker-calico.yml
-
2tests/files/packet_fedora38-docker-weave.yml
-
2tests/files/packet_fedora38-kube-ovn.yml
-
2tests/files/vagrant_fedora37-kube-router.rb
-
2tests/files/vagrant_fedora37-kube-router.yml
@ -0,0 +1 @@ |
|||
cython<3 |
@ -1,6 +1,6 @@ |
|||
--- |
|||
# Instance settings |
|||
cloud_image: fedora-35 |
|||
cloud_image: fedora-37 |
|||
mode: default |
|||
|
|||
# Kubespray settings |
@ -1,6 +1,6 @@ |
|||
--- |
|||
# Instance settings |
|||
cloud_image: fedora-35 |
|||
cloud_image: fedora-37 |
|||
mode: default |
|||
|
|||
# Kubespray settings |
@ -1,6 +1,6 @@ |
|||
--- |
|||
# Instance settings |
|||
cloud_image: fedora-35 |
|||
cloud_image: fedora-37 |
|||
mode: default |
|||
|
|||
# Kubespray settings |
@ -1,6 +1,6 @@ |
|||
--- |
|||
# Instance settings |
|||
cloud_image: fedora-36 |
|||
cloud_image: fedora-38 |
|||
mode: default |
|||
|
|||
# Kubespray settings |
@ -1,6 +1,6 @@ |
|||
--- |
|||
# Instance settings |
|||
cloud_image: fedora-36 |
|||
cloud_image: fedora-38 |
|||
mode: default |
|||
|
|||
# Kubespray settings |
@ -1,6 +1,6 @@ |
|||
--- |
|||
# Instance settings |
|||
cloud_image: fedora-36 |
|||
cloud_image: fedora-38 |
|||
mode: default |
|||
|
|||
# Kubespray settings |
@ -1,6 +1,6 @@ |
|||
$num_instances = 2 |
|||
$vm_memory ||= 2048 |
|||
$os = "fedora35" |
|||
$os = "fedora37" |
|||
|
|||
$kube_master_instances = 1 |
|||
$etcd_instances = 1 |
@ -1,6 +1,6 @@ |
|||
--- |
|||
# Instance settings |
|||
cloud_image: fedora-35 |
|||
cloud_image: fedora-37 |
|||
mode: default |
|||
|
|||
# Kubespray settings |
Write
Preview
Loading…
Cancel
Save