Compare commits

...

2 Commits

Author SHA1 Message Date
bc0d326263 SBV CCE 2023-05-11 06:04:54 +00:00
SebastianGode
251fb94701 Add Service-Based-View to the service 2023-05-08 14:48:30 +02:00
7 changed files with 130 additions and 9 deletions

View File

@ -18,7 +18,7 @@ import os
import sys import sys
extensions = [ extensions = [
'otcdocstheme' 'otcdocstheme',
] ]
otcdocs_auto_name = False otcdocs_auto_name = False

View File

@ -1,4 +1,7 @@
sphinx>=2.0.0,!=2.1.0 # BSD sphinx>=2.0.0,!=2.1.0 # BSD
otcdocstheme # Apache-2.0 otcdocstheme # Apache-2.0
# releasenotes # releasenotes
reno>=3.1.0 # Apache-2.0 reno>=3.1.0 # Apache-2.0
otc-sphinx-directives>=0.1.0
git+https://gitea.eco.tsi-dev.otc-service.com/infra/otc-metadata.git#egg=otc_metadata

View File

102
doc/source/conf.py Normal file

File diff suppressed because it is too large Load Diff

12
doc/source/index.rst Normal file
View File

@ -0,0 +1,12 @@
Cloud Container Engine
======================
CCE provides highly scalable, high-performance, enterprise-class Kubernetes clusters. It supports native Kubernetes applications, tools and easy setup of container runtime environment.
.. directive_wrapper::
:class: container-sbv
.. service_card::
:service_type: cce
:umn: Describes the basic concepts, functions, key terms, best practices, FAQs and steps for quickly creating clusters and containerized applications.
:api: Describes the APIs provided by CCE including the functions, parameters, and examples of each API.

View File

@ -29,7 +29,11 @@ allowlist_externals =
mkdir mkdir
cp cp
sh sh
rm
sphinx-build
commands = commands =
rm -rf doc/build/html doc/build/doctrees
sphinx-build -a -E -W -d doc/build/doctrees -b html doc/source doc/build/html
{[testenv:api-ref]commands} {[testenv:api-ref]commands}
{[testenv:json-api-ref]commands} {[testenv:json-api-ref]commands}
{[testenv:umn]commands} {[testenv:umn]commands}
@ -120,3 +124,8 @@ commands =
cp -av doc/build/json/umn umn/build/json cp -av doc/build/json/umn umn/build/json
[doc8]
ignore = D001
extensions = .rst, .yaml

View File

@ -18,7 +18,7 @@ import os
import sys import sys
extensions = [ extensions = [
'otcdocstheme' 'otcdocstheme',
] ]
otcdocs_auto_name = False otcdocs_auto_name = False
@ -98,9 +98,4 @@ html_static_path = ['_static']
html_copy_source = False html_copy_source = False
# -- Options for PDF output -------------------------------------------------- # -- Options for PDF output --------------------------------------------------
latex_documents = [ latex_documents = []
('index',
'None.tex',
u'Cloud Container Engine - User Guide',
u'OpenTelekomCloud', 'manual'),
]