Compare commits
57 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2ae9ee82f0 | |||
| 5380f93b64 | |||
| a414453ad4 | |||
| 23c5d9ec89 | |||
| 6b339e1985 | |||
| a031807660 | |||
| 7dd305aabc | |||
| 500931e2fd | |||
| cf357cf164 | |||
| 215e0d10ed | |||
| c6ed680dc1 | |||
| 8343a6199e | |||
| b524f97552 | |||
| f741040e44 | |||
| 09bc628ba6 | |||
| 71ff6b86cd | |||
| 23729ddbbe | |||
| e254c407f0 | |||
| 713b4694e1 | |||
| 952d513124 | |||
| dd1e596332 | |||
| 6af47f96d0 | |||
| 664deec6c3 | |||
| 646459e7f5 | |||
| 64242d9729 | |||
| f4864ddb64 | |||
| 6a83cde0c6 | |||
| 77ac928c0d | |||
| 8300a7aaac | |||
| bdc6af5f46 | |||
| dc8276157a | |||
| 37f0cb11d2 | |||
| 68e7c77b22 | |||
| d82c4feac8 | |||
| 9217d8607b | |||
| fbc15aa1a1 | |||
| b55ec046ad | |||
| b3cc178045 | |||
| 13be424187 | |||
| d9cecd5364 | |||
| afb96dbee2 | |||
| 30ffc69192 | |||
| 94e385c28e | |||
| dbb2cda17a | |||
| d24cdb97db | |||
| 5bebec930b | |||
| ac52acdec1 | |||
| 105b2c2f1e | |||
| d20f485fca | |||
| f9bb9dabae | |||
| 6f15ef260e | |||
| de1966fe02 | |||
| fc823122d8 | |||
| 2f8d94bb5e | |||
| 9c3814ce72 | |||
| 0e60f4643b | |||
| bb20514a6a |
@@ -5,10 +5,15 @@
|
|||||||
# already present on the system.
|
# already present on the system.
|
||||||
|
|
||||||
set -euo pipefail
|
set -euo pipefail
|
||||||
|
YQ_VERSION=v4.29.2
|
||||||
|
YQ_BINARY=yq_linux_amd64
|
||||||
GIT_ROOT=$(git rev-parse --show-toplevel)
|
GIT_ROOT=$(git rev-parse --show-toplevel)
|
||||||
PROVIDER=virtualbox
|
PROVIDER=virtualbox
|
||||||
|
|
||||||
|
# get yq used for filtering
|
||||||
|
sudo wget https://github.com/mikefarah/yq/releases/download/${YQ_VERSION}/${YQ_BINARY} -O /usr/bin/yq &&\
|
||||||
|
sudo chmod +x /usr/bin/yq
|
||||||
|
|
||||||
# Read all boxes for all platforms from the "molecule.yml" files
|
# Read all boxes for all platforms from the "molecule.yml" files
|
||||||
all_boxes=$(cat "${GIT_ROOT}"/molecule/*/molecule.yml |
|
all_boxes=$(cat "${GIT_ROOT}"/molecule/*/molecule.yml |
|
||||||
yq -r '.platforms[].box' | # Read the "box" property of each node under "platforms"
|
yq -r '.platforms[].box' | # Read the "box" property of each node under "platforms"
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ on:
|
|||||||
jobs:
|
jobs:
|
||||||
pre-commit-ci:
|
pre-commit-ci:
|
||||||
name: Pre-Commit
|
name: Pre-Commit
|
||||||
runs-on: ubuntu-latest
|
runs-on: self-hosted
|
||||||
env:
|
env:
|
||||||
PYTHON_VERSION: "3.10"
|
PYTHON_VERSION: "3.10"
|
||||||
|
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ on:
|
|||||||
jobs:
|
jobs:
|
||||||
molecule:
|
molecule:
|
||||||
name: Molecule
|
name: Molecule
|
||||||
runs-on: macos-12
|
runs-on: self-hosted
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
@@ -21,6 +21,7 @@ jobs:
|
|||||||
fail-fast: false
|
fail-fast: false
|
||||||
env:
|
env:
|
||||||
PYTHON_VERSION: "3.10"
|
PYTHON_VERSION: "3.10"
|
||||||
|
VAGRANT_DEFAULT_PROVIDER: virtualbox
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Check out the codebase
|
- name: Check out the codebase
|
||||||
@@ -28,6 +29,32 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
ref: ${{ github.event.pull_request.head.sha }}
|
ref: ${{ github.event.pull_request.head.sha }}
|
||||||
|
|
||||||
|
- name: Install Virtual Box from Oracle
|
||||||
|
run: |
|
||||||
|
echo "::group::Virtual Box"
|
||||||
|
wget -O- https://www.virtualbox.org/download/oracle_vbox_2016.asc | sudo gpg --dearmor --yes --output /usr/share/keyrings/oracle-virtualbox-2016.gpg
|
||||||
|
echo "deb [arch=amd64 signed-by=/usr/share/keyrings/oracle-virtualbox-2016.gpg] https://download.virtualbox.org/virtualbox/debian $(lsb_release -cs) contrib" | sudo tee -a /etc/apt/sources.list.d/virtualbox.list
|
||||||
|
sudo apt update && sudo apt install -y linux-headers-generic linux-headers-5.15.0-52-generic build-essential dkms virtualbox-dkms virtualbox-6.1
|
||||||
|
echo "::endgroup::"
|
||||||
|
echo "::group::Virtual Box Test"
|
||||||
|
vboxmanage --version
|
||||||
|
sudo /sbin/vboxconfig
|
||||||
|
sudo modprobe vboxdrv
|
||||||
|
vboxmanage --version
|
||||||
|
echo "::endgroup::"
|
||||||
|
|
||||||
|
- name: Install Vagrant
|
||||||
|
run: |
|
||||||
|
echo "::group::Install Vagrant"
|
||||||
|
wget -O- https://apt.releases.hashicorp.com/gpg | gpg --dearmor | sudo tee /usr/share/keyrings/hashicorp-archive-keyring.gpg
|
||||||
|
echo "deb [signed-by=/usr/share/keyrings/hashicorp-archive-keyring.gpg] https://apt.releases.hashicorp.com $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/hashicorp.list
|
||||||
|
sudo apt update && sudo apt install -y vagrant
|
||||||
|
vagrant version
|
||||||
|
vagrant plugin list
|
||||||
|
vagrant plugin install vagrant-vbguest
|
||||||
|
vagrant plugin list
|
||||||
|
echo "::endgroup::"
|
||||||
|
|
||||||
- name: Configure VirtualBox
|
- name: Configure VirtualBox
|
||||||
run: |-
|
run: |-
|
||||||
sudo mkdir -p /etc/vbox
|
sudo mkdir -p /etc/vbox
|
||||||
|
|||||||
@@ -1,2 +1 @@
|
|||||||
.env/
|
.env/
|
||||||
*.log
|
|
||||||
+10
-21
@@ -1,23 +1,12 @@
|
|||||||
[defaults]
|
[defaults]
|
||||||
nocows = True
|
nocows = True
|
||||||
roles_path = ./roles
|
roles_path = ./roles
|
||||||
inventory = ./hosts.ini
|
inventory = ./hosts.ini
|
||||||
stdout_callback = yaml
|
|
||||||
|
|
||||||
remote_tmp = $HOME/.ansible/tmp
|
remote_tmp = $HOME/.ansible/tmp
|
||||||
local_tmp = $HOME/.ansible/tmp
|
local_tmp = $HOME/.ansible/tmp
|
||||||
timeout = 60
|
pipelining = True
|
||||||
host_key_checking = False
|
become = True
|
||||||
deprecation_warnings = False
|
host_key_checking = False
|
||||||
callback_whitelist = profile_tasks
|
deprecation_warnings = False
|
||||||
log_path = ./ansible.log
|
callback_whitelist = profile_tasks
|
||||||
|
|
||||||
[privilege_escalation]
|
|
||||||
become = True
|
|
||||||
|
|
||||||
[ssh_connection]
|
|
||||||
scp_if_ssh = smart
|
|
||||||
retries = 3
|
|
||||||
ssh_args = -o ControlMaster=auto -o ControlPersist=30m -o Compression=yes -o ServerAliveInterval=15s
|
|
||||||
pipelining = True
|
|
||||||
control_path = %(directory)s/%%h-%%r
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
k3s_version: v1.24.7+k3s1
|
k3s_version: v1.24.6+k3s1
|
||||||
# this is the user that has ssh access to these machines
|
# this is the user that has ssh access to these machines
|
||||||
ansible_user: ansibleuser
|
ansible_user: ansibleuser
|
||||||
systemd_dir: /etc/systemd/system
|
systemd_dir: /etc/systemd/system
|
||||||
@@ -44,8 +44,8 @@ extra_agent_args: >-
|
|||||||
kube_vip_tag_version: "v0.5.5"
|
kube_vip_tag_version: "v0.5.5"
|
||||||
|
|
||||||
# image tag for metal lb
|
# image tag for metal lb
|
||||||
metal_lb_speaker_tag_version: "v0.13.9"
|
metal_lb_speaker_tag_version: "v0.13.6"
|
||||||
metal_lb_controller_tag_version: "v0.13.9"
|
metal_lb_controller_tag_version: "v0.13.6"
|
||||||
|
|
||||||
# metallb ip range for load balancer
|
# metallb ip range for load balancer
|
||||||
metal_lb_ip_range: "192.168.30.80-192.168.30.90"
|
metal_lb_ip_range: "192.168.30.80-192.168.30.90"
|
||||||
|
|||||||
@@ -3,73 +3,56 @@ dependency:
|
|||||||
name: galaxy
|
name: galaxy
|
||||||
driver:
|
driver:
|
||||||
name: vagrant
|
name: vagrant
|
||||||
platforms:
|
.platform_presets:
|
||||||
|
- &control
|
||||||
- name: control1
|
|
||||||
box: generic/ubuntu2204
|
|
||||||
memory: 2048
|
memory: 2048
|
||||||
cpus: 2
|
cpus: 2
|
||||||
groups:
|
groups:
|
||||||
- k3s_cluster
|
- k3s_cluster
|
||||||
- master
|
- master
|
||||||
|
- &node
|
||||||
|
memory: 2048
|
||||||
|
cpus: 2
|
||||||
|
groups:
|
||||||
|
- k3s_cluster
|
||||||
|
- node
|
||||||
|
- &debian
|
||||||
|
box: generic/debian11
|
||||||
|
- &rocky
|
||||||
|
box: generic/rocky9
|
||||||
|
- &ubuntu
|
||||||
|
box: generic/ubuntu2204
|
||||||
|
config_options:
|
||||||
|
# We currently can not use public-key based authentication on Ubuntu 22.04,
|
||||||
|
# see: https://github.com/chef/bento/issues/1405
|
||||||
|
ssh.username: "vagrant"
|
||||||
|
ssh.password: "vagrant"
|
||||||
|
platforms:
|
||||||
|
- <<: [*control, *ubuntu]
|
||||||
|
name: control1
|
||||||
interfaces:
|
interfaces:
|
||||||
- network_name: private_network
|
- network_name: private_network
|
||||||
ip: 192.168.30.38
|
ip: 192.168.30.38
|
||||||
config_options:
|
- <<: [*control, *debian]
|
||||||
# We currently can not use public-key based authentication on Ubuntu 22.04,
|
name: control2
|
||||||
# see: https://github.com/chef/bento/issues/1405
|
|
||||||
ssh.username: "vagrant"
|
|
||||||
ssh.password: "vagrant"
|
|
||||||
|
|
||||||
- name: control2
|
|
||||||
box: generic/debian11
|
|
||||||
memory: 2048
|
|
||||||
cpus: 2
|
|
||||||
groups:
|
|
||||||
- k3s_cluster
|
|
||||||
- master
|
|
||||||
interfaces:
|
interfaces:
|
||||||
- network_name: private_network
|
- network_name: private_network
|
||||||
ip: 192.168.30.39
|
ip: 192.168.30.39
|
||||||
|
- <<: [*control, *rocky]
|
||||||
- name: control3
|
name: control3
|
||||||
box: generic/rocky9
|
|
||||||
memory: 2048
|
|
||||||
cpus: 2
|
|
||||||
groups:
|
|
||||||
- k3s_cluster
|
|
||||||
- master
|
|
||||||
interfaces:
|
interfaces:
|
||||||
- network_name: private_network
|
- network_name: private_network
|
||||||
ip: 192.168.30.40
|
ip: 192.168.30.40
|
||||||
|
- <<: [*node, *ubuntu]
|
||||||
- name: node1
|
name: node1
|
||||||
box: generic/ubuntu2204
|
|
||||||
memory: 2048
|
|
||||||
cpus: 2
|
|
||||||
groups:
|
|
||||||
- k3s_cluster
|
|
||||||
- node
|
|
||||||
interfaces:
|
interfaces:
|
||||||
- network_name: private_network
|
- network_name: private_network
|
||||||
ip: 192.168.30.41
|
ip: 192.168.30.41
|
||||||
config_options:
|
- <<: [*node, *rocky]
|
||||||
# We currently can not use public-key based authentication on Ubuntu 22.04,
|
name: node2
|
||||||
# see: https://github.com/chef/bento/issues/1405
|
|
||||||
ssh.username: "vagrant"
|
|
||||||
ssh.password: "vagrant"
|
|
||||||
|
|
||||||
- name: node2
|
|
||||||
box: generic/rocky9
|
|
||||||
memory: 2048
|
|
||||||
cpus: 2
|
|
||||||
groups:
|
|
||||||
- k3s_cluster
|
|
||||||
- node
|
|
||||||
interfaces:
|
interfaces:
|
||||||
- network_name: private_network
|
- network_name: private_network
|
||||||
ip: 192.168.30.42
|
ip: 192.168.30.42
|
||||||
|
|
||||||
provisioner:
|
provisioner:
|
||||||
name: ansible
|
name: ansible
|
||||||
playbooks:
|
playbooks:
|
||||||
|
|||||||
+16
-18
@@ -3,39 +3,37 @@ dependency:
|
|||||||
name: galaxy
|
name: galaxy
|
||||||
driver:
|
driver:
|
||||||
name: vagrant
|
name: vagrant
|
||||||
platforms:
|
.platform_presets:
|
||||||
|
- &control
|
||||||
- name: control1
|
|
||||||
box: generic/ubuntu2204
|
|
||||||
memory: 2048
|
memory: 2048
|
||||||
cpus: 2
|
cpus: 2
|
||||||
groups:
|
groups:
|
||||||
- k3s_cluster
|
- k3s_cluster
|
||||||
- master
|
- master
|
||||||
interfaces:
|
- &node
|
||||||
- network_name: private_network
|
|
||||||
ip: fdad:bad:ba55::de:11
|
|
||||||
config_options:
|
|
||||||
# We currently can not use public-key based authentication on Ubuntu 22.04,
|
|
||||||
# see: https://github.com/chef/bento/issues/1405
|
|
||||||
ssh.username: "vagrant"
|
|
||||||
ssh.password: "vagrant"
|
|
||||||
|
|
||||||
- name: node1
|
|
||||||
box: generic/ubuntu2204
|
|
||||||
memory: 2048
|
memory: 2048
|
||||||
cpus: 2
|
cpus: 2
|
||||||
groups:
|
groups:
|
||||||
- k3s_cluster
|
- k3s_cluster
|
||||||
- node
|
- node
|
||||||
interfaces:
|
- &ubuntu
|
||||||
- network_name: private_network
|
box: generic/ubuntu2204
|
||||||
ip: fdad:bad:ba55::de:21
|
|
||||||
config_options:
|
config_options:
|
||||||
# We currently can not use public-key based authentication on Ubuntu 22.04,
|
# We currently can not use public-key based authentication on Ubuntu 22.04,
|
||||||
# see: https://github.com/chef/bento/issues/1405
|
# see: https://github.com/chef/bento/issues/1405
|
||||||
ssh.username: "vagrant"
|
ssh.username: "vagrant"
|
||||||
ssh.password: "vagrant"
|
ssh.password: "vagrant"
|
||||||
|
platforms:
|
||||||
|
- <<: [*control, *ubuntu]
|
||||||
|
name: control1
|
||||||
|
interfaces:
|
||||||
|
- network_name: private_network
|
||||||
|
ip: fdad:bad:ba55::de:11
|
||||||
|
- <<: [*node, *ubuntu]
|
||||||
|
name: node1
|
||||||
|
interfaces:
|
||||||
|
- network_name: private_network
|
||||||
|
ip: fdad:bad:ba55::de:21
|
||||||
provisioner:
|
provisioner:
|
||||||
name: ansible
|
name: ansible
|
||||||
playbooks:
|
playbooks:
|
||||||
|
|||||||
@@ -1,3 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
ansible-playbook reboot.yml -i inventory/my-cluster/hosts.ini
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
---
|
|
||||||
- name: Reboot k3s_cluster
|
|
||||||
hosts: k3s_cluster
|
|
||||||
gather_facts: yes
|
|
||||||
become: yes
|
|
||||||
tasks:
|
|
||||||
- name: Reboot the nodes (and Wait upto 5 mins max)
|
|
||||||
reboot:
|
|
||||||
reboot_timeout: 300
|
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
molecule>=4.0.3
|
|
||||||
ansible-core>=2.13.5
|
|
||||||
ansible-lint>=6.8.6
|
|
||||||
kubernetes>=25.3.0
|
|
||||||
molecule-vagrant>=1.0.0
|
|
||||||
molecule>=4.0.3
|
|
||||||
netaddr>=0.8.0
|
|
||||||
pyyaml>=6.0
|
|
||||||
yamllint>=1.28.0
|
|
||||||
jmespath>=1.0.1
|
|
||||||
jsonpatch>=1.32
|
|
||||||
pre-commit>=2.20.0
|
|
||||||
netaddr>=0.8.0
|
|
||||||
+16
-166
@@ -1,222 +1,72 @@
|
|||||||
#
|
ansible-compat==2.2.1
|
||||||
# This file is autogenerated by pip-compile with python 3.8
|
|
||||||
# To update, run:
|
|
||||||
#
|
|
||||||
# pip-compile requirements.in
|
|
||||||
#
|
|
||||||
ansible-compat==2.2.4
|
|
||||||
# via
|
|
||||||
# ansible-lint
|
|
||||||
# molecule
|
|
||||||
ansible-core==2.13.5
|
ansible-core==2.13.5
|
||||||
# via
|
ansible-lint==6.8.4
|
||||||
# -r requirements.in
|
|
||||||
# ansible-lint
|
|
||||||
ansible-lint==6.8.6
|
|
||||||
# via -r requirements.in
|
|
||||||
arrow==1.2.3
|
arrow==1.2.3
|
||||||
# via jinja2-time
|
|
||||||
attrs==22.1.0
|
attrs==22.1.0
|
||||||
# via jsonschema
|
|
||||||
binaryornot==0.4.4
|
binaryornot==0.4.4
|
||||||
# via cookiecutter
|
|
||||||
black==22.10.0
|
black==22.10.0
|
||||||
# via ansible-lint
|
|
||||||
bracex==2.3.post1
|
bracex==2.3.post1
|
||||||
# via wcmatch
|
|
||||||
cachetools==5.2.0
|
cachetools==5.2.0
|
||||||
# via google-auth
|
Cerberus==1.3.2
|
||||||
certifi==2022.9.24
|
certifi==2022.9.24
|
||||||
# via
|
|
||||||
# kubernetes
|
|
||||||
# requests
|
|
||||||
cffi==1.15.1
|
cffi==1.15.1
|
||||||
# via cryptography
|
|
||||||
cfgv==3.3.1
|
|
||||||
# via pre-commit
|
|
||||||
chardet==5.0.0
|
chardet==5.0.0
|
||||||
# via binaryornot
|
|
||||||
charset-normalizer==2.1.1
|
charset-normalizer==2.1.1
|
||||||
# via requests
|
|
||||||
click==8.1.3
|
click==8.1.3
|
||||||
# via
|
|
||||||
# black
|
|
||||||
# click-help-colors
|
|
||||||
# cookiecutter
|
|
||||||
# molecule
|
|
||||||
click-help-colors==0.9.1
|
click-help-colors==0.9.1
|
||||||
# via molecule
|
|
||||||
commonmark==0.9.1
|
commonmark==0.9.1
|
||||||
# via rich
|
|
||||||
cookiecutter==2.1.1
|
cookiecutter==2.1.1
|
||||||
# via molecule
|
cryptography==38.0.1
|
||||||
cryptography==38.0.3
|
|
||||||
# via ansible-core
|
|
||||||
distlib==0.3.6
|
|
||||||
# via virtualenv
|
|
||||||
distro==1.8.0
|
distro==1.8.0
|
||||||
# via selinux
|
|
||||||
enrich==1.2.7
|
enrich==1.2.7
|
||||||
# via molecule
|
|
||||||
filelock==3.8.0
|
filelock==3.8.0
|
||||||
# via
|
google-auth==2.13.0
|
||||||
# ansible-lint
|
|
||||||
# virtualenv
|
|
||||||
google-auth==2.14.0
|
|
||||||
# via kubernetes
|
|
||||||
identify==2.5.8
|
|
||||||
# via pre-commit
|
|
||||||
idna==3.4
|
idna==3.4
|
||||||
# via requests
|
|
||||||
importlib-resources==5.10.0
|
importlib-resources==5.10.0
|
||||||
# via jsonschema
|
Jinja2==3.1.2
|
||||||
jinja2==3.1.2
|
|
||||||
# via
|
|
||||||
# ansible-core
|
|
||||||
# cookiecutter
|
|
||||||
# jinja2-time
|
|
||||||
# molecule
|
|
||||||
# molecule-vagrant
|
|
||||||
jinja2-time==0.2.0
|
jinja2-time==0.2.0
|
||||||
# via cookiecutter
|
|
||||||
jmespath==1.0.1
|
jmespath==1.0.1
|
||||||
# via -r requirements.in
|
|
||||||
jsonpatch==1.32
|
jsonpatch==1.32
|
||||||
# via -r requirements.in
|
|
||||||
jsonpointer==2.3
|
jsonpointer==2.3
|
||||||
# via jsonpatch
|
jsonschema==4.16.0
|
||||||
jsonschema==4.17.0
|
kubernetes==24.2.0
|
||||||
# via
|
MarkupSafe==2.1.1
|
||||||
# ansible-compat
|
molecule==4.0.1
|
||||||
# ansible-lint
|
|
||||||
# molecule
|
|
||||||
kubernetes==25.3.0
|
|
||||||
# via -r requirements.in
|
|
||||||
markupsafe==2.1.1
|
|
||||||
# via jinja2
|
|
||||||
molecule==4.0.3
|
|
||||||
# via
|
|
||||||
# -r requirements.in
|
|
||||||
# molecule-vagrant
|
|
||||||
molecule-vagrant==1.0.0
|
molecule-vagrant==1.0.0
|
||||||
# via -r requirements.in
|
|
||||||
mypy-extensions==0.4.3
|
mypy-extensions==0.4.3
|
||||||
# via black
|
|
||||||
netaddr==0.8.0
|
netaddr==0.8.0
|
||||||
# via -r requirements.in
|
|
||||||
nodeenv==1.7.0
|
|
||||||
# via pre-commit
|
|
||||||
oauthlib==3.2.2
|
oauthlib==3.2.2
|
||||||
# via requests-oauthlib
|
|
||||||
packaging==21.3
|
packaging==21.3
|
||||||
# via
|
|
||||||
# ansible-compat
|
|
||||||
# ansible-core
|
|
||||||
# ansible-lint
|
|
||||||
# molecule
|
|
||||||
pathspec==0.10.1
|
pathspec==0.10.1
|
||||||
# via
|
|
||||||
# black
|
|
||||||
# yamllint
|
|
||||||
pkgutil-resolve-name==1.3.10
|
pkgutil-resolve-name==1.3.10
|
||||||
# via jsonschema
|
|
||||||
platformdirs==2.5.2
|
platformdirs==2.5.2
|
||||||
# via
|
|
||||||
# black
|
|
||||||
# virtualenv
|
|
||||||
pluggy==1.0.0
|
pluggy==1.0.0
|
||||||
# via molecule
|
|
||||||
pre-commit==2.20.0
|
pre-commit==2.20.0
|
||||||
# via -r requirements.in
|
|
||||||
pyasn1==0.4.8
|
pyasn1==0.4.8
|
||||||
# via
|
|
||||||
# pyasn1-modules
|
|
||||||
# rsa
|
|
||||||
pyasn1-modules==0.2.8
|
pyasn1-modules==0.2.8
|
||||||
# via google-auth
|
|
||||||
pycparser==2.21
|
pycparser==2.21
|
||||||
# via cffi
|
Pygments==2.13.0
|
||||||
pygments==2.13.0
|
|
||||||
# via rich
|
|
||||||
pyparsing==3.0.9
|
pyparsing==3.0.9
|
||||||
# via packaging
|
pyrsistent==0.18.1
|
||||||
pyrsistent==0.19.2
|
|
||||||
# via jsonschema
|
|
||||||
python-dateutil==2.8.2
|
python-dateutil==2.8.2
|
||||||
# via
|
|
||||||
# arrow
|
|
||||||
# kubernetes
|
|
||||||
python-slugify==6.1.2
|
python-slugify==6.1.2
|
||||||
# via cookiecutter
|
|
||||||
python-vagrant==1.0.0
|
python-vagrant==1.0.0
|
||||||
# via molecule-vagrant
|
PyYAML==6.0
|
||||||
pyyaml==6.0
|
|
||||||
# via
|
|
||||||
# -r requirements.in
|
|
||||||
# ansible-compat
|
|
||||||
# ansible-core
|
|
||||||
# ansible-lint
|
|
||||||
# cookiecutter
|
|
||||||
# kubernetes
|
|
||||||
# molecule
|
|
||||||
# molecule-vagrant
|
|
||||||
# pre-commit
|
|
||||||
# yamllint
|
|
||||||
requests==2.28.1
|
requests==2.28.1
|
||||||
# via
|
|
||||||
# cookiecutter
|
|
||||||
# kubernetes
|
|
||||||
# requests-oauthlib
|
|
||||||
requests-oauthlib==1.3.1
|
requests-oauthlib==1.3.1
|
||||||
# via kubernetes
|
|
||||||
resolvelib==0.8.1
|
resolvelib==0.8.1
|
||||||
# via ansible-core
|
|
||||||
rich==12.6.0
|
rich==12.6.0
|
||||||
# via
|
|
||||||
# ansible-lint
|
|
||||||
# enrich
|
|
||||||
# molecule
|
|
||||||
rsa==4.9
|
rsa==4.9
|
||||||
# via google-auth
|
ruamel.yaml==0.17.21
|
||||||
ruamel-yaml==0.17.21
|
ruamel.yaml.clib==0.2.7
|
||||||
# via ansible-lint
|
|
||||||
ruamel-yaml-clib==0.2.7
|
|
||||||
# via ruamel-yaml
|
|
||||||
selinux==0.2.1
|
selinux==0.2.1
|
||||||
# via molecule-vagrant
|
|
||||||
six==1.16.0
|
six==1.16.0
|
||||||
# via
|
|
||||||
# google-auth
|
|
||||||
# kubernetes
|
|
||||||
# python-dateutil
|
|
||||||
subprocess-tee==0.3.5
|
subprocess-tee==0.3.5
|
||||||
# via ansible-compat
|
|
||||||
text-unidecode==1.3
|
text-unidecode==1.3
|
||||||
# via python-slugify
|
|
||||||
toml==0.10.2
|
|
||||||
# via pre-commit
|
|
||||||
tomli==2.0.1
|
tomli==2.0.1
|
||||||
# via black
|
|
||||||
typing-extensions==4.4.0
|
typing-extensions==4.4.0
|
||||||
# via
|
|
||||||
# black
|
|
||||||
# rich
|
|
||||||
urllib3==1.26.12
|
urllib3==1.26.12
|
||||||
# via
|
|
||||||
# kubernetes
|
|
||||||
# requests
|
|
||||||
virtualenv==20.16.6
|
|
||||||
# via pre-commit
|
|
||||||
wcmatch==8.4.1
|
wcmatch==8.4.1
|
||||||
# via ansible-lint
|
websocket-client==1.4.1
|
||||||
websocket-client==1.4.2
|
|
||||||
# via kubernetes
|
|
||||||
yamllint==1.28.0
|
yamllint==1.28.0
|
||||||
# via
|
|
||||||
# -r requirements.in
|
|
||||||
# ansible-lint
|
|
||||||
zipp==3.10.0
|
zipp==3.10.0
|
||||||
# via importlib-resources
|
|
||||||
|
|
||||||
# The following packages are considered to be unsafe in a requirements file:
|
|
||||||
# setuptools
|
|
||||||
|
|||||||
Reference in New Issue
Block a user