Go to file
Marc Mattmüller f691f5206c playbooks;inventory: added variable to production.yaml and added create-ssh-key playbook
The production inventory got a new variable called host_name which we use in the
newly added playbook creating an SSH key.
The playbook holds the no_log tag for keeping the execution parts more secure.

Signed-off-by: Marc Mattmüller <marc.mattmueller@netmodule.com>
2023-06-06 13:48:22 +02:00
collections playbooks,collections: renamed to .yml and added collection requirements 2023-05-02 13:14:31 +02:00
doc doc: added the installed Jenkins plugins on the NWL instance 2023-06-05 13:23:50 +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;inventory: added variable to production.yaml and added create-ssh-key playbook 2023-06-06 13:48:22 +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 ..