Compare commits
1 Commits
keycloak_g
...
main
Author | SHA1 | Date | |
---|---|---|---|
ab7bdd1686 |
48
.gitignore
vendored
@ -1,26 +1,30 @@
|
||||
_build/
|
||||
/AUTHORS
|
||||
/ChangeLog
|
||||
/dist/
|
||||
/otcdocstheme.egg-info/
|
||||
.DS_Store
|
||||
*.pyc
|
||||
doc/build
|
||||
doc/source/BBresult
|
||||
api-ref/build
|
||||
.tox
|
||||
/.venv
|
||||
*.swp
|
||||
*.log
|
||||
*.DS_Store
|
||||
*.egg*
|
||||
|
||||
# Editors
|
||||
*.log
|
||||
*.mo
|
||||
*.pyc
|
||||
*.swo
|
||||
*.swp
|
||||
*~
|
||||
|
||||
AUTHORS
|
||||
octavia_proxy-*/
|
||||
.coverage
|
||||
.idea
|
||||
.stestr/
|
||||
.testrepository
|
||||
.tox
|
||||
build
|
||||
ChangeLog
|
||||
dist
|
||||
# Doc related
|
||||
doc/build
|
||||
api-ref/build
|
||||
# Development environment files
|
||||
.project
|
||||
.pydevproject
|
||||
cover
|
||||
# Files created by releasenotes build
|
||||
releasenotes/build
|
||||
|
||||
# Files created by the LaTeX/PDF build
|
||||
/.aux
|
||||
/.fdb_latexmk
|
||||
/texput.fls
|
||||
.ropeproject
|
||||
test.py
|
||||
.vscode
|
||||
|
@ -1,32 +0,0 @@
|
||||
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)/.*$'
|
@ -1,8 +0,0 @@
|
||||
- project:
|
||||
merge-mode: squash-merge
|
||||
default-branch: main
|
||||
vars:
|
||||
# publish to blueprints container
|
||||
container: "blueprints"
|
||||
templates:
|
||||
- publish-otc-docs-hc-pti
|
@ -1,5 +1 @@
|
||||
libffi-dev [platform:dpkg]
|
||||
libffi-devel [platform:rpm]
|
||||
libssl-dev [platform:dpkg]
|
||||
openssl-devel [platform:rpm]
|
||||
graphviz [doc]
|
||||
|
0
doc/best-practice/source/_static/css/.placeholder
Normal file
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 |
119
doc/best-practice/source/conf.py
Normal file
8
doc/best-practice/source/index.rst
Normal file
@ -0,0 +1,8 @@
|
||||
==========================================
|
||||
Welcome to the documentation of Blueprints
|
||||
==========================================
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 1
|
||||
|
||||
cce_vault
|
@ -1,12 +1,10 @@
|
||||
# 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.
|
||||
sphinx>=2.0.0,!=2.1.0 # BSD
|
||||
|
||||
sphinx==4.0.0
|
||||
otcdocstheme
|
||||
otcdocstheme # Apache-2.0
|
||||
|
||||
# releasenotes
|
||||
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
|
0
doc/source/_static/placeholder
Normal file
@ -1,15 +1,10 @@
|
||||
Blueprints
|
||||
==========
|
||||
|
||||
Users sometimes identify use cases that can be solved in a standardized way to
|
||||
save research time and effort. Blueprints are a series of best practices,
|
||||
curated by the Open Telekom Cloud engineering and architecture teams. While
|
||||
they are not covered directly by the `Service description
|
||||
<https://open-telekom-cloud.com/service-description>`_, they are tested and
|
||||
validated recommendations from our experts.
|
||||
.. directive_wrapper::
|
||||
:class: container-sbv
|
||||
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 1
|
||||
|
||||
cce_vault.rst
|
||||
.. service_card::
|
||||
:service_type: blueprints
|
||||
:environment: internal
|
||||
:best-practice: Best Practices emphasize architectural principles that enhance reliability, scalability, and security. This section serves as a valuable resource for architects and developers to implement cloud solutions that align with industry best practices and maximize the benefits of the public cloud infrastructure.
|
8
requirements.txt
Normal file
@ -0,0 +1,8 @@
|
||||
# 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.
|
||||
os-api-ref>=1.4.0 # Apache-2.0
|
||||
reno>=3.1.0 # Apache-2.0
|
||||
otcdocstheme # Apache-2.0
|
||||
sphinx>=2.0.0,!=2.1.0 # BSD
|
||||
oslo.i18n>=3.15.3 # Apache-2.0
|