Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions embedded-bins/Makefile.variables
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ kubernetes_build_go_flags = "-v"
#kubernetes_build_go_ldflags =
kubernetes_build_go_ldflags_extra = "-extldflags=-static"

kine_version = 0.14.5
kine_version = 0.14.6
kine_buildimage = $(golang_buildimage)
kine_build_go_tags = nats
#kine_build_go_cgo_enabled =
# Flags taken from https://github.com/k3s-io/kine/blob/v0.14.5/scripts/build#L25
# Flags taken from https://github.com/k3s-io/kine/blob/v0.14.6/scripts/build#L25
kine_build_go_cgo_cflags = -DSQLITE_ENABLE_DBSTAT_VTAB=1 -DSQLITE_USE_ALLOCA=1

#kine_build_go_flags =
Expand Down
2 changes: 1 addition & 1 deletion pkg/component/controller/kine.go
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ func (k *Kine) Start(ctx context.Context) error {
"--endpoint=" + k.Config.DataSource,
// NB: kine doesn't parse URLs properly, so construct potentially
// invalid URLs that are understood by kine.
// https://github.com/k3s-io/kine/blob/v0.14.5/pkg/util/network.go#L5-L13
// https://github.com/k3s-io/kine/blob/v0.14.6/pkg/util/network.go#L5-L13
"--listen-address=unix://" + k.K0sVars.KineSocketPath,
// Enable metrics on port 2380. The default is 8080, which clashes with kube-router.
"--metrics-bind-address=:2380",
Expand Down