Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
a8098045a7 | ||
![]() |
ef66b91efe | ||
![]() |
4bec55895b | ||
![]() |
8f13cc9a18 |
46
.gitignore
vendored
@ -1,30 +1,26 @@
|
|||||||
*.DS_Store
|
_build/
|
||||||
*.egg*
|
/AUTHORS
|
||||||
*.log
|
/ChangeLog
|
||||||
*.mo
|
/dist/
|
||||||
|
/otcdocstheme.egg-info/
|
||||||
|
.DS_Store
|
||||||
*.pyc
|
*.pyc
|
||||||
*.swo
|
|
||||||
*.swp
|
|
||||||
*~
|
|
||||||
AUTHORS
|
|
||||||
octavia_proxy-*/
|
|
||||||
.coverage
|
|
||||||
.idea
|
|
||||||
.stestr/
|
|
||||||
.testrepository
|
|
||||||
.tox
|
|
||||||
build
|
|
||||||
ChangeLog
|
|
||||||
dist
|
|
||||||
# Doc related
|
|
||||||
doc/build
|
doc/build
|
||||||
|
doc/source/BBresult
|
||||||
api-ref/build
|
api-ref/build
|
||||||
# Development environment files
|
.tox
|
||||||
.project
|
/.venv
|
||||||
.pydevproject
|
*.swp
|
||||||
cover
|
*.log
|
||||||
|
*.egg*
|
||||||
|
|
||||||
|
# Editors
|
||||||
|
*~
|
||||||
|
|
||||||
# Files created by releasenotes build
|
# Files created by releasenotes build
|
||||||
releasenotes/build
|
releasenotes/build
|
||||||
.ropeproject
|
|
||||||
test.py
|
# Files created by the LaTeX/PDF build
|
||||||
.vscode
|
/.aux
|
||||||
|
/.fdb_latexmk
|
||||||
|
/texput.fls
|
||||||
|
32
.pre-commit-config.yaml
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
default_language_version:
|
||||||
|
python: python3
|
||||||
|
repos:
|
||||||
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
||||||
|
rev: 9136088a246768144165fcc3ecc3d31bb686920a # v3.3.0
|
||||||
|
hooks:
|
||||||
|
- id: trailing-whitespace
|
||||||
|
# Replaces or checks mixed line ending
|
||||||
|
- id: mixed-line-ending
|
||||||
|
args: ['--fix', 'lf']
|
||||||
|
exclude: '.*\.(svg)$'
|
||||||
|
# Forbid files which have a UTF-8 byte-order marker
|
||||||
|
- id: check-byte-order-marker
|
||||||
|
# Checks that non-binary executables have a proper shebang
|
||||||
|
- id: check-executables-have-shebangs
|
||||||
|
# Check for files that contain merge conflict strings.
|
||||||
|
- id: check-merge-conflict
|
||||||
|
# Check for debugger imports and py37+ breakpoint()
|
||||||
|
# calls in python source
|
||||||
|
- id: debug-statements
|
||||||
|
- id: check-yaml
|
||||||
|
files: .*\.(yaml|yml)$
|
||||||
|
- repo: local
|
||||||
|
hooks:
|
||||||
|
- id: flake8
|
||||||
|
name: flake8
|
||||||
|
additional_dependencies:
|
||||||
|
- hacking>=3.0.1,<3.1.0
|
||||||
|
language: python
|
||||||
|
entry: flake8
|
||||||
|
files: '^.*\.py$'
|
||||||
|
exclude: '^(doc|releasenotes|tools)/.*$'
|
8
.zuul.yaml
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
- project:
|
||||||
|
merge-mode: squash-merge
|
||||||
|
default-branch: main
|
||||||
|
vars:
|
||||||
|
# publish to blueprints container
|
||||||
|
container: "blueprints"
|
||||||
|
templates:
|
||||||
|
- publish-otc-docs-hc-pti
|
@ -1 +1,5 @@
|
|||||||
|
libffi-dev [platform:dpkg]
|
||||||
|
libffi-devel [platform:rpm]
|
||||||
|
libssl-dev [platform:dpkg]
|
||||||
|
openssl-devel [platform:rpm]
|
||||||
graphviz [doc]
|
graphviz [doc]
|
||||||
|
@ -1,8 +0,0 @@
|
|||||||
==========================================
|
|
||||||
Welcome to the documentation of Blueprints
|
|
||||||
==========================================
|
|
||||||
|
|
||||||
.. toctree::
|
|
||||||
:maxdepth: 1
|
|
||||||
|
|
||||||
cce_vault
|
|
@ -1,10 +1,12 @@
|
|||||||
sphinx>=2.0.0,!=2.1.0 # BSD
|
# The order of packages is significant, because pip processes them in the order
|
||||||
|
# of appearance. Changing the order has an impact on the overall integration
|
||||||
|
# process, which may cause wedges in the gate later.
|
||||||
|
# Notes:
|
||||||
|
# reno needs openstackdocstheme which needs reno (cycle dep).
|
||||||
|
# os-api-ref needs openstackdocstheme which needs os-api-ref (cycle dep).
|
||||||
|
# Put them in here will make it clear that those are only needed for
|
||||||
|
# docs.
|
||||||
|
|
||||||
otcdocstheme # Apache-2.0
|
sphinx==4.0.0
|
||||||
|
otcdocstheme
|
||||||
# releasenotes
|
|
||||||
reno>=3.1.0 # Apache-2.0
|
reno>=3.1.0 # Apache-2.0
|
||||||
|
|
||||||
otc-sphinx-directives>=0.1.0
|
|
||||||
sphinx-minify>=0.0.1 # Apache-2.0
|
|
||||||
git+https://gitea.eco.tsi-dev.otc-service.com/infra/otc-metadata.git#egg=otc_metadata
|
|
Before Width: | Height: | Size: 899 B After Width: | Height: | Size: 899 B |
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 2.8 KiB |
Before Width: | Height: | Size: 23 KiB After Width: | Height: | Size: 23 KiB |
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 5.4 KiB After Width: | Height: | Size: 5.4 KiB |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 562 B After Width: | Height: | Size: 562 B |
Before Width: | Height: | Size: 5.1 KiB After Width: | Height: | Size: 5.1 KiB |
Before Width: | Height: | Size: 6.8 KiB After Width: | Height: | Size: 6.8 KiB |
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 26 KiB |
BIN
doc/source/assets/caf/SCR-20230808-frw.png
Normal file
After Width: | Height: | Size: 564 KiB |
BIN
doc/source/assets/caf/SCR-20230808-g42.png
Normal file
After Width: | Height: | Size: 860 KiB |
BIN
doc/source/assets/caf/image1.png
Normal file
After Width: | Height: | Size: 73 KiB |
BIN
doc/source/assets/caf/image10.png
Normal file
After Width: | Height: | Size: 95 KiB |
BIN
doc/source/assets/caf/image11.png
Normal file
After Width: | Height: | Size: 55 KiB |
BIN
doc/source/assets/caf/image11_1.png
Normal file
After Width: | Height: | Size: 150 KiB |
BIN
doc/source/assets/caf/image11_2.png
Normal file
After Width: | Height: | Size: 139 KiB |
BIN
doc/source/assets/caf/image12.png
Normal file
After Width: | Height: | Size: 112 KiB |
BIN
doc/source/assets/caf/image12_1.png
Normal file
After Width: | Height: | Size: 216 KiB |
BIN
doc/source/assets/caf/image12_2.png
Normal file
After Width: | Height: | Size: 216 KiB |
BIN
doc/source/assets/caf/image13.png
Normal file
After Width: | Height: | Size: 18 KiB |
BIN
doc/source/assets/caf/image13_1.png
Normal file
After Width: | Height: | Size: 143 KiB |
BIN
doc/source/assets/caf/image14.png
Normal file
After Width: | Height: | Size: 43 KiB |
BIN
doc/source/assets/caf/image15.png
Normal file
After Width: | Height: | Size: 113 KiB |
BIN
doc/source/assets/caf/image16.png
Normal file
After Width: | Height: | Size: 138 KiB |
BIN
doc/source/assets/caf/image17.png
Normal file
After Width: | Height: | Size: 116 KiB |
BIN
doc/source/assets/caf/image18.png
Normal file
After Width: | Height: | Size: 162 KiB |
BIN
doc/source/assets/caf/image19.png
Normal file
After Width: | Height: | Size: 20 KiB |
BIN
doc/source/assets/caf/image2.png
Normal file
After Width: | Height: | Size: 25 KiB |
BIN
doc/source/assets/caf/image20.png
Normal file
After Width: | Height: | Size: 19 KiB |
BIN
doc/source/assets/caf/image21.png
Normal file
After Width: | Height: | Size: 90 KiB |
BIN
doc/source/assets/caf/image22.png
Normal file
After Width: | Height: | Size: 60 KiB |
BIN
doc/source/assets/caf/image23.png
Normal file
After Width: | Height: | Size: 54 KiB |
BIN
doc/source/assets/caf/image24.png
Normal file
After Width: | Height: | Size: 48 KiB |
BIN
doc/source/assets/caf/image25.png
Normal file
After Width: | Height: | Size: 28 KiB |
BIN
doc/source/assets/caf/image26.png
Normal file
After Width: | Height: | Size: 39 KiB |