You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apisix.apache.org by kv...@apache.org on 2020/07/30 02:18:58 UTC

[apisix-control-plane] 01/01: doc: add Readme

This is an automated email from the ASF dual-hosted git repository.

kvn pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/apisix-control-plane.git

commit 72a2d1e859f2b77f004c50fc8dd56bbf36f7ca8f
Author: kv <gx...@163.com>
AuthorDate: Thu Jul 30 10:12:54 2020 +0800

    doc: add Readme
---
 .gitignore |  1 +
 README.md  | 11 +++++++++++
 go.mod     |  3 +++
 3 files changed, 15 insertions(+)

diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..485dee6
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+.idea
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..d94a498
--- /dev/null
+++ b/README.md
@@ -0,0 +1,11 @@
+# apisix-control-plane
+
+apisix-control-plane provide APISIX with a yaml configuration capability
+
+Why do you want to do this?
+1. In order to facilitate the integration of k8s, use yaml to define APISIX;
+2. For easier synchronization across clusters;
+3. Can be better adapted to multiple platforms (k8s, vm);
+
+Here are some examples of yaml and we can add comments here.
+https://docs.google.com/document/d/1mr0Wp7zYpEzgr4qsv8rxfS2MWzDpihgBcowIafgG8q4/edit#
\ No newline at end of file
diff --git a/go.mod b/go.mod
new file mode 100644
index 0000000..45fd1ed
--- /dev/null
+++ b/go.mod
@@ -0,0 +1,3 @@
+module github.com/apache/apisix-control-plane
+
+go 1.13