Go to file
Marc Mattmüller 3027f8e284 playbooks: added configure docker network playbook first version
per default docker uses IP 172.17.0.0/16 which conflicts with the
test network at NetModule. Hence, we reconfigure it to
192.168.5.1/24

Signed-off-by: Marc Mattmüller <marc.mattmueller@netmodule.com>
2023-06-06 16:27:21 +02:00
collections playbooks,collections: renamed to .yml and added collection requirements 2023-05-02 13:14:31 +02:00
doc doc/ciWithinBitbucket: added link to keep in mind 2023-06-06 14:29:16 +02:00
inventory playbooks;inventory: added variable to production.yaml and added create-ssh-key playbook 2023-06-06 13:48:22 +02:00
jobs jobs/build: use default target when job is triggered by timer 2023-05-01 09:11:19 +02:00
playbooks/getting_started playbooks: added configure docker network playbook first version 2023-06-06 16:27:21 +02:00
.gitignore README,doc: added next-level-CI and NWL-CI documentation 2023-04-18 16:05:34 +02:00
README.md doc,ansible: documented setup of AWX, added structure for a first playbook 2023-05-02 12:40:20 +02:00
ansible.cfg ansible.cfg,os-rls.yml: added configuration for files and fixed var 2023-05-09 15:19:43 +02:00

README.md

NetModule Wireless Linux CI/CD Repository

This repository contains all necessary jobs for the CI/CD environment of the NetModule Wireless Linux (NWL).

Content

This repository holds the documentation for the CI environment and the jobs for the NWL as declarative pipelines (multibranch):

  • doc

    • the documentation of the work for the NWL CI environment
  • jobs

    • Jenkinsfile_Build

      • a pipeline building a NWL yocto target
    • Jenkinsfile_Common

      • a collection of commonly used functions, so that duplicated code can be avoided
  • inventory

    • Ansible inventory with all managed hosts/devices
  • playbooks

    • Ansible playbooks

Marginal Notes

This repository does NOT cover the setup of the Jenkins instance.

Building the Documentation

The documentation bases on sphinx and is written in reStructuredText format. To build the documenation you need to install sphinx first:

sudo apt install python3-sphinx
sudo pip3 install cloud-sptheme

Within the directory doc you can use make as follows:

# entering doc:
cd doc

# clean and build the documentation:
make clean
make html

# open the generated documentation in the browser:
xdg-open out/html/index.html

cd ..