diff options
author | Aria <me@aria.rip> | 2023-09-25 00:12:03 +0100 |
---|---|---|
committer | Aria <me@aria.rip> | 2023-09-25 00:12:03 +0100 |
commit | 0bd62b1d8b13ad1d38f61a6388c1f2e292b191a5 (patch) | |
tree | 68cf96bbcd113061daab8adabdfc8cb4fccde27f /Makefile |
fockin BOOOILLEEERPLAAATEEE
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..c71d776 --- /dev/null +++ b/Makefile @@ -0,0 +1,46 @@ +GOARCH = amd64 + +UNAME = $(shell uname -s) + +ifndef OS + ifeq ($(UNAME), Linux) + OS = linux + else ifeq ($(UNAME), Darwin) + OS = darwin + endif +endif + +.DEFAULT_GOAL := all + +all: fmt build start + +build: + GOOS=$(OS) GOARCH="$(GOARCH)" go build -o vault/plugins/vault-plugin-kerberos-secrets cmd/vault-plugin-kerberos-secrets/main.go + +start: + vault server -dev -log-level=debug -dev-root-token-id=root -dev-plugin-dir=./vault/plugins + +integration-test: enable test-config test-role test-rotate test-cred + +enable: + vault secrets enable -path=krb vault-plugin-kerberos-secrets + +test-config: + vault write krb/config realm=TARDISPROJECT.UK kdc=localhost:88 admin_server=localhost:749 kpasswd_server=localhost:749 username=tcmal password=1234 + +test-role: + vault write krb/static-role/test principal=test + +test-rotate: + vault write -f krb/rotate-static-role/test + +test-cred: + vault read krb/static-cred/test + +clean: + rm -f ./vault/plugins/vault-plugin-kerberos-secrets + +fmt: + go fmt $$(go list ./...) + +.PHONY: build clean fmt start enable test_config |