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

vishesh92 pushed a change to branch feat-add-stickyness-policy
in repository 
https://gitbox.apache.org/repos/asf/cloudstack-kubernetes-provider.git


 discard 63947d80 Feat: Add support for stickyness policy
     add e3d49a93 Add a simulated dev/test environment and simulator-based e2e 
CI (#105)
     add c3788b6a Fix github actions (#106)
     add c314d283 Feat: Add support for stickyness policy

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   (63947d80)
            \
             N -- N -- N   refs/heads/feat-add-stickyness-policy (c314d283)

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/build-docker-image.yml           |   6 +-
 .github/workflows/build.yml                        |   2 +-
 .github/workflows/e2e-simulator.yml                | 182 ++++++++
 .github/workflows/golangci-lint.yml                |   2 +-
 .gitignore                                         |   8 +-
 .golangci.yml                                      |   3 +
 Makefile                                           |  45 +-
 README.md                                          |  65 ++-
 cloudstack.go                                      |   3 +-
 cloudstack_loadbalancer.go                         | 124 ++++-
 cloudstack_loadbalancer_test.go                    | 345 +++++++++++++-
 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 +++++++++++
 30 files changed, 3276 insertions(+), 156 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