Skip to content

Commit

Permalink
ci/test: bump various versions (#3162)
Browse files Browse the repository at this point in the history
Signed-off-by: 张祖建 <zhangzujian.7@gmail.com>
  • Loading branch information
zhangzujian authored and bobz965 committed Aug 28, 2023
1 parent 094d136 commit 7339b5a
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-windows.yaml
Expand Up @@ -23,7 +23,7 @@ concurrency:

env:
GO_VERSION: ''
GOSEC_VERSION: '2.16.0'
GOSEC_VERSION: '2.17.0'

jobs:
filter:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-x86-image.yaml
Expand Up @@ -22,8 +22,8 @@ concurrency:

env:
GO_VERSION: ''
GOSEC_VERSION: '2.16.0'
HELM_VERSION: v3.12.2
GOSEC_VERSION: '2.17.0'
HELM_VERSION: v3.12.3
SUBMARINER_VERSION: '0.14.6'

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scheduled-e2e.yaml
Expand Up @@ -11,7 +11,7 @@ concurrency:

env:
GO_VERSION: ''
HELM_VERSION: v3.12.2
HELM_VERSION: v3.12.3
SUBMARINER_VERSION: '0.14.6'

jobs:
Expand Down
6 changes: 3 additions & 3 deletions Makefile
Expand Up @@ -37,10 +37,10 @@ KUBEVIRT_OPERATOR_YAML = https://github.com/kubevirt/kubevirt/releases/download/
KUBEVIRT_CR_YAML = https://github.com/kubevirt/kubevirt/releases/download/$(KUBEVIRT_VERSION)/kubevirt-cr.yaml
KUBEVIRT_TEST_YAML = https://kubevirt.io/labs/manifests/vm.yaml

CILIUM_VERSION = 1.13.4
CILIUM_VERSION = 1.14.1
CILIUM_IMAGE_REPO = quay.io/cilium/cilium

CERT_MANAGER_VERSION = v1.12.2
CERT_MANAGER_VERSION = v1.12.3
CERT_MANAGER_CONTROLLER = quay.io/jetstack/cert-manager-controller:$(CERT_MANAGER_VERSION)
CERT_MANAGER_CAINJECTOR = quay.io/jetstack/cert-manager-cainjector:$(CERT_MANAGER_VERSION)
CERT_MANAGER_WEBHOOK = quay.io/jetstack/cert-manager-webhook:$(CERT_MANAGER_VERSION)
Expand All @@ -59,7 +59,7 @@ DEEPFLOW_CHART_REPO = https://deepflow-ce.oss-cn-beijing.aliyuncs.com/chart/stab
DEEPFLOW_IMAGE_REPO = registry.cn-beijing.aliyuncs.com/deepflow-ce
DEEPFLOW_GRAFANA_PORT = 30080

KWOK_VERSION = v0.3.0
KWOK_VERSION = v0.4.0
KWOK_IMAGE = registry.k8s.io/kwok/kwok:$(KWOK_VERSION)

VPC_NAT_GW_IMG = $(REGISTRY)/vpc-nat-gateway:$(VERSION)
Expand Down
1 change: 1 addition & 0 deletions pkg/ovs/ovn-nb-acl.go
Expand Up @@ -734,6 +734,7 @@ func (c *ovnNbClient) GetAcl(parent, direction, priority, match string, ignoreNo
return nil, fmt.Errorf("more than one acl with same 'parent %s direction %s priority %s match %s'", parent, direction, priority, match)
}

// #nosec G602
return &aclList[0], nil
}

Expand Down
1 change: 1 addition & 0 deletions pkg/ovs/ovn-nb-load_balancer.go
Expand Up @@ -211,6 +211,7 @@ func (c *ovnNbClient) GetLoadBalancer(lbName string, ignoreNotFound bool) (*ovnn
return nil, fmt.Errorf("more than one load balancer with same name %q", lbName)
}

// #nosec G602
return &lbList[0], nil
}

Expand Down
1 change: 1 addition & 0 deletions pkg/ovs/ovn-nb-logical_router.go
Expand Up @@ -109,6 +109,7 @@ func (c *ovnNbClient) GetLogicalRouter(lrName string, ignoreNotFound bool) (*ovn
return nil, fmt.Errorf("more than one logical router with same name %q", lrName)
}

// #nosec G602
return &lrList[0], nil
}

Expand Down
1 change: 1 addition & 0 deletions pkg/ovs/ovn-nb-logical_switch.go
Expand Up @@ -210,6 +210,7 @@ func (c *ovnNbClient) GetLogicalSwitch(lsName string, ignoreNotFound bool) (*ovn
return nil, fmt.Errorf("more than one logical switch with same name %q", lsName)
}

// #nosec G602
return &lsList[0], nil
}

Expand Down
2 changes: 2 additions & 0 deletions pkg/ovs/ovn-sb-chassis.go
Expand Up @@ -121,6 +121,8 @@ func (c *ovnSbClient) GetChassisByHost(nodeName string) (*ovnsb.Chassis, error)
klog.Error(err)
return nil, err
}

// #nosec G602
return &chassisList[0], nil
}

Expand Down
3 changes: 2 additions & 1 deletion pkg/util/net.go
Expand Up @@ -17,7 +17,8 @@ import (
kubeovnv1 "github.com/kubeovn/kube-ovn/pkg/apis/kubeovn/v1"
)

var vpcExternalNet = "ovn-vpc-external-network"
// #nosec G101
const vpcExternalNet = "ovn-vpc-external-network"

const (
IPv4Multicast = "224.0.0.0/4"
Expand Down

0 comments on commit 7339b5a

Please sign in to comment.