diff options
author | Rajamohan Raj <rajamohan.raj@intel.com> | 2020-04-10 05:02:58 +0000 |
---|---|---|
committer | Rajamohan Raj <rajamohan.raj@intel.com> | 2020-04-13 20:47:18 +0000 |
commit | f853b30cdc2655f6889f24214ba21791351c0787 (patch) | |
tree | e9b51952b48f6889526084acba7ccd622af213d3 /kud | |
parent | 7945fcd8ed65792eeb174d999138b99dbc936a6f (diff) |
Added query routes for deploymentIntentGroup
In this patch added a route which
can query allIntents belonging to a DeploymentIntentGroup
and another route for querying all intents under an intent
in a deploymentIntentGroup
Issue-ID: MULTICLOUD-1049
Signed-off-by: Rajamohan Raj <rajamohan.raj@intel.com>
Change-Id: I06ec4d2ee8dae2aeca77e4db3ca690863014cc62
Diffstat (limited to 'kud')
-rwxr-xr-x | kud/tests/plugin_collection_v2.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/kud/tests/plugin_collection_v2.sh b/kud/tests/plugin_collection_v2.sh index f6cb3a06..3351d8fc 100755 --- a/kud/tests/plugin_collection_v2.sh +++ b/kud/tests/plugin_collection_v2.sh @@ -78,6 +78,8 @@ clusterLabelName2="east-us2" deploymentIntentGroupName="test_deployment_intent_group" deploymentIntentGroupNameDesc="test_deployment_intent_group_desc" releaseName="test" +intentToBeAddedinDeploymentIntentGroup="name_of_intent_to_be_added_in_deployment_group" +intentToBeAddedinDeploymentIntentGroupDesc="desc_of_intent_to_be_added_in_deployment_group" chart_name="edgex" profile_name="test_profile" @@ -369,8 +371,8 @@ print_msg "Adding the genericPlacement intent to the deploymentIntent group" payload="$(cat <<EOF { "metadata":{ - "name":"${deploymentIntentGroupName}", - "description":"${deploymentIntentGroupNameDesc}", + "name":"${intentToBeAddedinDeploymentIntentGroup}", + "description":"${intentToBeAddedinDeploymentIntentGroupDesc}", "userData1":"${userData1}", "userData2":"${userData2}" }, |