A deployments repository to measure team performance
This application is a proof of concept, it is not production ready. A non-exhaustive list of known limitations:
- No security whatsoever - anonymous users can easily delete or alter all data
See docker-library/openjdk#135 as to why spring.boot.mongodb.. env vars don't work
docker stop deployservice
docker rm deployservice
docker pull awconstable/deployservice
docker run --name deployservice -d -p 8080:8080 --network <mongo network> -e spring_data_mongodb_host=<mongo host> -e spring_data_mongodb_port=<mongo port> -e spring_data_mongodb_database=<mondo db> -e server_ssl_key-store-type=<keystore type - PKCS12> -e server_ssl_key-store=/deployservice.p12 -e server_ssl_key-store-password=<password> -e server_ssl_key-alias=<alias> -e spring_cloud_consul_host=<consul host> -e spring_cloud_consul_port=<consul port> -v <cert path>:/deployservice.p12 awconstable/deployservice:latest
POST http://localhost:8088/api/v1/deployment
Accept: application/json
Cache-Control: no-cache
Content-Type: application/json
{
"deploymentId": "d1",
"deploymentDesc": "deployment d1",
"applicationId": "a1",
"rfcId": "rfc1",
"created": "2020-11-30T13:00:00.000+00:00",
"source": "test",
"changes": [
{
"id": "c123",
"created": "2020-11-20T12:00:00.000+00:00",
"source": "test",
"eventType": "test"
},
{
"id": "c234",
"created": "2020-11-20T12:00:00.000+00:00",
"source": "test",
"eventType": "test"
}
]
}