Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ansible/team-devtools
Shared practices, workflows and decisions impacting Ansible devtools projects
https://github.com/ansible/team-devtools
ansible-devtools
Last synced: 27 days ago
JSON representation
Shared practices, workflows and decisions impacting Ansible devtools projects
- Host: GitHub
- URL: https://github.com/ansible/team-devtools
- Owner: ansible
- License: mit
- Created: 2021-09-05T08:50:52.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-09-23T16:47:28.000Z (about 1 month ago)
- Last Synced: 2024-09-27T08:22:47.592Z (about 1 month ago)
- Topics: ansible-devtools
- Language: Dockerfile
- Homepage: https://ansible.readthedocs.io/projects/team-devtools/
- Size: 312 KB
- Stars: 17
- Watchers: 6
- Forks: 12
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
- jimsghstars - ansible/team-devtools - Shared practices, workflows and decisions impacting Ansible devtools projects (Dockerfile)
README
---
hide:
- toc
---# devtools
This repository is used to share practices, workflows and decisions affecting projects maintained by Ansible DevTools team.
## Python DevTools project dependencies
It should be noted that our vscode extension would either depend on `ansible-dev-tools` python package or directly use the [execution environment container image](#container-image).
```mermaid
%%{init: {'theme':'neutral', 'themeVariables': { 'edgeLabelBackground': 'transparent'}}}%%
graph LRlint(ansible-lint):::pyclass
compat(ansible-compat):::pyclass
navigator(ansible-navigator):::pyclass
adt(ansible-dev-tools):::pyclass;
ade(ansible-dev-environment):::pyclass
creator(ansible-creator):::pyclass;
pytest-ansible(pytest-ansible):::pyclass
tox-ansible(tox-ansible):::pyclass
molecule(molecule):::pyclass
community.molecule(community.molecule):::collectionclass
builder(ansible-builder):::pyclass
runner(ansible-runner):::pyclass
image(community-ansible-dev-tools-image):::containerclass
sign(ansible-sign):::pyclassclassDef tsclass fill:#f90,stroke:#f90,color:#333
classDef containerclass fill:#060,stroke:#060,color:#fff
classDef collectionclass fill:#5bbdbf,stroke-width:0px
classDef pyclass fill:#09f5,stroke:#09f0,color:#fff
style external color:#0FF5,fill:#fff0,stroke:#0FF5
linkStyle default stroke:grey,text-decoration:nonesubgraph external
builder
runner
sign
endadt --> lint
adt --> navigator
adt --> molecule
adt --> ade
adt --> creator
adt --> signlint --> compat
compat -. test .-> community.molecule
molecule --> compat
molecule -. test .-> community.molecule:::collectionclassnavigator -.-> lint
navigator -.-> image
navigator --> runner
navigator -..-> builderadt --> ade;
adt --> creator
adt --> pytest-ansible
adt --> tox-ansible;ade --> builder;
click adt "https://github.com/ansible/ansible-dev-tools"
click ade "https://github.com/ansible/ansible-dev-environment"
click runner "https://github.com/ansible/ansible-runner"
click builder "https://github.com/ansible/ansible-builder"
click community.molecule "https://github.com/ansible-collections/community.molecule"
click molecule href "https://github.com/ansible/molecule"
click image href "#container-image"
click ws "https://github.com/ansible/ansible-workspace-env-reference-image"
click lint href "https://github.com/ansible/ansible-lint"
click compat href "https://github.com/ansible/ansible-compat"
click navigator href "https://github.com/ansible/ansible-navigator"
click creator href "https://github.com/ansible/ansible-creator"
click tox-ansible href "https://github.com/ansible/tox-ansible"
click pytest-ansible href "https://github.com/ansible/pytest-ansible"linkStyle 0,1,2,3,4,5,6,7,8,9 color:darkcyan
```
## TypeScript repositories
```mermaid
graph TB;classDef tsclass fill:#f90,stroke:#f90,color:#333;
classDef containerclass fill:#060,stroke:#060,color:#fff;
classDef thirdpartyclass fill:#9f6,stroke:#9f6,color:#333;ansible-backstage-plugins:::tsclass;
vscode-ansible:::tsclass -- external --> vscode-yaml;
vscode-yaml:::tsclass;click ansible-backstage-plugins "https://github.com/ansible/ansible-backstage-plugins"
click ansible-dev-environment "https://github.com/ansible/ansible-dev-environment"
click community.molecule "https://github.com/ansible-collections/community.molecule"
click creator-ee href "https://github.com/ansible/creator-ee"
click vscode-ansible href "https://github.com/ansible/vscode-ansible"
click vscode-yaml href "https://github.com/redhat-developer/vscode-yaml"
```## Container Image
`community-ansible-dev-tools-image` **execution environment** is a development
**container image** that contains most of the most important tools used in the
development and testing of collections. Still, while we bundle several
collections in it, you need to be warned that **we might remove any included
collection without notice** if that prevents us from
building the container.```mermaid
graph TB;ee("community-ansible-dev-tools-image
fedora-minimal")
adt(ansible-dev-tools)ee --> adt;
ee --> collections;subgraph collections
ansible.posix
ansible.windows
awx.awx
containers.podman
kubernetes.core
redhatinsights.insights
theforeman.foreman
endclick adt "https://github.com/ansible/ansible-dev-tools"
click ee "https://github.com/ansible/community-ansible-dev-tools-image"```
## Internal
```mermaid
graph TB;ws(ansible-workspace-env-reference-image):::containerclass
click ws "https://github.com/ansible/ansible-workspace-env-reference-image"```