netadopt 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- netadopt-0.1.0/LICENSE +202 -0
- netadopt-0.1.0/PKG-INFO +178 -0
- netadopt-0.1.0/README.md +149 -0
- netadopt-0.1.0/pyproject.toml +60 -0
- netadopt-0.1.0/pyproject.toml.orig +59 -0
- netadopt-0.1.0/src/netadopt/__init__.py +2 -0
- netadopt-0.1.0/src/netadopt/ansible.py +144 -0
- netadopt-0.1.0/src/netadopt/ansible_yaml.py +80 -0
- netadopt-0.1.0/src/netadopt/ansiblecfg.py +74 -0
- netadopt-0.1.0/src/netadopt/cli.py +574 -0
- netadopt-0.1.0/src/netadopt/files.py +108 -0
- netadopt-0.1.0/src/netadopt/inventory.py +128 -0
- netadopt-0.1.0/src/netadopt/inventoryfile.py +97 -0
- netadopt-0.1.0/src/netadopt/playbook.py +171 -0
- netadopt-0.1.0/src/netadopt/pools.py +116 -0
- netadopt-0.1.0/src/netadopt/reconstruct.py +242 -0
- netadopt-0.1.0/src/netadopt/repocode.py +112 -0
- netadopt-0.1.0/src/netadopt/varfiles.py +137 -0
- netadopt-0.1.0/src/netadopt/xr.py +301 -0
netadopt-0.1.0/LICENSE
ADDED
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
|
|
2
|
+
Apache License
|
|
3
|
+
Version 2.0, January 2004
|
|
4
|
+
http://www.apache.org/licenses/
|
|
5
|
+
|
|
6
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
7
|
+
|
|
8
|
+
1. Definitions.
|
|
9
|
+
|
|
10
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
11
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
12
|
+
|
|
13
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
14
|
+
the copyright owner that is granting the License.
|
|
15
|
+
|
|
16
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
17
|
+
other entities that control, are controlled by, or are under common
|
|
18
|
+
control with that entity. For the purposes of this definition,
|
|
19
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
20
|
+
direction or management of such entity, whether by contract or
|
|
21
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
22
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
23
|
+
|
|
24
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
25
|
+
exercising permissions granted by this License.
|
|
26
|
+
|
|
27
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
28
|
+
including but not limited to software source code, documentation
|
|
29
|
+
source, and configuration files.
|
|
30
|
+
|
|
31
|
+
"Object" form shall mean any form resulting from mechanical
|
|
32
|
+
transformation or translation of a Source form, including but
|
|
33
|
+
not limited to compiled object code, generated documentation,
|
|
34
|
+
and conversions to other media types.
|
|
35
|
+
|
|
36
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
37
|
+
Object form, made available under the License, as indicated by a
|
|
38
|
+
copyright notice that is included in or attached to the work
|
|
39
|
+
(an example is provided in the Appendix below).
|
|
40
|
+
|
|
41
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
42
|
+
form, that is based on (or derived from) the Work and for which the
|
|
43
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
44
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
45
|
+
of this License, Derivative Works shall not include works that remain
|
|
46
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
47
|
+
the Work and Derivative Works thereof.
|
|
48
|
+
|
|
49
|
+
"Contribution" shall mean any work of authorship, including
|
|
50
|
+
the original version of the Work and any modifications or additions
|
|
51
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
52
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
53
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
54
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
55
|
+
means any form of electronic, verbal, or written communication sent
|
|
56
|
+
to the Licensor or its representatives, including but not limited to
|
|
57
|
+
communication on electronic mailing lists, source code control systems,
|
|
58
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
59
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
60
|
+
excluding communication that is conspicuously marked or otherwise
|
|
61
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
62
|
+
|
|
63
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
64
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
65
|
+
subsequently incorporated within the Work.
|
|
66
|
+
|
|
67
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
68
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
69
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
70
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
71
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
72
|
+
Work and such Derivative Works in Source or Object form.
|
|
73
|
+
|
|
74
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
75
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
76
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
77
|
+
(except as stated in this section) patent license to make, have made,
|
|
78
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
79
|
+
where such license applies only to those patent claims licensable
|
|
80
|
+
by such Contributor that are necessarily infringed by their
|
|
81
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
82
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
83
|
+
institute patent litigation against any entity (including a
|
|
84
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
85
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
86
|
+
or contributory patent infringement, then any patent licenses
|
|
87
|
+
granted to You under this License for that Work shall terminate
|
|
88
|
+
as of the date such litigation is filed.
|
|
89
|
+
|
|
90
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
91
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
92
|
+
modifications, and in Source or Object form, provided that You
|
|
93
|
+
meet the following conditions:
|
|
94
|
+
|
|
95
|
+
(a) You must give any other recipients of the Work or
|
|
96
|
+
Derivative Works a copy of this License; and
|
|
97
|
+
|
|
98
|
+
(b) You must cause any modified files to carry prominent notices
|
|
99
|
+
stating that You changed the files; and
|
|
100
|
+
|
|
101
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
102
|
+
that You distribute, all copyright, patent, trademark, and
|
|
103
|
+
attribution notices from the Source form of the Work,
|
|
104
|
+
excluding those notices that do not pertain to any part of
|
|
105
|
+
the Derivative Works; and
|
|
106
|
+
|
|
107
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
108
|
+
distribution, then any Derivative Works that You distribute must
|
|
109
|
+
include a readable copy of the attribution notices contained
|
|
110
|
+
within such NOTICE file, excluding those notices that do not
|
|
111
|
+
pertain to any part of the Derivative Works, in at least one
|
|
112
|
+
of the following places: within a NOTICE text file distributed
|
|
113
|
+
as part of the Derivative Works; within the Source form or
|
|
114
|
+
documentation, if provided along with the Derivative Works; or,
|
|
115
|
+
within a display generated by the Derivative Works, if and
|
|
116
|
+
wherever such third-party notices normally appear. The contents
|
|
117
|
+
of the NOTICE file are for informational purposes only and
|
|
118
|
+
do not modify the License. You may add Your own attribution
|
|
119
|
+
notices within Derivative Works that You distribute, alongside
|
|
120
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
121
|
+
that such additional attribution notices cannot be construed
|
|
122
|
+
as modifying the License.
|
|
123
|
+
|
|
124
|
+
You may add Your own copyright statement to Your modifications and
|
|
125
|
+
may provide additional or different license terms and conditions
|
|
126
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
127
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
128
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
129
|
+
the conditions stated in this License.
|
|
130
|
+
|
|
131
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
132
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
133
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
134
|
+
this License, without any additional terms or conditions.
|
|
135
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
136
|
+
the terms of any separate license agreement you may have executed
|
|
137
|
+
with Licensor regarding such Contributions.
|
|
138
|
+
|
|
139
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
140
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
141
|
+
except as required for reasonable and customary use in describing the
|
|
142
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
143
|
+
|
|
144
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
145
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
146
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
148
|
+
implied, including, without limitation, any warranties or conditions
|
|
149
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
150
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
151
|
+
appropriateness of using or redistributing the Work and assume any
|
|
152
|
+
risks associated with Your exercise of permissions under this License.
|
|
153
|
+
|
|
154
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
155
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
156
|
+
unless required by applicable law (such as deliberate and grossly
|
|
157
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
158
|
+
liable to You for damages, including any direct, indirect, special,
|
|
159
|
+
incidental, or consequential damages of any character arising as a
|
|
160
|
+
result of this License or out of the use or inability to use the
|
|
161
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
162
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
163
|
+
other commercial damages or losses), even if such Contributor
|
|
164
|
+
has been advised of the possibility of such damages.
|
|
165
|
+
|
|
166
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
167
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
168
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
169
|
+
or other liability obligations and/or rights consistent with this
|
|
170
|
+
License. However, in accepting such obligations, You may act only
|
|
171
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
172
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
173
|
+
defend, and hold each Contributor harmless for any liability
|
|
174
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
175
|
+
of your accepting any such warranty or additional liability.
|
|
176
|
+
|
|
177
|
+
END OF TERMS AND CONDITIONS
|
|
178
|
+
|
|
179
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
180
|
+
|
|
181
|
+
To apply the Apache License to your work, attach the following
|
|
182
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
183
|
+
replaced with your own identifying information. (Don't include
|
|
184
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
185
|
+
comment syntax for the file format. We also recommend that a
|
|
186
|
+
file or class name and description of purpose be included on the
|
|
187
|
+
same "printed page" as the copyright notice for easier
|
|
188
|
+
identification within third-party archives.
|
|
189
|
+
|
|
190
|
+
Copyright 2026-present Michal Bakalarski and Netclab Contributors
|
|
191
|
+
|
|
192
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
193
|
+
you may not use this file except in compliance with the License.
|
|
194
|
+
You may obtain a copy of the License at
|
|
195
|
+
|
|
196
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
197
|
+
|
|
198
|
+
Unless required by applicable law or agreed to in writing, software
|
|
199
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
200
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
201
|
+
See the License for the specific language governing permissions and
|
|
202
|
+
limitations under the License.
|
netadopt-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,178 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: netadopt
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Read a network-automation repository and adopt its model into Kubernetes
|
|
5
|
+
Keywords: arista,avd,ansible,kubernetes,network automation
|
|
6
|
+
Author: mbakalarski
|
|
7
|
+
Author-email: mbakalarski <64490638+mbakalarski@users.noreply.github.com>
|
|
8
|
+
License-Expression: Apache-2.0
|
|
9
|
+
License-File: LICENSE
|
|
10
|
+
Classifier: Development Status :: 3 - Alpha
|
|
11
|
+
Classifier: Environment :: Console
|
|
12
|
+
Classifier: Intended Audience :: System Administrators
|
|
13
|
+
Classifier: Intended Audience :: Telecommunications Industry
|
|
14
|
+
Classifier: Operating System :: POSIX
|
|
15
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
17
|
+
Classifier: Topic :: System :: Networking
|
|
18
|
+
Classifier: Topic :: System :: Systems Administration
|
|
19
|
+
Requires-Dist: pyyaml>=6.0.3
|
|
20
|
+
Requires-Dist: rich>=15.0.0
|
|
21
|
+
Requires-Dist: typer>=0.27.2
|
|
22
|
+
Requires-Dist: ansible-core ; extra == 'ansible'
|
|
23
|
+
Requires-Python: >=3.12
|
|
24
|
+
Project-URL: Repository, https://github.com/netclab/netadopt
|
|
25
|
+
Project-URL: Issues, https://github.com/netclab/netadopt/issues
|
|
26
|
+
Project-URL: Releases, https://github.com/netclab/netadopt/releases
|
|
27
|
+
Provides-Extra: ansible
|
|
28
|
+
Description-Content-Type: text/markdown
|
|
29
|
+
|
|
30
|
+
# netadopt
|
|
31
|
+
|
|
32
|
+
Reads a network-automation repository, says what is in it, and writes the
|
|
33
|
+
repository's model as Kubernetes resources. It reads *repositories*, never devices.
|
|
34
|
+
|
|
35
|
+
Arista AVD first: netadopt uses AVD's own data model - no new schema, no translation.
|
|
36
|
+
The objects carry the repository's inventory, play and vars exactly as written.
|
|
37
|
+
|
|
38
|
+
## Installing
|
|
39
|
+
|
|
40
|
+
With [uv](https://docs.astral.sh/uv/):
|
|
41
|
+
|
|
42
|
+
```
|
|
43
|
+
uv tool install netadopt
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
or, to run it once without installing:
|
|
47
|
+
|
|
48
|
+
```
|
|
49
|
+
uvx netadopt avd report ./repo --playbook build.yml
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
netadopt uses the Ansible already on `PATH`. On a machine without one, the `ansible`
|
|
53
|
+
extra brings ansible-core along:
|
|
54
|
+
|
|
55
|
+
```
|
|
56
|
+
uv tool install "netadopt[ansible]"
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
```
|
|
60
|
+
uvx "netadopt[ansible]" avd report ./repo --playbook build.yml
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
## Reading an AVD repository
|
|
64
|
+
|
|
65
|
+
Run on AVD's `single-dc-l3ls` example:
|
|
66
|
+
|
|
67
|
+
```
|
|
68
|
+
$ netadopt avd report single-dc-l3ls --playbook build.yml
|
|
69
|
+
single-dc-l3ls
|
|
70
|
+
|
|
71
|
+
Ansible ansible-core 2.21.3 ~/.local/bin/ansible-playbook
|
|
72
|
+
Config ansible.cfg
|
|
73
|
+
Inventory named by ansible.cfg 8 hosts, 8 groups
|
|
74
|
+
Variables 8 files group_vars 8, host_vars 0
|
|
75
|
+
Playbook build.yml 1 play
|
|
76
|
+
|
|
77
|
+
# Play Hosts Roles
|
|
78
|
+
─────────────────────────────────────────────────────────────────────────────────────
|
|
79
|
+
0 Build Configurations and Documentation FABRIC eos_designs, eos_cli_config_gen
|
|
80
|
+
|
|
81
|
+
Carried
|
|
82
|
+
Fabric single-dc-l3ls, from play 0
|
|
83
|
+
FabricInputs 7
|
|
84
|
+
|
|
85
|
+
Warnings
|
|
86
|
+
ansible_password plain text in FabricInput single-dc-l3ls-fabric, carried as the repository has it
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
- **Carried** is what `emit` writes.
|
|
90
|
+
- **Not carried** is what it leaves behind, each with the reason. On AVD's
|
|
91
|
+
`cv-pathfinder` example, the vault password:
|
|
92
|
+
|
|
93
|
+
```
|
|
94
|
+
Not carried
|
|
95
|
+
.vault the vault password; create its Secret:
|
|
96
|
+
kubectl create secret generic cv-pathfinder-vault --from-file=password=cv-pathfinder/.vault
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
- **Warnings** are carried, but worth knowing: a password in plain text, a vars file
|
|
100
|
+
for a host the inventory does not have.
|
|
101
|
+
|
|
102
|
+
Exit codes: `0` when the model is carried whole, warnings or not; `2` when a part of
|
|
103
|
+
it is not carried or something did not read; `1` when there is no Ansible at all.
|
|
104
|
+
|
|
105
|
+
## Writing Kubernetes manifests
|
|
106
|
+
|
|
107
|
+
```
|
|
108
|
+
$ netadopt avd emit single-dc-l3ls --playbook build.yml > single-dc-l3ls.yaml
|
|
109
|
+
```
|
|
110
|
+
|
|
111
|
+
One `Fabric` - the play, the inventory and `ansible.cfg`, as written - and one
|
|
112
|
+
`FabricInput` per group or host that carries vars:
|
|
113
|
+
|
|
114
|
+
```yaml
|
|
115
|
+
apiVersion: avd.netclab.dev/v1alpha1
|
|
116
|
+
kind: FabricInput
|
|
117
|
+
metadata:
|
|
118
|
+
name: single-dc-l3ls-dc1
|
|
119
|
+
labels:
|
|
120
|
+
avd.netclab.dev/fabric: single-dc-l3ls
|
|
121
|
+
spec:
|
|
122
|
+
appliesTo:
|
|
123
|
+
group: DC1
|
|
124
|
+
beside: inventory
|
|
125
|
+
design:
|
|
126
|
+
mgmt_gateway: 172.16.1.1
|
|
127
|
+
management_eapi:
|
|
128
|
+
enabled: true
|
|
129
|
+
```
|
|
130
|
+
|
|
131
|
+
Group and host names stay the repository's; only `metadata.name` is spelled for
|
|
132
|
+
Kubernetes. The YAML goes to stdout and everything said about it to stderr.
|
|
133
|
+
|
|
134
|
+
Apply them server-side:
|
|
135
|
+
|
|
136
|
+
```
|
|
137
|
+
kubectl apply --server-side -f single-dc-l3ls.yaml
|
|
138
|
+
```
|
|
139
|
+
|
|
140
|
+
A plain `kubectl apply` drops every `key: null` in a map, and AVD reads a null
|
|
141
|
+
differently from a missing key.
|
|
142
|
+
|
|
143
|
+
## Before running it on someone else's repository
|
|
144
|
+
|
|
145
|
+
`report` asks Ansible about the inventory, in the repository. Ansible then runs
|
|
146
|
+
whatever the repository gives it: an executable inventory, and the plugin directories
|
|
147
|
+
named in its `ansible.cfg`. `report` names both under Warnings - after running them.
|
|
148
|
+
|
|
149
|
+
`emit` runs no Ansible; it only reads files. Neither command renders Jinja, so a
|
|
150
|
+
`lookup('pipe', ...)` in the vars runs only where the design is rendered.
|
|
151
|
+
|
|
152
|
+
Neither connects to a device.
|
|
153
|
+
|
|
154
|
+
## Tested on AVD's own repositories
|
|
155
|
+
|
|
156
|
+
Each release is tested on the examples and test scenarios that ship with AVD, at the
|
|
157
|
+
release `netadopt --version` names. Every one that can be carried is emitted, rebuilt
|
|
158
|
+
from the objects, and resolved by Ansible on both sides, and every host must end up
|
|
159
|
+
with the same variables.
|
|
160
|
+
|
|
161
|
+
## Limits
|
|
162
|
+
|
|
163
|
+
- The inventory must be a YAML file. An executable or dynamic inventory is not
|
|
164
|
+
carried.
|
|
165
|
+
- A code directory named in `ansible.cfg`, such as `vars_plugins = plugins/vars`, is not
|
|
166
|
+
carried.
|
|
167
|
+
- One play per `Fabric`. Another play of the same playbook is another run:
|
|
168
|
+
`--play N --name NAME`.
|
|
169
|
+
|
|
170
|
+
## Where this is going
|
|
171
|
+
|
|
172
|
+
- The same proof on your own repository, not only a report.
|
|
173
|
+
- A second ecosystem after AVD, under a subcommand of its own, with its model kept as
|
|
174
|
+
its vendor writes it.
|
|
175
|
+
|
|
176
|
+
## License
|
|
177
|
+
|
|
178
|
+
[Apache-2.0](LICENSE)
|
netadopt-0.1.0/README.md
ADDED
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
# netadopt
|
|
2
|
+
|
|
3
|
+
Reads a network-automation repository, says what is in it, and writes the
|
|
4
|
+
repository's model as Kubernetes resources. It reads *repositories*, never devices.
|
|
5
|
+
|
|
6
|
+
Arista AVD first: netadopt uses AVD's own data model - no new schema, no translation.
|
|
7
|
+
The objects carry the repository's inventory, play and vars exactly as written.
|
|
8
|
+
|
|
9
|
+
## Installing
|
|
10
|
+
|
|
11
|
+
With [uv](https://docs.astral.sh/uv/):
|
|
12
|
+
|
|
13
|
+
```
|
|
14
|
+
uv tool install netadopt
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
or, to run it once without installing:
|
|
18
|
+
|
|
19
|
+
```
|
|
20
|
+
uvx netadopt avd report ./repo --playbook build.yml
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
netadopt uses the Ansible already on `PATH`. On a machine without one, the `ansible`
|
|
24
|
+
extra brings ansible-core along:
|
|
25
|
+
|
|
26
|
+
```
|
|
27
|
+
uv tool install "netadopt[ansible]"
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
```
|
|
31
|
+
uvx "netadopt[ansible]" avd report ./repo --playbook build.yml
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
## Reading an AVD repository
|
|
35
|
+
|
|
36
|
+
Run on AVD's `single-dc-l3ls` example:
|
|
37
|
+
|
|
38
|
+
```
|
|
39
|
+
$ netadopt avd report single-dc-l3ls --playbook build.yml
|
|
40
|
+
single-dc-l3ls
|
|
41
|
+
|
|
42
|
+
Ansible ansible-core 2.21.3 ~/.local/bin/ansible-playbook
|
|
43
|
+
Config ansible.cfg
|
|
44
|
+
Inventory named by ansible.cfg 8 hosts, 8 groups
|
|
45
|
+
Variables 8 files group_vars 8, host_vars 0
|
|
46
|
+
Playbook build.yml 1 play
|
|
47
|
+
|
|
48
|
+
# Play Hosts Roles
|
|
49
|
+
─────────────────────────────────────────────────────────────────────────────────────
|
|
50
|
+
0 Build Configurations and Documentation FABRIC eos_designs, eos_cli_config_gen
|
|
51
|
+
|
|
52
|
+
Carried
|
|
53
|
+
Fabric single-dc-l3ls, from play 0
|
|
54
|
+
FabricInputs 7
|
|
55
|
+
|
|
56
|
+
Warnings
|
|
57
|
+
ansible_password plain text in FabricInput single-dc-l3ls-fabric, carried as the repository has it
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
- **Carried** is what `emit` writes.
|
|
61
|
+
- **Not carried** is what it leaves behind, each with the reason. On AVD's
|
|
62
|
+
`cv-pathfinder` example, the vault password:
|
|
63
|
+
|
|
64
|
+
```
|
|
65
|
+
Not carried
|
|
66
|
+
.vault the vault password; create its Secret:
|
|
67
|
+
kubectl create secret generic cv-pathfinder-vault --from-file=password=cv-pathfinder/.vault
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
- **Warnings** are carried, but worth knowing: a password in plain text, a vars file
|
|
71
|
+
for a host the inventory does not have.
|
|
72
|
+
|
|
73
|
+
Exit codes: `0` when the model is carried whole, warnings or not; `2` when a part of
|
|
74
|
+
it is not carried or something did not read; `1` when there is no Ansible at all.
|
|
75
|
+
|
|
76
|
+
## Writing Kubernetes manifests
|
|
77
|
+
|
|
78
|
+
```
|
|
79
|
+
$ netadopt avd emit single-dc-l3ls --playbook build.yml > single-dc-l3ls.yaml
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
One `Fabric` - the play, the inventory and `ansible.cfg`, as written - and one
|
|
83
|
+
`FabricInput` per group or host that carries vars:
|
|
84
|
+
|
|
85
|
+
```yaml
|
|
86
|
+
apiVersion: avd.netclab.dev/v1alpha1
|
|
87
|
+
kind: FabricInput
|
|
88
|
+
metadata:
|
|
89
|
+
name: single-dc-l3ls-dc1
|
|
90
|
+
labels:
|
|
91
|
+
avd.netclab.dev/fabric: single-dc-l3ls
|
|
92
|
+
spec:
|
|
93
|
+
appliesTo:
|
|
94
|
+
group: DC1
|
|
95
|
+
beside: inventory
|
|
96
|
+
design:
|
|
97
|
+
mgmt_gateway: 172.16.1.1
|
|
98
|
+
management_eapi:
|
|
99
|
+
enabled: true
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
Group and host names stay the repository's; only `metadata.name` is spelled for
|
|
103
|
+
Kubernetes. The YAML goes to stdout and everything said about it to stderr.
|
|
104
|
+
|
|
105
|
+
Apply them server-side:
|
|
106
|
+
|
|
107
|
+
```
|
|
108
|
+
kubectl apply --server-side -f single-dc-l3ls.yaml
|
|
109
|
+
```
|
|
110
|
+
|
|
111
|
+
A plain `kubectl apply` drops every `key: null` in a map, and AVD reads a null
|
|
112
|
+
differently from a missing key.
|
|
113
|
+
|
|
114
|
+
## Before running it on someone else's repository
|
|
115
|
+
|
|
116
|
+
`report` asks Ansible about the inventory, in the repository. Ansible then runs
|
|
117
|
+
whatever the repository gives it: an executable inventory, and the plugin directories
|
|
118
|
+
named in its `ansible.cfg`. `report` names both under Warnings - after running them.
|
|
119
|
+
|
|
120
|
+
`emit` runs no Ansible; it only reads files. Neither command renders Jinja, so a
|
|
121
|
+
`lookup('pipe', ...)` in the vars runs only where the design is rendered.
|
|
122
|
+
|
|
123
|
+
Neither connects to a device.
|
|
124
|
+
|
|
125
|
+
## Tested on AVD's own repositories
|
|
126
|
+
|
|
127
|
+
Each release is tested on the examples and test scenarios that ship with AVD, at the
|
|
128
|
+
release `netadopt --version` names. Every one that can be carried is emitted, rebuilt
|
|
129
|
+
from the objects, and resolved by Ansible on both sides, and every host must end up
|
|
130
|
+
with the same variables.
|
|
131
|
+
|
|
132
|
+
## Limits
|
|
133
|
+
|
|
134
|
+
- The inventory must be a YAML file. An executable or dynamic inventory is not
|
|
135
|
+
carried.
|
|
136
|
+
- A code directory named in `ansible.cfg`, such as `vars_plugins = plugins/vars`, is not
|
|
137
|
+
carried.
|
|
138
|
+
- One play per `Fabric`. Another play of the same playbook is another run:
|
|
139
|
+
`--play N --name NAME`.
|
|
140
|
+
|
|
141
|
+
## Where this is going
|
|
142
|
+
|
|
143
|
+
- The same proof on your own repository, not only a report.
|
|
144
|
+
- A second ecosystem after AVD, under a subcommand of its own, with its model kept as
|
|
145
|
+
its vendor writes it.
|
|
146
|
+
|
|
147
|
+
## License
|
|
148
|
+
|
|
149
|
+
[Apache-2.0](LICENSE)
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "netadopt"
|
|
3
|
+
version = "0.1.0"
|
|
4
|
+
description = "Read a network-automation repository and adopt its model into Kubernetes"
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
license = "Apache-2.0"
|
|
7
|
+
license-files = ["LICENSE"]
|
|
8
|
+
keywords = [
|
|
9
|
+
"arista",
|
|
10
|
+
"avd",
|
|
11
|
+
"ansible",
|
|
12
|
+
"kubernetes",
|
|
13
|
+
"network automation",
|
|
14
|
+
]
|
|
15
|
+
classifiers = [
|
|
16
|
+
"Development Status :: 3 - Alpha",
|
|
17
|
+
"Environment :: Console",
|
|
18
|
+
"Intended Audience :: System Administrators",
|
|
19
|
+
"Intended Audience :: Telecommunications Industry",
|
|
20
|
+
"Operating System :: POSIX",
|
|
21
|
+
"Programming Language :: Python :: 3 :: Only",
|
|
22
|
+
"Programming Language :: Python :: 3.12",
|
|
23
|
+
"Topic :: System :: Networking",
|
|
24
|
+
"Topic :: System :: Systems Administration",
|
|
25
|
+
]
|
|
26
|
+
requires-python = ">=3.12"
|
|
27
|
+
dependencies = [
|
|
28
|
+
"pyyaml>=6.0.3",
|
|
29
|
+
"rich>=15.0.0",
|
|
30
|
+
"typer>=0.27.2",
|
|
31
|
+
]
|
|
32
|
+
|
|
33
|
+
[[project.authors]]
|
|
34
|
+
name = "mbakalarski"
|
|
35
|
+
email = "64490638+mbakalarski@users.noreply.github.com"
|
|
36
|
+
|
|
37
|
+
[project.optional-dependencies]
|
|
38
|
+
ansible = ["ansible-core"]
|
|
39
|
+
|
|
40
|
+
[project.urls]
|
|
41
|
+
Repository = "https://github.com/netclab/netadopt"
|
|
42
|
+
Issues = "https://github.com/netclab/netadopt/issues"
|
|
43
|
+
Releases = "https://github.com/netclab/netadopt/releases"
|
|
44
|
+
|
|
45
|
+
[project.scripts]
|
|
46
|
+
netadopt = "netadopt.cli:main"
|
|
47
|
+
|
|
48
|
+
[build-system]
|
|
49
|
+
requires = ["uv_build>=0.12.10,<0.13.0"]
|
|
50
|
+
build-backend = "uv_build"
|
|
51
|
+
|
|
52
|
+
[dependency-groups]
|
|
53
|
+
dev = [
|
|
54
|
+
"netadopt[ansible]",
|
|
55
|
+
"pyavd==6.4.0",
|
|
56
|
+
"pytest>=9.1.1",
|
|
57
|
+
]
|
|
58
|
+
|
|
59
|
+
[tool.pytest.ini_options]
|
|
60
|
+
testpaths = ["tests"]
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "netadopt"
|
|
3
|
+
version = "0.1.0"
|
|
4
|
+
description = "Read a network-automation repository and adopt its model into Kubernetes"
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
license = "Apache-2.0"
|
|
7
|
+
license-files = ["LICENSE"]
|
|
8
|
+
authors = [
|
|
9
|
+
{ name = "mbakalarski", email = "64490638+mbakalarski@users.noreply.github.com" }
|
|
10
|
+
]
|
|
11
|
+
keywords = ["arista", "avd", "ansible", "kubernetes", "network automation"]
|
|
12
|
+
classifiers = [
|
|
13
|
+
"Development Status :: 3 - Alpha",
|
|
14
|
+
"Environment :: Console",
|
|
15
|
+
"Intended Audience :: System Administrators",
|
|
16
|
+
"Intended Audience :: Telecommunications Industry",
|
|
17
|
+
"Operating System :: POSIX",
|
|
18
|
+
"Programming Language :: Python :: 3 :: Only",
|
|
19
|
+
"Programming Language :: Python :: 3.12",
|
|
20
|
+
"Topic :: System :: Networking",
|
|
21
|
+
"Topic :: System :: Systems Administration",
|
|
22
|
+
]
|
|
23
|
+
requires-python = ">=3.12"
|
|
24
|
+
dependencies = [
|
|
25
|
+
"pyyaml>=6.0.3",
|
|
26
|
+
"rich>=15.0.0",
|
|
27
|
+
"typer>=0.27.2",
|
|
28
|
+
]
|
|
29
|
+
|
|
30
|
+
[project.optional-dependencies]
|
|
31
|
+
# For a machine with no pipeline of its own: `uvx "netadopt[ansible]" ./repo`.
|
|
32
|
+
# PATH is still preferred at run time -- see netadopt.ansible.resolve_ansible.
|
|
33
|
+
#
|
|
34
|
+
# Unbounded on purpose. Each ecosystem states its own ansible-core window in its
|
|
35
|
+
# collection's meta/runtime.yml and moves it over time; that number is read from the
|
|
36
|
+
# repository at run time and reported, never frozen here.
|
|
37
|
+
ansible = ["ansible-core"]
|
|
38
|
+
|
|
39
|
+
[project.urls]
|
|
40
|
+
Repository = "https://github.com/netclab/netadopt"
|
|
41
|
+
Issues = "https://github.com/netclab/netadopt/issues"
|
|
42
|
+
Releases = "https://github.com/netclab/netadopt/releases"
|
|
43
|
+
|
|
44
|
+
[project.scripts]
|
|
45
|
+
netadopt = "netadopt.cli:main"
|
|
46
|
+
|
|
47
|
+
[build-system]
|
|
48
|
+
requires = ["uv_build>=0.12.10,<0.13.0"]
|
|
49
|
+
build-backend = "uv_build"
|
|
50
|
+
|
|
51
|
+
[dependency-groups]
|
|
52
|
+
dev = [
|
|
53
|
+
"netadopt[ansible]",
|
|
54
|
+
"pyavd==6.4.0",
|
|
55
|
+
"pytest>=9.1.1",
|
|
56
|
+
]
|
|
57
|
+
|
|
58
|
+
[tool.pytest.ini_options]
|
|
59
|
+
testpaths = ["tests"]
|