Skip to content

Commit

Permalink
Update "skaffold.yaml" in the current folder in-place
Browse files Browse the repository at this point in the history
bingo add skaffold
  • Loading branch information
qclaogui committed Dec 10, 2024
1 parent 0249ddd commit 5d738a4
Show file tree
Hide file tree
Showing 5 changed files with 1,601 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .bingo/Variables.mk
Original file line number Diff line number Diff line change
Expand Up @@ -125,3 +125,9 @@ $(PROTOC_GEN_OPENAPIV2): $(BINGO_DIR)/protoc-gen-openapiv2.mod
@echo "(re)installing $(GOBIN)/protoc-gen-openapiv2-v2.24.0"
@cd $(BINGO_DIR) && GOWORK=off $(GO) build -mod=mod -modfile=protoc-gen-openapiv2.mod -o=$(GOBIN)/protoc-gen-openapiv2-v2.24.0 "github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-openapiv2"

SKAFFOLD := $(GOBIN)/skaffold-v2.13.2
$(SKAFFOLD): $(BINGO_DIR)/skaffold.mod
@# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies.
@echo "(re)installing $(GOBIN)/skaffold-v2.13.2"
@cd $(BINGO_DIR) && GOWORK=off $(GO) build -mod=mod -modfile=skaffold.mod -o=$(GOBIN)/skaffold-v2.13.2 "github.com/GoogleContainerTools/skaffold/v2/cmd/skaffold"

16 changes: 16 additions & 0 deletions .bingo/skaffold.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
module _ // Auto generated by https://github.com/bwplotka/bingo. DO NOT EDIT

go 1.23.4

exclude (
github.com/opencontainers/image-spec v1.1.0-rc3
github.com/opencontainers/image-spec v1.1.0-rc4
)

exclude github.com/docker/distribution v2.8.3+incompatible

exclude go.opentelemetry.io/otel/metric v0.37.0

exclude github.com/karrick/godirwalk v1.17.0

require github.com/GoogleContainerTools/skaffold/v2 v2.13.2 // cmd/skaffold
Loading

0 comments on commit 5d738a4

Please sign in to comment.