Skip to content

Commit e934511

Browse files
committed
fix makefilke
1 parent 775fccb commit e934511

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ IMAGE_REPO := $(IMAGE_REGISTRY)/$(IMAGE_NAME)
6868
GIT_TAG ?= $(shell git describe --tags --dirty --always)
6969
GOPROXY=${GOPROXY:-""}
7070
IMG ?= $(IMAGE_REPO):$(GIT_TAG)
71-
BUILDER_IMAGE ?= golang:$(GO_VERSION)
71+
BUILDER_IMAGE ?= docker.io/library/golang:$(GO_VERSION)
7272
KIND_CLUSTER_NAME ?= kind
7373
CGO_ENABLED ?= 0
7474

@@ -226,7 +226,7 @@ endif
226226

227227
.PHONY: install
228228
install: manifests kustomize ## Install CRDs into the K8s cluster specified in ~/.kube/config.
229-
$(KUSTOMIZE) build config/crd | $(KUBECTL) apply -f -
229+
$(KUSTOMIZE) build config/crd | $(KUBECTL) apply --server-side --force-conflicts -f -
230230

231231
.PHONY: uninstall
232232
uninstall: manifests kustomize ## Uninstall CRDs from the K8s cluster specified in ~/.kube/config. Call with ignore-not-found=true to ignore resource not found errors during deletion.

go.mod

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,3 +116,5 @@ require (
116116
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.31.1 // indirect
117117
sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 // indirect
118118
)
119+
120+
replace github.com/google/cel-go => github.com/google/cel-go v0.22.1

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ github.com/golang/protobuf v1.5.4 h1:i7eJL8qZTpSEXOPTxNKhASYpMn+8e5Q6AdndVa1dWek
5656
github.com/golang/protobuf v1.5.4/go.mod h1:lnTiLA8Wa4RWRcIUkrtSVa5nRhsEGBg48fD6rSs7xps=
5757
github.com/google/btree v1.1.3 h1:CVpQJjYgC4VbzxeGVHfvZrv1ctoYCAI8vbl07Fcxlyg=
5858
github.com/google/btree v1.1.3/go.mod h1:qOPhT0dTNdNzV6Z/lhRX0YXUafgPLFUh+gZMl761Gm4=
59-
github.com/google/cel-go v0.23.2 h1:UdEe3CvQh3Nv+E/j9r1Y//WO0K0cSyD7/y0bzyLIMI4=
60-
github.com/google/cel-go v0.23.2/go.mod h1:52Pb6QsDbC5kvgxvZhiL9QX1oZEkcUF/ZqaPx1J5Wwo=
59+
github.com/google/cel-go v0.22.1 h1:AfVXx3chM2qwoSbM7Da8g8hX8OVSkBFwX+rz2+PcK40=
60+
github.com/google/cel-go v0.22.1/go.mod h1:BuznPXXfQDpXKWQ9sPW3TzlAJN5zzFe+i9tIs0yC4s8=
6161
github.com/google/gnostic-models v0.6.9 h1:MU/8wDLif2qCXZmzncUQ/BOfxWfthHi63KqpoNbWqVw=
6262
github.com/google/gnostic-models v0.6.9/go.mod h1:CiWsm0s6BSQd1hRn8/QmxqB6BesYcbSZxsz9b0KuDBw=
6363
github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=

pkg/defaults.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ limitations under the License.
1717
package pkg
1818

1919
const (
20-
LOADER_IMAGE = "m.daocloud.io/docker.io/inftyai/model-loader:v0.0.10"
20+
LOADER_IMAGE = "docker.io/inftyai/model-loader:v0.0.10"
2121
)

0 commit comments

Comments
 (0)