Skip to content

Commit

Permalink
Prepare for release v0.0.7
Browse files Browse the repository at this point in the history
ProductLine: Voyager

Release: v2022.03.17

Release-tracker: voyagermesh/CHANGELOG#17
Signed-off-by: 1gtm <[email protected]>
  • Loading branch information
1gtm committed Mar 17, 2022
1 parent 0bc96a7 commit a6e524f
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 12 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ require (
k8s.io/klog/v2 v2.9.0
kmodules.xyz/client-go v0.0.0-20220203031013-1de48437aaf3
sigs.k8s.io/yaml v1.2.0
voyagermesh.dev/apimachinery v0.4.0
voyagermesh.dev/apimachinery v0.4.1
)

require (
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -1101,5 +1101,5 @@ sigs.k8s.io/yaml v1.1.0/go.mod h1:UJmg0vDUVViEyp3mgSv9WPwZCDxu4rQW1olrI1uml+o=
sigs.k8s.io/yaml v1.2.0 h1:kr/MCeFWJWTwyaHoR9c8EjH9OumOmoF9YGiZd7lFm/Q=
sigs.k8s.io/yaml v1.2.0/go.mod h1:yfXDCHCao9+ENCvLSE62v9VSji2MKu5jeNfTrofGhJc=
sourcegraph.com/sourcegraph/appdash v0.0.0-20190731080439-ebfcffb1b5c0/go.mod h1:hI742Nqp5OhwiqlzhgfbWU4mW4yO10fP+LoT9WOswdU=
voyagermesh.dev/apimachinery v0.4.0 h1:EAO8tBMFfuTOQC31TLv0bjWzUHcmleNRjvdiHzRjoy8=
voyagermesh.dev/apimachinery v0.4.0/go.mod h1:lA6aiKEejHH6/sPKO6c9HiT84t/9pZtDax/NlV55xkU=
voyagermesh.dev/apimachinery v0.4.1 h1:hsaCJaskDqTYjgS1jKV/azo82fiNEgy/uRBxqje4uDU=
voyagermesh.dev/apimachinery v0.4.1/go.mod h1:lA6aiKEejHH6/sPKO6c9HiT84t/9pZtDax/NlV55xkU=
2 changes: 1 addition & 1 deletion vendor/modules.txt
Original file line number Diff line number Diff line change
Expand Up @@ -529,7 +529,7 @@ sigs.k8s.io/structured-merge-diff/v4/value
# sigs.k8s.io/yaml v1.2.0
## explicit; go 1.12
sigs.k8s.io/yaml
# voyagermesh.dev/apimachinery v0.4.0
# voyagermesh.dev/apimachinery v0.4.1
## explicit; go 1.16
voyagermesh.dev/apimachinery/apis/voyager
voyagermesh.dev/apimachinery/apis/voyager/v1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -284,9 +284,7 @@ const (
AgentInterval = EngressKey + "/" + "agent-interval"
)

var (
get = map[string]meta.GetFunc{}
)
var get = map[string]meta.GetFunc{}

func registerParser(key string, fn meta.ParserFunc) { get[key] = meta.ParseFor(key, fn) }
func init() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ type IngressRule struct {
// mixing different types of rules in a single Ingress is disallowed, so exactly
// one of the following must be set.
type IngressRuleValue struct {
//TODO:
// TODO:
// 1. Consider renaming this resource and the associated rules so they
// aren't tied to Ingress. They can be used to route intra-cluster traffic.
// 2. Consider adding fields for Ingress-type specific global options
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ func (r Ingress) IsValid(cloudProvider string) error {
}

var a *address
var addrKey = fmt.Sprintf("%s:%d", bindAddress, podPort)
addrKey := fmt.Sprintf("%s:%d", bindAddress, podPort)

if ea, found := addrs[addrKey]; found {
if ea.Protocol == "tcp" {
Expand Down Expand Up @@ -210,7 +210,7 @@ func (r Ingress) IsValid(cloudProvider string) error {
}

var a *address
var addrKey = fmt.Sprintf("%s:%d", bindAddress, podPort)
addrKey := fmt.Sprintf("%s:%d", bindAddress, podPort)

if ea, found := addrs[addrKey]; found {
if ea.Protocol != "tcp" {
Expand Down Expand Up @@ -424,7 +424,7 @@ func checkOptionalAddress(address string) (string, error) {
}

func checkExclusiveWildcard(address string, port int, defined map[string]*address) error {
var wildcard = fmt.Sprintf("*:%d", port)
wildcard := fmt.Sprintf("*:%d", port)

if address == "*" {
// If a wildcard already exists for the port, we've passed validation for this port before.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ type IngressRule struct {
// mixing different types of rules in a single Ingress is disallowed, so exactly
// one of the following must be set.
type IngressRuleValue struct {
//TODO:
// TODO:
// 1. Consider renaming this resource and the associated rules so they
// aren't tied to Ingress. They can be used to route intra-cluster traffic.
// 2. Consider adding fields for Ingress-type specific global options
Expand Down

0 comments on commit a6e524f

Please sign in to comment.