From 451a3400b76511393c62a444f588a4ed15f4a549 Mon Sep 17 00:00:00 2001 From: Michael Lando Date: Sun, 19 Feb 2017 10:28:42 +0200 Subject: Initial OpenECOMP SDC commit Change-Id: I0924d5a6ae9cdc161ae17c68d3689a30d10f407b Signed-off-by: Michael Lando --- catalog-be/README.txt | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 catalog-be/README.txt (limited to 'catalog-be/README.txt') diff --git a/catalog-be/README.txt b/catalog-be/README.txt new file mode 100644 index 0000000000..575484081f --- /dev/null +++ b/catalog-be/README.txt @@ -0,0 +1,41 @@ +#open rpm +#install jetty +#run installJettyBase.sh +#copy jvm.properties to base +#export variables +#run startJetty.sh + +#Properties: + + STOP.PORT=[number] + The port to use to stop the running Jetty server. + Required along with STOP.KEY if you want to use the --stop option above. + + STOP.KEY=[alphanumeric] + The passphrase defined to stop the server. + Requried along with STOP.PORT if you want to use the --stop option above. + + STOP.WAIT=[number] + The time (in seconds) to wait for confirmation that the running + Jetty server has stopped. If not specified, the stopper will wait + indefinitely. Use in conjunction with the --stop option. + + +#Upload Normative types: +# 1. create zip file containing the yaml +# 2. create json string (payloadName should be the yml file name): { +# "payloadName":"normative-types-new-root.yml", +# "userId":"adminid", +# "resourceName":"tosca.nodes.Root", +# "description":"Represents a generic software component that can be managed and run by a Compute Node Type.", +# "resourceIconPath":"defaulticon", +# "category":"Abstract", +# "tags":["Root"] +# } +# +# +# 3. run curl command: curl -v -F resourceMetadata= -F resourceZip=@ /sdc2/rest/v1/catalog/upload/multipart +# e.g.: +# curl -v -F resourceMetadata='{"payloadName":"normative-types-new-root.yml","userId":"adminid","resourceName":"tosca.nodes.Root","description":"Represents a generic software component that can be managed and run by a Compute Node Type.","resourceIconPath":"defaulticon","category":"Abstract","tags":["Root"]}' -F resourceZip=@/var/tmp/normative-types-new-root.zip localhost:8080/sdc2/rest/v1/catalog/upload/multipart + +# -- cgit 1.2.3-korg