Improve doc

Story: 2001577
Change-Id: I826cccd2a1ba61701b547ac5399ba2ae42e0a987
This commit is contained in:
Lingxian Kong 2018-01-09 10:19:46 +13:00
parent 6167144628
commit e17b38820c
8 changed files with 91 additions and 3 deletions

View File

@ -0,0 +1,31 @@
..
Copyright 2010-2011 United States Government as represented by the
Administrator of the National Aeronautics and Space Administration.
All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License"); you may
not use this file except in compliance with the License. You may obtain
a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
License for the specific language governing permissions and limitations
under the License.
Administration/Operation Guide
==============================
.. toctree::
:maxdepth: 1
runtime
security
Indices and tables
------------------
* :ref:`genindex`
* :ref:`search`

View File

@ -0,0 +1,19 @@
..
Copyright 2018 Catalyst IT Ltd
All Rights Reserved.
not use this file except in compliance with the License. You may obtain
a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
License for the specific language governing permissions and limitations
under the License.
Create your own runtime
=======================
Although there are several runtime implementation in-tree, it's very easy to
implement your own runtime for the prefered programming language.

View File

@ -0,0 +1,16 @@
..
Copyright 2018 Catalyst IT Ltd
All Rights Reserved.
not use this file except in compliance with the License. You may obtain
a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
License for the specific language governing permissions and limitations
under the License.
Security considerations
=======================

View File

@ -68,7 +68,7 @@ configuration:
LOGFILE=$DEST/logs/stack.sh.log
LOGDAYS=1
ENABLED_SERVICES=rabbit,mysql,key
ENABLED_SERVICES=rabbit,mysql,key,tempest
.. end

View File

@ -23,7 +23,7 @@ project.
.. toctree::
:maxdepth: 2
:maxdepth: 1
development-environment-devstack
contributing

View File

@ -18,3 +18,17 @@ Qinling features
This section does not intend to give you an exhaustive feature list of Qinling,
but some features which make Qinling userful, powerful, scalable and highly
available.
Auto Scaling
~~~~~~~~~~~~
With Qinling, the function invocation can be automatically scaled up and down
to meet the needs of your function. It's not necessary to monitor usage by
yourself, Qinling can scale up new containers if traffic ticks up, and scale
back down when it drops.
Webhook
~~~~~~~
Webhooks are a low-effort way to invoke the functions in Qinling. They do
not require a bot user or authentication to use.

View File

@ -23,7 +23,7 @@ can also find some code examples in ``example/functions`` folder.
.. toctree::
:maxdepth: 2
:maxdepth: 1
python_dev
openstack_integration

View File

@ -44,6 +44,14 @@ Overview
quick_start
features
Administration/Operation Guide
------------------------------
.. toctree::
:maxdepth: 1
administration/index
Contributor/Developer Guide
---------------------------