Skip to content

Commit 6b0e6f2

Browse files
authored
Merge pull request #572 from ooq/rm_gcbsigner
Remove gcbsigner
2 parents 155d9ea + 3f99b38 commit 6b0e6f2

File tree

10 files changed

+2
-924
lines changed

10 files changed

+2
-924
lines changed

Makefile

-11
Original file line numberDiff line numberDiff line change
@@ -89,16 +89,12 @@ REGISTRY?=gcr.io/kritis-project
8989
# TODO(tstromberg): Determine if it is possible to combine these two variables.
9090
TEST_REGISTRY?=gcr.io/$(GCP_PROJECT)
9191
SERVICE_PACKAGE = $(REPOPATH)/cmd/kritis/admission
92-
GCB_SIGNER_PACKAGE = $(REPOPATH)/cmd/kritis/gcbsigner
9392
SIGNER_PACKAGE = $(REPOPATH)/cmd/kritis/signer
9493

9594

9695
out/kritis-server: $(GO_FILES)
9796
GOARCH=$(GOARCH) GOOS=linux CGO_ENABLED=0 go build -ldflags "$(GO_LDFLAGS)" -o $@ $(SERVICE_PACKAGE)
9897

99-
out/gcb-signer: $(GO_FILES)
100-
GOARCH=$(GOARCH) GOOS=linux CGO_ENABLED=0 go build -ldflags "$(GO_LDFLAGS)" -o $@ $(GCB_SIGNER_PACKAGE)
101-
10298
out/signer: $(GO_FILES)
10399
GOARCH=$(GOARCH) GOOS=linux CGO_ENABLED=0 go build -ldflags "$(GO_LDFLAGS)" -o $@ $(SIGNER_PACKAGE)
104100

@@ -182,13 +178,6 @@ integration-in-docker: build-push-image
182178
-e GOOGLE_APPLICATION_CREDENTIALS=$(GOOGLE_APPLICATION_CREDENTIALS) \
183179
$(REGISTRY)/kritis-integration:$(IMAGE_TAG)
184180

185-
.PHONY: gcb-signer-image
186-
gcb-signer-image: out/gcb-signer-image
187-
docker build -t $(REGISTRY)/kritis-gcb-signer:$(IMAGE_TAG) -f deploy/kritis-gcb-signer/Dockerfile .
188-
189-
.PHONY: gcb-signer-push-image
190-
gcb-signer-push-image: gcb-signer-image
191-
docker push $(REGISTRY)/kritis-gcb-signer:$(IMAGE_TAG)
192181

193182
# Fully setup local integration testing: only needs to run just once
194183
# TODO: move entire setup into bash script

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ packageVulnerabilityPolicy:
3333
In addition to the enforcement this project also contains *signers* that can be
3434
used to create [Grafeas](https://github.com/grafeas/grafeas) Attestation
3535
Occurrences to be used in other enforcement systems like [Binary
36-
Authorization](https://cloud.google.com/binary-authorization/). For details see
37-
[Kritis Signer](docs/signer_install.md).
36+
Authorization](https://cloud.google.com/binary-authorization/). (TODO#571: add doc and fix link)
37+
For details see upcoming doc [Kritis Signer](docs/signer.md).
3838
3939
## Getting Started
4040

artifacts/examples/kritis-gcb-signer-deployment.yaml

-27
This file was deleted.

cmd/kritis/gcbsigner/main.go

-95
This file was deleted.

deploy/kritis-gcb-signer/Dockerfile

-27
This file was deleted.

docs/signer_install.md

-149
This file was deleted.

0 commit comments

Comments
 (0)