Skip to content

Commit

Permalink
Test and be stage v0.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
cb-github-robot authored Nov 28, 2024
2 parents a152630 + c9acd2c commit 2f13107
Show file tree
Hide file tree
Showing 6 changed files with 158 additions and 666 deletions.
6 changes: 3 additions & 3 deletions cmd/cm-beetle/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ func main() {

// Load the state from the file back into the key-value store
if err := lkvstore.LoadLkvStore(); err != nil {
log.Error().Err(err).Msgf("error loading data from the lkvstore (file).")
log.Warn().Err(err).Msgf("note - the lkvstore (file) may not exist at the initial startup.")
}

log.Info().Msg("successfully load data from the lkvstore (file).")
Expand Down Expand Up @@ -197,7 +197,7 @@ func main() {
log.Debug().Msgf("creating the default namespace (%s)", common.DefaulNamespaceId)
nsInfo, err := common.GetNamespace(common.DefaulNamespaceId)
if err != nil {
log.Debug().Msgf("not found, the default namespace (nsId: %s)", common.DefaulNamespaceId)
log.Debug().Msgf("not found the default namespace (nsId: %s)", common.DefaulNamespaceId)
nsReq := common.NsReq{
Name: common.DefaulNamespaceId,
}
Expand All @@ -206,7 +206,7 @@ func main() {
log.Error().Err(err).Msg("failed to create a namespace")
}
}
log.Info().Msgf("the default namespace (nsId: %s)", nsInfo.Id)
log.Info().Msgf("created the default namespace (nsId: %s)", nsInfo.Id)

// Launch API servers (REST)
wg := new(sync.WaitGroup)
Expand Down
6 changes: 3 additions & 3 deletions deployments/docker-compose/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ networks:
services:
# cm-beetle
cm-beetle:
image: cloudbaristaorg/cm-beetle:0.2.4
image: cloudbaristaorg/cm-beetle:0.2.5
container_name: cm-beetle
pull_policy: missing
build:
Expand Down Expand Up @@ -55,7 +55,7 @@ services:

# CB-Tumblebug
cb-tumblebug:
image: cloudbaristaorg/cb-tumblebug:0.10.1
image: cloudbaristaorg/cb-tumblebug:0.10.3
container_name: cb-tumblebug
# build:
# context: ${COMPOSE_PROJECT_ROOT}/../cb-tumblebug
Expand All @@ -82,7 +82,7 @@ services:
- TB_SPIDER_REST_URL=http://cb-spider:1024/spider
- TB_ETCD_ENDPOINTS=http://cb-tumblebug-etcd:2379
- TB_TERRARIUM_REST_URL=http://mc-terrarium:8055/terrarium
# - TB_ETCD_AUTH_ENABLED=true
# - TB_ETCD_AUTH_ENABLED=false
# - TB_ETCD_USERNAME=default
# - TB_ETCD_PASSWORD=default
# - TB_SQLITE_URL=localhost:3306
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@

### Envrionment

- Beetle v0.2.4
- Beetle v0.2.5
- cm-model v0.0.3 (Damselfly v0.2.1)
- Honeybee v0.2.10
- Tumblebug v0.10.1 (Spider v0.10.0, CB-MapUI v0.10.0)
- Tumblebug v0.10.3 (Spider v0.10.0, CB-MapUI v0.10.0)

### Scenario

Expand Down
22 changes: 21 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ go 1.23.0
// replace github.com/cloud-barista/cm-model => ../cm-model

require (
github.com/cloud-barista/cb-tumblebug v0.10.1
github.com/cloud-barista/cb-tumblebug v0.10.3
github.com/cloud-barista/cm-model v0.0.3
github.com/fsnotify/fsnotify v1.7.0
github.com/go-playground/validator/v10 v10.22.0
Expand All @@ -26,6 +26,9 @@ require (
require (
filippo.io/edwards25519 v1.1.0 // indirect
github.com/KyleBanks/depth v1.2.1 // indirect
github.com/cloud-barista/mc-terrarium v0.0.18 // indirect
github.com/coreos/go-semver v0.3.1 // indirect
github.com/coreos/go-systemd/v22 v22.5.0 // indirect
github.com/gabriel-vasile/mimetype v1.4.4 // indirect
github.com/ghodss/yaml v1.0.0 // indirect
github.com/go-openapi/jsonpointer v0.21.0 // indirect
Expand All @@ -36,9 +39,12 @@ require (
github.com/go-playground/universal-translator v0.18.1 // indirect
github.com/go-sql-driver/mysql v1.8.1 // indirect
github.com/goccy/go-json v0.10.3 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/golang/snappy v0.0.4 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/jedib0t/go-pretty/v6 v6.5.6 // indirect
github.com/josharian/intern v1.0.0 // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/labstack/gommon v0.4.2 // indirect
Expand All @@ -47,10 +53,12 @@ require (
github.com/mailru/easyjson v0.7.7 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mattn/go-runewidth v0.0.15 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/pelletier/go-toml/v2 v2.2.2 // indirect
github.com/rivo/uniseg v0.2.0 // indirect
github.com/sagikazarmark/locafero v0.6.0 // indirect
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
github.com/sourcegraph/conc v0.3.0 // indirect
Expand All @@ -60,16 +68,28 @@ require (
github.com/subosito/gotenv v1.6.0 // indirect
github.com/swaggo/files/v2 v2.0.1 // indirect
github.com/syndtr/goleveldb v1.0.0 // indirect
github.com/tidwall/gjson v1.17.1 // indirect
github.com/tidwall/match v1.1.1 // indirect
github.com/tidwall/pretty v1.2.1 // indirect
github.com/tidwall/sjson v1.2.5 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasttemplate v1.2.2 // indirect
go.etcd.io/etcd/api/v3 v3.5.12 // indirect
go.etcd.io/etcd/client/pkg/v3 v3.5.12 // indirect
go.etcd.io/etcd/client/v3 v3.5.12 // indirect
go.uber.org/multierr v1.11.0 // indirect
go.uber.org/zap v1.26.0 // indirect
golang.org/x/crypto v0.25.0 // indirect
golang.org/x/exp v0.0.0-20240716175740-e3f259677ff7 // indirect
golang.org/x/net v0.27.0 // indirect
golang.org/x/sys v0.22.0 // indirect
golang.org/x/text v0.16.0 // indirect
golang.org/x/time v0.5.0 // indirect
golang.org/x/tools v0.23.0 // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20240311132316-a219d84964c2 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240314234333-6e1732d8331c // indirect
google.golang.org/grpc v1.62.1 // indirect
google.golang.org/protobuf v1.33.0 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
modernc.org/gc/v3 v3.0.0-20240304020402-f0dba7c97c2b // indirect
Expand Down
Loading

0 comments on commit 2f13107

Please sign in to comment.