A collection of Middleware modules and roles required for installing Cúram Social Program Management. SUITABLE FOR INTERNAL TEST AND DEVELOPMENT ONLY
galaxy.yml
should point to correct locationsCollections are a distribution format for Ansible content. You can use collections to package and distribute playbooks, roles, modules, and plugins.
You can publish and use collections through Ansible Galaxy <https://galaxy.ansible.com/merative>
.
Assumption for having collection as a repo, is it enable reuse of content as well, such repo can be easily used separately by just adding ansible.cfg
.
Collections follow a simple data structure. None of the directories are required unless you have specific content that belongs in one of them. A collection does require a galaxy.yml
file at the root level of the collection. This file contains all of the metadata that Galaxy
and other tools need in order to package, build and publish the collection::
collection/
├── docs/
├── galaxy.yml
├── plugins/
│ ├── modules/
│ │ └── module1.py
│ ├── inventory/
│ └── .../
├── README.md
├── roles/
│ ├── role1/
│ ├── role2/
│ └── .../
├── playbooks/
│ ├── files/
│ ├── vars/
│ ├── templates/
│ └── tasks/
└── tests/
If you have installed docker and VS Code on your machine, please add extension Dev Containers to VS Code, then you can use it to quickly setup your local development environment.
ARTIFACTORY_URL=[artifactory url]
ARTIFACTORY_REPO=[repo contains software installer]
ARTIFACTORY_TOKEN=[token of artifactory]
LOCAL_PATH=/workspaces/spm-middleware
After the dev container startup, you need to:
a. install python packages
pip install -r requirements.txt
b. copy ansible plugins for molecule test
mkdir -p /home/vscode/.ansible/plugins/
cp -r plugins/* /home/vscode/.ansible/plugins/
Then you can test if molecule works correctly:
molecule test -s websphere-v90-rockylinux8