To spin up a minimalistic deployment of keytransparency on Google Compute Engine, run the following command to create, upload, and run all containers:
./scripts/deploy.sh
You can observe deployed services and their pod's logs by running:
kubectl proxy --port=8080
After that you should be able to visit http://localhost:8080/ui .
To delete all data written to the DB you can run:
kubectl delete -f deploy/kubernetes/db-deployment.yaml
Alternatively, you use the kubernetes HTTP user interface:
- Start a proxy to the kubernetes api by running
kubectl proxy --port=8080
. - Find and delete the mysql pod/deployment on the user interface.