This is an automated email from the ASF dual-hosted git repository.
vishesh pushed a change to branch feat-add-stickyness-policy
in repository
https://gitbox.apache.org/repos/asf/cloudstack-kubernetes-provider.git
omit f25a1e7c Feat: Add support for stickyness policy
add e87b24c0 Upgrade cloudstack-go to v2.19.0 (#87)
add 848ac99e Fix for
service.beta.kubernetes.io/cloudstack-load-balancer-proxy-protocol (#74)
add d574db85 Update golangci configuration to latest version
add 95521ebd Update github actions
add ab5f23d4 Add instructions for debugging
add e3a86b60 Update dockerfile to use caching for go modules
add 8db1bc6f Minor fixups
add 649bbe7e add license to .golangci.yml
add 5da36a7b Add CodeQL & test coverage on PRs
add db5721ce Update debugging docs, GitHub Actions and golangci config #84
add 3b90644d Add some unit tests
add 282ef972 Add some unit tests (#89)
add 96f1b18c Fix providerID & getZone Implementation (#85)
add abddd58a Add support to update the loadbalancer rule when source cidr
list is updated (#86)
add 04bf5364 Allow custom region from config (#83)
add 1b75921b Associate loadBalancerIP to the network when specified in the
Spec (#82)
add 207f378d 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 (f25a1e7c)
\
N -- N -- N refs/heads/feat-add-stickyness-policy (207f378d)
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 | 4 +-
.github/workflows/build.yml | 14 +-
.../{golangci-lint.yml => codeql-analysis.yml} | 32 +-
.github/workflows/golangci-lint.yml | 6 +-
.gitignore | 29 +
.golangci.yml | 70 +-
Dockerfile | 7 +-
Makefile | 15 +-
README.md | 41 +-
cloudstack.go | 220 +++++-
cloudstack_instances.go | 30 +-
cloudstack_instances_test.go | 176 +++++
cloudstack_loadbalancer.go | 195 ++++--
cloudstack_loadbalancer_test.go | 766 +++++++++++++++++++++
cloudstack_test.go | 156 +++++
deployment.yaml | 8 +
go.mod | 6 +-
go.sum | 4 +-
nginx-ingress-controller-patch.yml | 2 +-
protocol_test.go | 259 +++++++
traefik-ingress-controller.yml | 2 +-
21 files changed, 1920 insertions(+), 122 deletions(-)
copy .github/workflows/{golangci-lint.yml => codeql-analysis.yml} (61%)
create mode 100644 cloudstack_instances_test.go
create mode 100644 cloudstack_loadbalancer_test.go
create mode 100644 protocol_test.go