feat(chart): release 1.2.6 with lb source ranges
Release Chart / release (push) Successful in 5s
deploy / build (push) Successful in 2m29s

This commit is contained in:
2026-08-04 20:30:49 +03:30
parent d2b1a21a07
commit 1a26a28876
5 changed files with 50 additions and 18 deletions
-4
View File
@@ -1,4 +0,0 @@
owner: KubelanCloud
git-repo: kks-provider-plugin
pages-branch: gh-pages
pages-index-path: index.yaml
+7 -8
View File
@@ -1,18 +1,17 @@
apiVersion: v2
name: kks-provider-plugin
description: Combined Kloud provider plugin chart (LoadBalancer + CSI) for kks clusters
description: Combined Kloude provider plugin chart (LoadBalancer + CSI) for kks clusters
type: application
version: 1.2.5
appVersion: "1.1.2"
version: 1.2.6
appVersion: "1.2.0"
kubeVersion: ">=1.28.0-0"
home: https://github.com/KubelanCloud/kks-provider-plugin
home: https://git.kloude.ir/kloude/kks-provider-plugin
sources:
- https://github.com/KubelanCloud/kks-provider-plugin
- https://git.kloude.ir/kloude/kks-provider-plugin
keywords:
- provider
- loadbalancer
- csi
- storage
- kloud
- kloude
maintainers:
- name: Kloud Team
- name: Kloude Tech Team
+19
View File
@@ -174,6 +174,7 @@ func (c *Controller) sync(ctx context.Context, key string) error {
Namespace: namespace,
Name: name,
Ports: ports,
LoadBalancerSourceRanges: serviceLoadBalancerSourceRanges(svc),
})
if err != nil {
return err
@@ -279,6 +280,24 @@ func servicePortsToAllocateRules(svc *corev1.Service) ([]provisioner.AllocatePor
return out, nil
}
func serviceLoadBalancerSourceRanges(svc *corev1.Service) []string {
if svc == nil || len(svc.Spec.LoadBalancerSourceRanges) == 0 {
return nil
}
out := make([]string, 0, len(svc.Spec.LoadBalancerSourceRanges))
for _, item := range svc.Spec.LoadBalancerSourceRanges {
trimmed := strings.TrimSpace(item)
if trimmed == "" {
continue
}
out = append(out, trimmed)
}
if len(out) == 0 {
return nil
}
return out
}
func containsString(items []string, target string) bool {
for _, item := range items {
if item == target {
+17
View File
@@ -45,3 +45,20 @@ func TestServicePortsToAllocateRulesRejectsNoPorts(t *testing.T) {
t.Fatal("expected error for empty ports")
}
}
func TestServiceLoadBalancerSourceRanges(t *testing.T) {
svc := &corev1.Service{
ObjectMeta: metav1.ObjectMeta{Namespace: "default", Name: "web"},
Spec: corev1.ServiceSpec{
LoadBalancerSourceRanges: []string{"203.0.113.0/24", " 198.51.100.8/32 ", ""},
},
}
ranges := serviceLoadBalancerSourceRanges(svc)
if len(ranges) != 2 {
t.Fatalf("ranges count = %d, want 2", len(ranges))
}
if ranges[0] != "203.0.113.0/24" || ranges[1] != "198.51.100.8/32" {
t.Fatalf("unexpected ranges: %#v", ranges)
}
}
+1
View File
@@ -12,6 +12,7 @@ type AllocateRequest struct {
Namespace string `json:"namespace"`
Name string `json:"name"`
Ports []AllocatePortRule `json:"ports,omitempty"`
LoadBalancerSourceRanges []string `json:"loadBalancerSourceRanges,omitempty"`
}
type AllocatePortRule struct {