A reactive back end for pet battle based on the quarkus reactive mutiny framework with mongodb and panache.
make podman-run
Database:
podman run --name mongo -p 27017:27017 mongo:latest
Application:
mvn -s settings.xml quarkus:dev
OR
java -Dquarkus-profile=dev -jar ./target/pet-battle-api-1.0-SNAPSHOT-runner
OR
podman run -e QUARKUS_PROFILE=dev -e quarkus.mongodb.connection-string=mongodb://localhost:27017 quay.io/petbattle/pet-battle-api:latest
OR we can also run a podman pod
as opposed to single containers:
podman run -d --pod new:pb -p 27017:27017 -p8080:8080 -p8443:8443 mongo:latest
podman run -d --pod pb -e quarkus.mongodb.connection-string=mongodb://localhost:27017 quay.io/eformat/pet-battle-api:latest
See Makefile for container targets:
make podman-build
make podman-run
make podman-stop
make podman-push
Native quarkus build can be run and run using:
make podman-build-native
./target/pet-battle-api-1.6.0-runner
Create a project
oc new-project cats
Deploy MongoDB
oc apply -f mongodb-persistent.yml
oc new-app mongodb-persistent -p MONGODB_DATABASE=cats -p MONGODB_USER=catuser -p MONGODB_PASSWORD=password -p MONGODB_ADMIN_PASSWORD=password
Build and deploy application on OpenShift using Jkube-s2i
mvn clean package oc:build oc:resource oc:apply
Start the jkube remote service in OpenShift (this will port-forward to localhost)
mvn oc:remote-dev
Start developing locally (but connected to remote environment!) we use a profile to setup DB connection as if it were local
mvn quarkus:dev -Dquarkus.profile=jkube
New project
oc new-project cats
Using the mongo-persistent template
on OpenShift
helm template --dependency-update cats -f chart/values.yaml chart | oc apply -f-
OR from deployed chart
helm repo add https://petbattle.github.io/helm-charts
helm install pet-battle-api https://petbattle.github.io/helm-charts/pet-battle-api-1.1.0.tgz
With mongodb replicaset
(TODO: replicaset commented out for now but works ok)
Get SCC UID for project
oc new-project cats
SCC=$(oc get project cats -o jsonpath='{.metadata.annotations.openshift\.io/sa\.scc\.uid-range}')
SCCUID=${SCC%%/*}
helm template foobar -f chart/values.yaml --set mongodb-replicaset.securityContext.fsGroup=$SCCUID --set mongodb-replicaset.securityContext.runAsUser=$SCCUID --set mongodb-replicaset.persistentVolume.storageClass=gp2 --set mongodb-replicaset.persistentVolume.size=1Gi chart | oc apply -f-
OpenShift has a cool feature where you can easily deploy an appl in development using a JAR file
There are two artifacts you will need in the Release folder
- From
Developer
perspectiveAdd
YAML file -mongodb-persistent.yml
- drag-n-drop this to create the MongoDB template. - Instantiate the mongo database instance, use
catuser
,password
andcats
as the database parameters: - Import JDK 21 image builder if it does not exist:
oc -n openshift import-image java:openjdk-21 --from=registry.access.redhat.com/ubi9/openjdk-21:latest --confirm
oc -n openshift annotate istag java:openjdk-21 supports='java:21,java' tags='builder,java,openjdk'
- From
Topology
view drag-n-drop thepet-battle-api-<version>-runner.jar
to build and create the app deployment. Use theopenjdk-21
Builder image version drop down imported in (3) - Wait for application to deploy and try it out.
Deploy Mongo
oc new-project cats
oc apply -n openshift -f mongodb-persistent.yml
oc new-app mongodb-persistent -p MONGODB_DATABASE=cats -p MONGODB_USER=catuser -p MONGODB_PASSWORD=password -p MONGODB_ADMIN_PASSWORD=password
We are going to use a 2-step build process - see here for more details.
Create the builder image to build our code.
oc new-build --name=cats-build \
quay.io/eformat/ubi-mvn-builder:latest~https://github.com/petbattle/pet-battle-api \
-e MAVEN_BUILD_OPTS="-Dquarkus.package.type=fast-jar -DskipTests" \
-e MAVEN_CLEAR_REPO="true"
(optional) If local nexus deployed to OpenShift, use this env.var
oc set env bc/cats-build MAVEN_MIRROR_URL=http://nexus.nexus.svc.cluster.local:8081/repository/maven-public/
Once complete, create the runtime image.
oc new-build --name=cats \
--build-arg BUILD_IMAGE=image-registry.openshift-image-registry.svc:5000/$(oc project -q)/cats-build:latest \
--strategy docker --dockerfile - < Dockerfile.s2i
Set triggers in case we change the build image:
oc set triggers bc/cats --from-image=$(oc project -q)/cats-build:latest
Deploy the app:
oc new-app cats \
-e MONGODB_SERVICE_HOST=mongodb \
-e MONGODB_SERVICE_PORT=27017 \
-e MONGODB_DATABASE=cats \
-e MONGODB_USER=catuser \
-e MONGODB_PASSWORD=password \
-e MONGODB_ADMIN_PASSWORD=password
oc expose svc/cats
oc patch route/cats \
--type=json -p '[{"op":"add", "path":"/spec/tls", "value":{"termination":"edge","insecureEdgeTerminationPolicy":"Redirect"}}]'
Swagger is available at:
http://cats-cats.apps.<cluster-domain>/swagger-ui
Run the unit tests.
mvn clean test
NOTE: When running jmeter you need to have the pet-battle-api service is up running.
Run the unit and jmeter performance tests.
mvn clean verify
Run just the jmeter performance test.
mvn jmeter:jmeter
Run the jmeter performance test in the gui.
mvn jmeter:configure jmeter:gui -DguiTestFile=src/test/jmeter/pet-battle-api-jmeter.jmx
View test coverage report
xdg-open target/jacoco-report/index.html
Test manually
export CATID=5e69e003a765314bf6d04281
export HOST=0.0.0.0:8080
curl -s -H "Content-Type: application/json" -X GET http://${HOST}/cats | jq .
curl -s -H "Content-Type: application/json" -X GET http://${HOST}/cats/ids | jq .
curl -s -H "Content-Type: application/json" -X GET http://${HOST}/cats/count | jq .
curl -s -H "Content-Type: application/json" -X GET http://${HOST}/cats/${CATID} | jq .
curl -s -H "Content-Type: application/json" -X GET http://${HOST}/cats/${CATID} | jq ".id"
curl -s -H "Content-Type: application/json" -X GET http://${HOST}/cats/${CATID} | jq ".count"
curl -s -H "Content-Type: application/json" -X DELETE http://${HOST}/cats/${CATID}
curl -s -H "Content-Type: application/json" -X PUT http://${HOST}/cats/${CATID}
curl -s -H "Content-Type: application/json" -X GET http://${HOST}/cats/${CATID} | jq ".image" | sed -e 's|"||g' | base64 -d > ~/Pictures/foo.png
curl -s -H "Content-Type: application/json" -X GET http://${HOST}/cats/topcats | jq ".[].count"
curl -s -H "Content-Type: application/json" -X DELETE http://${HOST}/cats/kittykiller
curl -s -H "Content-Type: application/json" -X GET "http://${HOST}/cats/datatable?draw=1&start=0&length=10&search\[value\]=" | jq
curl -s -H "Content-Type: application/json" -X GET http://${HOST}/cats/loadlitter
curl http://${HOST}/metrics/application
oc create configmap prom --from-file=prometheus.yml=src/main/kubernetes/prometheus.yml
oc apply -f src/main/kubernetes/prom-rbac.yaml
oc new-app prom/prometheus && oc expose svc/prometheus
oc set volume dc/prometheus --add -t configmap --configmap-name=prom -m /etc/prometheus/prometheus.yml --sub-path=prometheus.yml
oc rollout status -w dc/prometheus
oc new-app grafana/grafana && oc expose svc/grafana
oc rollout status -w dc/grafana
oc delete dc,svc,route,is -lapp=cats
OR
helm delete pet-battle-api
The public key of pet-battle-api images
Cosign public key:
-----BEGIN PUBLIC KEY-----
MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEpQLELVwfM8hcPxqY5xBk5sGdjFDi
dFFy7WrlLfd+YG0NzA/RM3D9uQrUYEjPcU5hH8cBoe7AjVg/k/qO58+Qjg==
-----END PUBLIC KEY-----
The public key is also available online: https://raw.githubusercontent.com/petbattle/pet-battle-api/master/cosign.pub
To verify an image:
curl --progress-bar -o cosign.pub https://raw.githubusercontent.com/petbattle/pet-battle-api/master/cosign.pub
cosign verify --key cosign.pub quay.io/petbattle/pet-battle-api:latest
SBOM generated using syft.
Verify signed SBOM:
cosign verify --key cosign.pub --attachment sbom quay.io/petbattle/pet-battle-api:latest
Verify SBOM attestation:
cosign verify-attestation --key cosign.pub quay.io/petbattle/pet-battle-api:latest
You may also like to use:
cosign tree quay.io/petbattle/pet-battle-api:latest
π¦ Supply Chain Security Related artifacts for an image: quay.io/petbattle/pet-battle-api:latest
βββ πΎ Attestations for an image tag: quay.io/petbattle/pet-battle-api:sha256-ce4f9101b2bf09e89605012c3eb6a4bbeaaee82cd51c1af55a4b4f622b11d504.att
βββ π sha256:c61c9c15f782670c6e521a4f09482ced2854387d6c5fa39378c37d296ff3a181
βββ π Signatures for an image tag: quay.io/petbattle/pet-battle-api:sha256-ce4f9101b2bf09e89605012c3eb6a4bbeaaee82cd51c1af55a4b4f622b11d504.sig
βββ π sha256:d45e1aa311163335366032bf901eea430c72eb870e386c1359e4ae17bfc4af3d
βββ π¦ SBOMs for an image tag: quay.io/petbattle/pet-battle-api:sha256-ce4f9101b2bf09e89605012c3eb6a4bbeaaee82cd51c1af55a4b4f622b11d504.sbom
βββ π sha256:3cd8b8f7f181414447e1035ee681aebd41a1d3608e8eaecf2c516d36ee4df45c