Skip to content

Commit

Permalink
Dev local (#5318)
Browse files Browse the repository at this point in the history
  • Loading branch information
hLinx authored Jul 2, 2024
2 parents 2a1fe95 + bd0fb9e commit 085ff3d
Show file tree
Hide file tree
Showing 192 changed files with 26,032 additions and 25,363 deletions.
1 change: 1 addition & 0 deletions .github/workflows/auto_create_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ jobs:
env:
WORKFLOW_ACTION_TOKEN: ${{ secrets.WORKFLOW_ACTION_TOKEN }}
run: |
git checkout ${{ steps.get-current-branch.outputs.current_branch }}
filename="dbm-ui/release/V${{ steps.yaml-data.outputs.data }}_$(date +%Y%m%d).md"
echo -e "## ${{ steps.yaml-data.outputs.data }} - $(date +%Y-%m-%d)\n\n" > ${filename}
echo -e "${{ steps.build-release-log.outputs.changelog }}" >> ${filename}
Expand Down
2 changes: 1 addition & 1 deletion .gtmproject.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ github:
repo_name: "blueking-dbm"

# 指定里程碑ID,
milestone_id: "9"
milestone_id: "10"

project:
# 主分支
Expand Down
7 changes: 7 additions & 0 deletions dbm-services/common/db-dns/dns-api/cmd/bk-dnsapi/main.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
package main

import (
"bk-dnsapi/pkg/config"
"bk-dnsapi/pkg/logger"
"bk-dnsapi/pkg/logger/zap"
"log"
"strings"

Expand Down Expand Up @@ -28,6 +31,9 @@ func main() {
RouterGroup(engine)
InitConfig("config")

zapLogger := zap.New()
logger.InitLogger(zapLogger)

if err := dao.Init(); err != nil {
log.Fatal(err)
}
Expand Down Expand Up @@ -68,4 +74,5 @@ func InitConfig(fileName string) {
if err := viper.MergeInConfig(); err != nil {
log.Fatal(err)
}
config.InitLogger()
}
67 changes: 42 additions & 25 deletions dbm-services/common/db-dns/dns-api/go.mod
Original file line number Diff line number Diff line change
@@ -1,50 +1,67 @@
module bk-dnsapi

go 1.19
go 1.21.11

replace bk-dnsapi/pkg => ./pkg

require (
bk-dnsapi/pkg v0.0.0-20200327131337-b2b67ca8129b
github.com/gin-gonic/gin v1.7.0
github.com/go-mesh/openlogging v1.0.1
github.com/gin-gonic/gin v1.10.0
github.com/jinzhu/gorm v1.9.10
github.com/pkg/errors v0.9.1
github.com/spf13/viper v1.15.0
github.com/spf13/viper v1.19.0
go.opentelemetry.io/contrib/instrumentation/github.com/gin-gonic/gin/otelgin v0.52.0
)

require (
github.com/fsnotify/fsnotify v1.6.0 // indirect
github.com/bytedance/sonic v1.11.6 // indirect
github.com/bytedance/sonic/loader v0.1.1 // indirect
github.com/cloudwego/base64x v0.1.4 // indirect
github.com/cloudwego/iasm v0.2.0 // indirect
github.com/fsnotify/fsnotify v1.7.0 // indirect
github.com/gabriel-vasile/mimetype v1.4.3 // indirect
github.com/gin-contrib/sse v0.1.0 // indirect
github.com/go-playground/locales v0.13.0 // indirect
github.com/go-playground/universal-translator v0.17.0 // indirect
github.com/go-playground/validator/v10 v10.4.1 // indirect
github.com/go-logr/logr v1.4.1 // indirect
github.com/go-logr/stdr v1.2.2 // indirect
github.com/go-playground/locales v0.14.1 // indirect
github.com/go-playground/universal-translator v0.18.1 // indirect
github.com/go-playground/validator/v10 v10.20.0 // indirect
github.com/go-sql-driver/mysql v1.4.1 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/goccy/go-json v0.10.2 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/leodido/go-urn v1.2.0 // indirect
github.com/jsternberg/zap-logfmt v1.3.0 // indirect
github.com/klauspost/cpuid/v2 v2.2.7 // indirect
github.com/leodido/go-urn v1.4.0 // indirect
github.com/magiconair/properties v1.8.7 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/mattn/go-isatty v0.0.20 // 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.0.6 // indirect
github.com/spf13/afero v1.9.3 // indirect
github.com/spf13/cast v1.5.0 // indirect
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/pelletier/go-toml/v2 v2.2.2 // indirect
github.com/sagikazarmark/locafero v0.4.0 // indirect
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
github.com/sourcegraph/conc v0.3.0 // indirect
github.com/spf13/afero v1.11.0 // indirect
github.com/spf13/cast v1.6.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/subosito/gotenv v1.4.2 // indirect
github.com/ugorji/go/codec v1.1.7 // indirect
golang.org/x/crypto v0.0.0-20220525230936-793ad666bf5e // indirect
golang.org/x/sys v0.3.0 // indirect
golang.org/x/text v0.5.0 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/protobuf v1.28.1 // indirect
github.com/subosito/gotenv v1.6.0 // indirect
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
github.com/ugorji/go/codec v1.2.12 // indirect
go.opentelemetry.io/otel v1.27.0 // indirect
go.opentelemetry.io/otel/metric v1.27.0 // indirect
go.opentelemetry.io/otel/trace v1.27.0 // indirect
go.uber.org/multierr v1.10.0 // indirect
go.uber.org/zap v1.27.0 // indirect
golang.org/x/arch v0.8.0 // indirect
golang.org/x/crypto v0.23.0 // indirect
golang.org/x/exp v0.0.0-20230905200255-921286631fa9 // indirect
golang.org/x/net v0.25.0 // indirect
golang.org/x/sys v0.20.0 // indirect
golang.org/x/text v0.15.0 // indirect
google.golang.org/appengine v1.6.8 // indirect
google.golang.org/protobuf v1.34.1 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/yaml.v2 v2.2.8 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)

replace github.com/emicklei/go-restful => github.com/emicklei/go-restful v2.11.0+incompatible
Loading

0 comments on commit 085ff3d

Please sign in to comment.