mirror of
https://github.com/kubernetes-sigs/prometheus-adapter.git
synced 2026-04-06 01:38:10 +00:00
Provide basic deployment instructions
This commit introduces a Dockerfile with some basic deployment instructions, as well as a makefile for convinience.
This commit is contained in:
parent
4dd94c3c85
commit
66cf5eaafb
4 changed files with 79 additions and 0 deletions
13
Makefile
Normal file
13
Makefile
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
all: build
|
||||
|
||||
build:
|
||||
go build cmd/adapter.go
|
||||
.PHONY: build
|
||||
|
||||
docker-build: adapter
|
||||
docker build -t cm-adapter -f deploy/Dockerfile .
|
||||
.PHONY: docker-build
|
||||
|
||||
clean:
|
||||
rm adapter
|
||||
.PHONY: clean
|
||||
Loading…
Add table
Add a link
Reference in a new issue