From 2b2a62d145ff56260a297ea0bdf712b97070e562 Mon Sep 17 00:00:00 2001 From: Lingxian Kong Date: Tue, 26 Jun 2018 17:22:25 +1200 Subject: [PATCH] Add basic structure for user guide Change-Id: I2944b368fba26390ab051140d9178786aa47f395 --- doc/source/user/cookbook_function.rst | 25 +++++++++++++++++++ doc/source/user/cookbook_function_version.rst | 22 ++++++++++++++++ doc/source/user/cookbook_job.rst | 22 ++++++++++++++++ doc/source/user/cookbook_webhook.rst | 22 ++++++++++++++++ doc/source/user/index.rst | 11 ++++++++ 5 files changed, 102 insertions(+) create mode 100644 doc/source/user/cookbook_function.rst create mode 100644 doc/source/user/cookbook_function_version.rst create mode 100644 doc/source/user/cookbook_job.rst create mode 100644 doc/source/user/cookbook_webhook.rst diff --git a/doc/source/user/cookbook_function.rst b/doc/source/user/cookbook_function.rst new file mode 100644 index 00000000..cc47e98c --- /dev/null +++ b/doc/source/user/cookbook_function.rst @@ -0,0 +1,25 @@ +.. + 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. + +Function Cookbook +================= + +Introduction +~~~~~~~~~~~~ + +Examples +~~~~~~~~ + +Create python function with libraries in a package +-------------------------------------------------- diff --git a/doc/source/user/cookbook_function_version.rst b/doc/source/user/cookbook_function_version.rst new file mode 100644 index 00000000..0dff95db --- /dev/null +++ b/doc/source/user/cookbook_function_version.rst @@ -0,0 +1,22 @@ +.. + 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. + +Function version Cookbook +========================= + +Introduction +~~~~~~~~~~~~ + +Examples +~~~~~~~~ \ No newline at end of file diff --git a/doc/source/user/cookbook_job.rst b/doc/source/user/cookbook_job.rst new file mode 100644 index 00000000..ec31bd65 --- /dev/null +++ b/doc/source/user/cookbook_job.rst @@ -0,0 +1,22 @@ +.. + 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. + +Job Cookbook +============ + +Introduction +~~~~~~~~~~~~ + +Examples +~~~~~~~~ \ No newline at end of file diff --git a/doc/source/user/cookbook_webhook.rst b/doc/source/user/cookbook_webhook.rst new file mode 100644 index 00000000..940ee3e9 --- /dev/null +++ b/doc/source/user/cookbook_webhook.rst @@ -0,0 +1,22 @@ +.. + 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. + +Webhook Cookbook +================ + +Introduction +~~~~~~~~~~~~ + +Examples +~~~~~~~~ \ No newline at end of file diff --git a/doc/source/user/index.rst b/doc/source/user/index.rst index 84064a8c..a6fb9922 100644 --- a/doc/source/user/index.rst +++ b/doc/source/user/index.rst @@ -25,6 +25,17 @@ Demos * `(2018.05) Qinling function autoscaling `_ * `(2018.05) Qinling function versioning `_ +Cookbooks +--------- + +.. toctree:: + :maxdepth: 1 + + cookbook_function + cookbook_function_version + cookbook_webhook + cookbook_job + Integration with other services -------------------------------