diff options
author | Edyta Krukowska <edyta.krukowska@nokia.com> | 2021-02-11 09:55:21 +0100 |
---|---|---|
committer | Edyta Krukowska <edyta.krukowska@nokia.com> | 2021-02-15 09:46:42 +0100 |
commit | e1e16edcdd05271c7e133dc758b409433f783089 (patch) | |
tree | 264140d6a5dc77206f4bc28cb05b0d415d192a14 /Makefile | |
parent | 51d22b80827fc7982ec45fd5c671658df0c35c4b (diff) |
Upgrade libraries and add instructions to makefile3.5.2
Issue-ID: DCAEGEN2-2594
Signed-off-by: Edyta Krukowska <edyta.krukowska@nokia.com>
Change-Id: I0d16307424de3b677ceed6edc94318f79e565dc2
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -9,10 +9,13 @@ build: start-service: @echo "##### Start inventory api service #####" @echo "########################### IMPORTANT ############################################################################################" - @echo "##### Before you start service you must properly configure connection to database in ./tools/congif_local.json! #####" + @echo "##### Before you start service you must properly configure connection to database in ./tools/congif_local.json!: #####" + @echo "##### Check password to inventory api on your lab: kubectl get secret dev-dcae-inventory-api-pg-user-creds -o yaml, decode it #####" + @echo "##### from base64. #####" + @echo "##### Change Worker_IP adress in url, expose port from svc dcae-inv-pg-primary, and also change it in url #####" @echo "##### Now service should up and running pls check: http://localhost:9080/swagger.json or http://localhost:9080/servicehealth #####" @echo "##################################################################################################################################" - java -DdevMode=true --add-opens java.base/java.lang=ALL-UNNAMED -jar ./target/inventory-api-3.5.0-SNAPSHOT.jar server ./tools/config_local.json + java -DdevMode=true --add-opens java.base/java.lang=ALL-UNNAMED -jar ./target/inventory-api-3.5.1-SNAPSHOT.jar server ./tools/config_local.json @echo "##### DONE #####" |