cluster: rename pkg/zones to pkg/cluster

Signed-off-by: Alejandro Mery <amery@jpi.io>
This commit is contained in:
2023-09-10 19:01:36 +00:00
parent 046c9a508b
commit 5abb4c2f92
19 changed files with 33 additions and 31 deletions
+5 -5
View File
@@ -1,6 +1,6 @@
package main
import "git.jpi.io/amery/jpictl/pkg/zones"
import "git.jpi.io/amery/jpictl/pkg/cluster"
// Config describes the repository
type Config struct {
@@ -14,9 +14,9 @@ var cfg = &Config{
}
// LoadZones loads all zones and machines in the config directory
func (cfg *Config) LoadZones(resolve bool) (*zones.Zones, error) {
return zones.New(cfg.Base, cfg.Domain,
zones.ResolvePublicAddresses(resolve),
zones.WithLogger(log),
func (cfg *Config) LoadZones(resolve bool) (*cluster.Zones, error) {
return cluster.New(cfg.Base, cfg.Domain,
cluster.ResolvePublicAddresses(resolve),
cluster.WithLogger(log),
)
}
+10 -9
View File
@@ -7,8 +7,9 @@ import (
"strconv"
"strings"
"git.jpi.io/amery/jpictl/pkg/zones"
"github.com/spf13/cobra"
"git.jpi.io/amery/jpictl/pkg/cluster"
)
// Command
@@ -38,9 +39,9 @@ var gatewaySetCmd = &cobra.Command{
},
}
func gatewaySet(zi zones.ZoneIterator, gw string) error {
func gatewaySet(zi cluster.ZoneIterator, gw string) error {
var err error
zi.ForEachZone(func(z *zones.Zone) bool {
zi.ForEachZone(func(z *cluster.Zone) bool {
for _, m := range z.Machines {
if m.Name == gw {
z.SetGateway(m.ID, true)
@@ -74,9 +75,9 @@ var gatewayUnsetCmd = &cobra.Command{
},
}
func gatewayUnset(zi zones.ZoneIterator, ngw string) error {
func gatewayUnset(zi cluster.ZoneIterator, ngw string) error {
var err error
zi.ForEachZone(func(z *zones.Zone) bool {
zi.ForEachZone(func(z *cluster.Zone) bool {
for _, m := range z.Machines {
if m.Name == ngw && m.IsGateway() {
z.SetGateway(m.ID, false)
@@ -115,10 +116,10 @@ var gatewayListCmd = &cobra.Command{
},
}
func gatewayListAll(zi zones.ZoneIterator) error {
func gatewayListAll(zi cluster.ZoneIterator) error {
var b bytes.Buffer
var err error
zi.ForEachZone(func(z *zones.Zone) bool {
zi.ForEachZone(func(z *cluster.Zone) bool {
b.WriteString(z.Name + ":")
var sIDs []string
ids, num := z.GatewayIDs()
@@ -137,10 +138,10 @@ func gatewayListAll(zi zones.ZoneIterator) error {
return err
}
func gatewayList(zi zones.ZoneIterator, m string) error {
func gatewayList(zi cluster.ZoneIterator, m string) error {
var b bytes.Buffer
var err error
zi.ForEachZone(func(z *zones.Zone) bool {
zi.ForEachZone(func(z *cluster.Zone) bool {
if z.Name == m {
b.WriteString(z.Name + ":")
ids, num := z.GatewayIDs()
+1 -1
View File
@@ -1,4 +1,4 @@
package zones
package cluster
import (
"bytes"
@@ -1,4 +1,4 @@
package zones
package cluster
import (
"os"
+2
View File
@@ -0,0 +1,2 @@
// Package cluster contains information about the cluster
package cluster
+1 -1
View File
@@ -1,4 +1,4 @@
package zones
package cluster
import (
"bytes"
@@ -1,4 +1,4 @@
package zones
package cluster
import "errors"
+1 -1
View File
@@ -1,4 +1,4 @@
package zones
package cluster
import "darvaza.org/slog"
@@ -1,4 +1,4 @@
package zones
package cluster
import (
"net/netip"
@@ -1,4 +1,4 @@
package zones
package cluster
import (
"bytes"
@@ -1,4 +1,4 @@
package zones
package cluster
import (
"bytes"
@@ -1,4 +1,4 @@
package zones
package cluster
import (
"context"
@@ -1,4 +1,4 @@
package zones
package cluster
import (
"io/fs"
+1 -1
View File
@@ -1,4 +1,4 @@
package zones
package cluster
import (
"fmt"
+1 -1
View File
@@ -1,4 +1,4 @@
package zones
package cluster
import (
"io/fs"
+1 -1
View File
@@ -1,4 +1,4 @@
package zones
package cluster
// SyncAll updates all config files
func (m *Zones) SyncAll() error {
@@ -1,4 +1,4 @@
package zones
package cluster
import (
"io/fs"
+1 -2
View File
@@ -1,5 +1,4 @@
// Package zones contains information about the cluster
package zones
package cluster
import (
"io/fs"
@@ -1,4 +1,4 @@
package zones
package cluster
import (
"fmt"