
This commit introduces the prototype for the app-distributed-cloud All dcmanager services are being containerized, and the app will utilize Keystone, certmanager, and rabbitmq from the platform. The prototype is in its initial phase, and DC functionalities/services have not yet been thoroughly tested. In this first phase, the subcloud add command is functional. This commit includes the dcmanager and dc-vault helm charts, and a a structure of dcorch, that will be added in a following commit. Before testing the app, the platform must be configured. Refer to the README file for details. Test Plan: PASS: Execute a subcloud add successfully. Story: 2011312 Task: 51841 Change-Id: Ifa6dbbb39d5bdd48eedd06c732d24d26a48f6ae8 Co-Authored-By: Matt Peters <matt.peters@windriver.com> Co-Authored-By: Enzo Candotti <enzo.candotti@windriver.com> Co-Authored-By: Yuxing Jiang <yuxing.jiang@windriver.com> Signed-off-by: Hugo Brito <hugo.brito@windriver.com>
47 lines
1.4 KiB
INI
47 lines
1.4 KiB
INI
[tox]
|
|
envlist = linters
|
|
minversion = 4.0
|
|
skipsdist = True
|
|
sitepackages=False
|
|
[testenv]
|
|
basepython = python3
|
|
usedevelop = True
|
|
install_command = pip install -v -v -v \
|
|
-c{env:UPPER_CONSTRAINTS_FILE:https://opendev.org/starlingx/root/raw/branch/master/build-tools/requirements/debian/upper-constraints.txt} \
|
|
{opts} {packages}
|
|
setenv =
|
|
VIRTUAL_ENV={envdir}
|
|
OS_STDOUT_CAPTURE=1
|
|
OS_STDERR_CAPTURE=1
|
|
OS_DEBUG=1
|
|
OS_LOG_CAPTURE=1
|
|
deps =
|
|
-r{toxinidir}/requirements.txt
|
|
-r{toxinidir}/test-requirements.txt
|
|
allowlist_externals =
|
|
bash
|
|
passenv =
|
|
XDG_CACHE_HOME
|
|
[testenv:bashate]
|
|
# Treat all E* codes as Errors rather than warnings using: -e 'E*'
|
|
commands =
|
|
bash -c "find {toxinidir} \
|
|
-not \( -type d -name .?\* -prune \) \
|
|
-type f \
|
|
-not -name \*~ \
|
|
-not -name \*.md \
|
|
-name \*.sh \
|
|
-print0 | xargs -r -n 1 -0 bashate -v \
|
|
-e 'E*'"
|
|
[testenv:linters]
|
|
commands =
|
|
{[testenv:bashate]commands}
|
|
[testenv:pep8]
|
|
description = Dummy environment to allow flake8 to be run in subdir tox
|
|
[testenv:pylint]
|
|
description = Dummy environment to allow pylint to be run in subdir tox
|
|
[testenv:black]
|
|
description = Dummy environment to allow black to be run in subdir tox
|
|
[testenv:bandit]
|
|
description = Dummy environment to allow bandit to be run in subdir tox
|