summaryrefslogtreecommitdiffstats
path: root/docs/index.rst
AgeCommit message (Expand)AuthorFilesLines
2019-05-30Release Notes upgradedNoemi Wagner1-1/+4
2019-05-17Link correction in Landing page and removal of Dublin release namingNoemi Wagner1-3/+3
2019-05-14Structural changes to documentationNoemi Wagner1-31/+35
2019-05-14Updating release nameSofia Wallin1-2/+2
2019-05-13VNFRQTS - Updating title to VNF and PNFHagop Bozawglanian1-30/+31
2019-04-26Overview document createdNoemi Wagner1-0/+1
2019-02-20Sidebar enhancementAndrea Visnyei1-2/+2
2019-01-08Adding HomeNoemi Wagner1-0/+1
2018-12-18Landing page restructuredNoemi Wagner1-17/+32
2018-12-05New landing page structureNoemi Wagner1-10/+36
2018-11-30Remove Beijing referencesEric Debeau1-3/+4
2018-11-23Removal of index and search from the landing pageGergely Csatari1-8/+0
2018-09-13Switch theme and add report issueRich Bennett1-2/+2
2018-09-01Cherry pick beijing improvements to masterRich Bennett1-5/+3
2018-08-31DOC - Updating location of the VNFRQTSBozawglanian, Hagop (hb755d)1-0/+1
2018-06-14Add description of master and stable releasesRich Bennett1-0/+10
2018-01-16Create use case example and structureRich Bennett1-0/+1
2017-11-03Multiple editorial improvementsRich Bennett1-3/+2
2017-09-14Add aai/search-data-service as submodule to docsMatthewHarffy1-1/+1
2017-09-13Enhancement and additions for webinarRich Bennett1-6/+4
2017-07-25[DOC-57 Add vnfrqts/guidelines submodule]Rich Bennett1-5/+9
2017-07-19[DOC-23]Initial structure and Documentation GuideRich Bennett1-0/+20
--debug)] " echo -n "(-h|--host) <bus-host> " echo -n "[(-p|--port) <bus-port>] " echo "(-e|--email) <email>" } BUS_PORT=3904 # command line options parsing until [[ -z "$1" ]]; do case $1 in -d|--debug) set -x ;; -h|--host) shift BUS_HOST=$1 ;; -p|--port) shift BUS_PORT=$1 ;; -e|--email) shift EMAIL=$1 ;; *) usage exit 1 ;; esac shift done if [[ -z ${BUS_HOST} ]]; then echo "An UEB/DMAAP server must be provided." echo usage exit 1 fi if [[ -z ${EMAIL} ]]; then echo "An email address must be provided." usage exit 2 fi REQUEST_API_KEY_BODY=$(< <(cat <<EOF { "email": "${EMAIL}", "description": "Generated by PDP-D $(hostname -f)" } EOF )) unset http_proxy curl -s -X POST --data "${REQUEST_API_KEY_BODY}" --header "Content-Type: application/json" http://${BUS_HOST}:${BUS_PORT}/v1/apiKeys/create