-
Notifications
You must be signed in to change notification settings - Fork 0
/
execution-environment.yml
80 lines (78 loc) · 2.35 KB
/
execution-environment.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
---
version: 3
images:
base_image:
name: quay.io/centos/centos:stream9
dependencies:
ansible_core:
package_pip: ansible-core<2.17
ansible_runner:
package_pip: ansible-runner
galaxy: |
---
roles:
- name: batfish.base
collections:
- name: awx.awx
- name: openstack.cloud
- name: community.vmware
- name: ansible.posix
- name: ansible.windows
- name: community.general
- name: arista.avd
- name: arista.cvp
- name: arista.eos
- name: ansible.netcommon
- name: fortinet.fortios
- name: fortinet.fortimanager
- name: cisco.nxos
- name: cisco.iosxr
- name: cisco.ios
- name: ciena.waveserverai
- name: networktocode.nautobot
- name: opengear.om
system: |
bind-utils
python: |
certifi
urllib3
pybatfish
pytest
pynautobot
netutils
paramiko>=2.7.1
# Begin avd.sh requirements
netaddr>=0.7.19
Jinja2>=3.0.0
treelib>=1.5.5
cvprac>=1.3.1
jsonschema>=4.5.1,<4.18
requests>=2.27.0
PyYAML>=6.0.0
md-toc>=7.1.0
deepmerge>=1.1.0
cryptography>=38.0.4
# No anta requirement until the eos_validate_state integration is out of preview.
# anta>=1.0.0
additional_build_steps:
# prepend_galaxy:
prepend_base:
- RUN dnf update -y &&
dnf install python3.11 python3.11-pip python3.11-devel -y &&
dnf upgrade -y &&
dnf clean all &&
update-alternatives --install /usr/bin/python python3 /usr/bin/python3.11 20 &&
update-alternatives --auto python3 &&
unlink /usr/bin/python3 &&
ln -s /usr/bin/python3.11 /usr/bin/python3 &&
rm -rf /var/cache/dnf &&
curl -LO https://github.com/justmiles/go-markdown2confluence/releases/download/v3.4.6/go-markdown2confluence_3.4.6_linux_x86_64.tar.gz &&
tar -xzvf go-markdown2confluence_3.4.6_linux_x86_64.tar.gz -C /usr/local/bin/ markdown2confluence &&
python3 -m pip install --upgrade pip
# append_base:
# prepend_builder:
# append_builder:
prepend_final:
- RUN dnf install -y --allowerasing curl # This is only for stream9 builds
append_final:
- COPY _build/ports.py /usr/share/ansible/collections/ansible_collections/opengear/om/plugins/module_utils/network/om/argspec/ports # https://github.com/opengear/opengear.om/issues/8