You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@apisix.apache.org by kv...@apache.org on 2020/12/12 09:53:44 UTC

[apisix-ingress-controller] branch master updated (83592c7 -> 2583c5f)

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

kvn pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/apisix-ingress-controller.git.


    from 83592c7  CI: add test ci (#80)
     add 2583c5f  ci: add license checker (#84)

No new revisions were added by this update.

Summary of changes:
 .actions/ASF-Release.cfg                           | 86 ++++++++++++++++++++++
 .actions/ASFLicenseHeaderGo.txt                    | 14 ++++
 .asf.yaml => .actions/ASFLicenseHeaderMarkdown.txt | 27 +------
 .github/workflows/license-checker.yml              | 20 +++++
 .gitignore                                         |  1 +
 Dockerfile                                         | 16 ++++
 Makefile                                           |  8 ++
 README.md                                          | 19 +++++
 build.sh                                           | 16 ++++
 docs/FAQ.md                                        | 21 +++++-
 docs/contribute.md                                 | 19 +++++
 docs/design.md                                     | 19 +++++
 docs/develop.md                                    | 19 +++++
 docs/install.md                                    | 19 +++++
 docs/usage.md                                      | 19 +++++
 log/log.go                                         | 28 +++----
 main.go                                            | 28 +++----
 pkg/config/config_test.go                          | 24 +++---
 pkg/ingress/apisix/annotation.go                   | 28 +++----
 pkg/ingress/apisix/plugin.go                       | 28 +++----
 pkg/ingress/apisix/route.go                        | 28 +++----
 pkg/ingress/apisix/route_test.go                   | 28 +++----
 pkg/ingress/apisix/service.go                      | 28 +++----
 pkg/ingress/apisix/upstream.go                     | 28 +++----
 pkg/ingress/controller/controller.go               | 30 ++++----
 pkg/ingress/controller/store/store.go              | 28 +++----
 pkg/ingress/controller/watch.go                    | 30 ++++----
 pkg/route.go                                       | 30 ++++----
 pkg/scheduler.go                                   | 28 +++----
 pkg/types/timeduration_test.go                     | 24 +++---
 pkg/version/version.go                             | 24 +++---
 pkg/version/version_test.go                        | 24 +++---
 samples/deploy/configmap/apisix.yaml               | 17 +++++
 samples/deploy/configmap/kustomization.yaml        | 17 +++++
 samples/deploy/crd/v1beta1/ApisixRoute.yaml        | 17 +++++
 samples/deploy/crd/v1beta1/ApisixService.yaml      | 17 +++++
 samples/deploy/crd/v1beta1/ApisixUpstream.yaml     | 17 +++++
 samples/deploy/crd/v1beta1/kustomization.yaml      | 17 +++++
 samples/deploy/deployment/ingress-controller.yaml  | 17 +++++
 samples/deploy/deployment/kustomization.yaml       | 17 +++++
 samples/deploy/kustomization.yaml                  | 17 +++++
 samples/deploy/rbac/apisix_view_clusterrole.yaml   | 18 ++++-
 .../rbac/apisix_view_clusterrolebinding.yaml       | 17 +++++
 samples/deploy/rbac/kustomization.yaml             | 17 +++++
 samples/deploy/rbac/service_account.yaml           | 17 +++++
 45 files changed, 751 insertions(+), 260 deletions(-)
 create mode 100644 .actions/ASF-Release.cfg
 create mode 100644 .actions/ASFLicenseHeaderGo.txt
 copy .asf.yaml => .actions/ASFLicenseHeaderMarkdown.txt (59%)
 create mode 100644 .github/workflows/license-checker.yml