mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2026-01-23 07:28:06 -03:30
* tests: replace ubuntu16 with ubuntu20
Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch>
* tests: replace ubuntu18 with ubuntu20
Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch>
* docs: update docs to remove support for ubuntu 16 and 18
Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch>
* molecule: upgrade ubuntu versions
Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch>
* vagrant: upgrade ubuntu versions
Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch>
* tests: cleanup ubuntu{16,18}
Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch>
* tests: increase ubuntu22 ram to allow molecule creation
Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch>
---------
Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch>
50 lines
815 B
YAML
50 lines
815 B
YAML
---
|
|
dependency:
|
|
name: galaxy
|
|
lint: |
|
|
set -e
|
|
yamllint -c ../../.yamllint .
|
|
driver:
|
|
name: vagrant
|
|
provider:
|
|
name: libvirt
|
|
platforms:
|
|
- name: ubuntu20
|
|
box: generic/ubuntu2004
|
|
cpus: 1
|
|
memory: 512
|
|
- name: ubuntu22
|
|
box: generic/ubuntu2204
|
|
cpus: 1
|
|
memory: 1024
|
|
- name: centos7
|
|
box: centos/7
|
|
cpus: 1
|
|
memory: 512
|
|
- name: almalinux8
|
|
box: almalinux/8
|
|
cpus: 1
|
|
memory: 512
|
|
- name: debian10
|
|
box: generic/debian10
|
|
cpus: 1
|
|
memory: 512
|
|
provisioner:
|
|
name: ansible
|
|
config_options:
|
|
defaults:
|
|
callbacks_enabled: profile_tasks
|
|
timeout: 120
|
|
lint:
|
|
name: ansible-lint
|
|
inventory:
|
|
group_vars:
|
|
all:
|
|
user:
|
|
name: foo
|
|
comment: My test comment
|
|
verifier:
|
|
name: testinfra
|
|
lint:
|
|
name: flake8
|