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

vishesh92 pushed a change to branch fix-protocol-toggle
in repository 
https://gitbox.apache.org/repos/asf/cloudstack-kubernetes-provider.git


 discard bc832c4d Update load balancer rules in place when the protocol changes
     add e3d49a93 Add a simulated dev/test environment and simulator-based e2e 
CI (#105)
     add 1c70b28d Update load balancer rules in place when the protocol changes

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (bc832c4d)
            \
             N -- N -- N   refs/heads/fix-protocol-toggle (1c70b28d)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .github/workflows/e2e-simulator.yml                | 182 ++++++++
 .gitignore                                         |   8 +-
 .golangci.yml                                      |   3 +
 Makefile                                           |  45 +-
 README.md                                          |  65 ++-
 cloudstack.go                                      |   8 +-
 cloudstack_loadbalancer.go                         | 124 ++++-
 cloudstack_loadbalancer_test.go                    | 338 +++++++++++++-
 cloudstack_test.go                                 |  45 ++
 docs/development.md                                | 424 +++++++++++++++++
 hack/e2e/10-simulator-up.sh                        | 126 +++++
 hack/e2e/20-kind-up.sh                             |  52 +++
 hack/e2e/30-topology-isolated.sh                   |  87 ++++
 hack/e2e/40-ccm-deploy.sh                          |  98 ++++
 hack/e2e/50-topology-vpc.sh                        | 123 +++++
 hack/e2e/90-collect-artifacts.sh                   |  67 +++
 .github/workflows/build.yml => hack/e2e/99-down.sh |  40 +-
 hack/e2e/env.sh                                    |  71 +++
 hack/e2e/kind-config.yaml                          |  62 +++
 hack/e2e/lib/cmk.sh                                |  69 +++
 .github/workflows/build.yml => hack/e2e/lib/log.sh |  53 +--
 .github/workflows/build.yml => hack/e2e/up.sh      |  46 +-
 test/e2e/annotations_test.go                       | 173 +++++++
 test/e2e/framework.go                              | 506 +++++++++++++++++++++
 test/e2e/loadbalancer_test.go                      | 208 +++++++++
 test/e2e/node_test.go                              | 136 ++++++
 test/e2e/vpc_test.go                               | 261 +++++++++++
 27 files changed, 3263 insertions(+), 157 deletions(-)
 create mode 100644 .github/workflows/e2e-simulator.yml
 create mode 100644 docs/development.md
 create mode 100755 hack/e2e/10-simulator-up.sh
 create mode 100755 hack/e2e/20-kind-up.sh
 create mode 100755 hack/e2e/30-topology-isolated.sh
 create mode 100755 hack/e2e/40-ccm-deploy.sh
 create mode 100755 hack/e2e/50-topology-vpc.sh
 create mode 100755 hack/e2e/90-collect-artifacts.sh
 copy .github/workflows/build.yml => hack/e2e/99-down.sh (55%)
 mode change 100644 => 100755
 create mode 100755 hack/e2e/env.sh
 create mode 100644 hack/e2e/kind-config.yaml
 create mode 100644 hack/e2e/lib/cmk.sh
 copy .github/workflows/build.yml => hack/e2e/lib/log.sh (52%)
 copy .github/workflows/build.yml => hack/e2e/up.sh (53%)
 mode change 100644 => 100755
 create mode 100644 test/e2e/annotations_test.go
 create mode 100644 test/e2e/framework.go
 create mode 100644 test/e2e/loadbalancer_test.go
 create mode 100644 test/e2e/node_test.go
 create mode 100644 test/e2e/vpc_test.go

Reply via email to