aboutsummaryrefslogtreecommitdiffstats
path: root/src/dcm/test/dcm_call_api.sh
blob: 33fbf3145a57f20ba8f0d7f935090c8707fcf6f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
# /*
#  * Copyright 2020 Intel Corporation, Inc
#  *
#  * Licensed under the Apache License, Version 2.0 (the "License");
#  * you may not use this file except in compliance with the License.
#  * You may obtain a copy of the License at
#  *
#  *     http://www.apache.org/licenses/LICENSE-2.0
#  *
#  * Unless required by applicable law or agreed to in writing, software
#  * distributed under the License is distributed on an "AS IS" BASIS,
#  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#  * See the License for the specific language governing permissions and
#  * limitations under the License.
#  */

dcm_addr="http://localhost:9077"

# parameters
project="test-project"
description="test-description"
logical_cloud_name="lc1"
namespace="ns1"
api_groups=""
user="user-1"
permission="permission-1"
cluster_provider_name="cp-1"
cluster_1_name="c1"
cluster_1_name="c2"
lc_cluster_1_name="lc-cl-1"
lc_cluster_2_name="lc-cl-2"
quota_name="quota-1"

# endpoints
logical_cloud_url="$dcm_addr/v2/projects/${project}/logical-clouds"
quota_url="${logical_cloud_url}/${logical_cloud_name}/cluster-quotas"
cluster_url="${logical_cloud_url}/${logical_cloud_name}/cluster-references"


logical_cloud_data="$(cat << EOF
{
 "metadata" : {
    "name": "${logical_cloud_name}",
    "description": "${description}",
    "userData1":"<user data>",
    "userData2":"<user data>"
   },
 "spec" : {
    "namespace" : "${namespace}",
    "user" : {
    "user-name" : "${user}",
    "type" : "certificate",
    "user-permissions" : [
       { "permission-name" : "${permission}",
         "apiGroups" : ["${api_groups}"],
         "resources" : ["secrets", "pods"],
         "verbs" : ["get", "watch", "list", "create"]
       }
    ]
  }
 }
}
EOF
)"

cluster_1_data="$(cat << EOF
{
 "metadata" : {
    "name": "${lc_cluster_1_name}",
    "description": "${description}",
    "userData1":"<user data>",
    "userData2":"<user data>"
   },

 "spec" : {
    "cluster-provider": "${cluster_provider_name}",
    "cluster-name": "${cluster_1_name}",
    "loadbalancer-ip" : "0.0.0.0"
  }
}
EOF
)"

cluster_2_data="$(cat << EOF
{
 "metadata" : {
    "name": "${lc_cluster_2_name}",
    "description": "${description}",
    "userData1":"<user data>",
    "userData2":"<user data>"
   },

 "spec" : {
    "cluster-provider": "${cluster_provider_name}",
    "cluster-name": "${cluster_2_name}",
    "loadbalancer-ip" : "0.0.0.1"
  }
}
EOF
)"

quota_data="$(cat << EOF
{
    "metadata" : {
      "name" : "${quota_name}",
      "description": "${description}"
     },
    "spec" : {
      "limits.cpu": "400",
      "limits.memory": "1000Gi",
      "requests.cpu": "300",
      "requests.memory": "900Gi",
      "requests.storage" : "500Gi",
      "requests.ephemeral-storage": "500",
      "limits.ephemeral-storage": "500",
      "persistentvolumeclaims" : "500",
      "pods": "500",
      "configmaps" : "1000",
      "replicationcontrollers": "500",
      "resourcequotas" : "500",
      "services": "500",
      "services.loadbalancers" : "500",
      "services.nodeports" : "500",
      "secrets" : "500",
      "count/replicationcontrollers" : "500",
      "count/deployments.apps" : "500",
      "count/replicasets.apps" : "500",
      "count/statefulsets.apps" : "500",
      "count/jobs.batch" : "500",
      "count/cronjobs.batch" : "500",
      "count/deployments.extensions" : "500"
    }
}
EOF
)"

# Create logical cloud
printf "\n\nCreating logical cloud data\n\n"
curl -d "${logical_cloud_data}" -X POST ${logical_cloud_url}

# Associate two clusters with the logical cloud
printf "\n\nAdding two clusters to logical cloud\n\n"
curl -d "${cluster_1_data}" -X POST ${cluster_url}
curl -d "${cluster_2_data}" -X POST ${cluster_url}

# Add resource quota for the logical cloud
printf "\n\nAdding resource quota for the logical cloud\n\n"
curl -d "${quota_data}" -X POST ${quota_url}

# Get logical cloud data
printf "\n\nGetting logical cloud\n\n"
curl -X GET "${logical_cloud_url}/${logical_cloud_name}"

printf "\n\nGetting clusters info for logical cloud\n\n"
curl -X GET ${cluster_url}

printf "\n\nGetting first cluster of logical cloud\n"
curl -X GET ${cluster_url}/${lc_cluster_1_name}

printf "\n\nGetting second cluster of logical cloud\n"
curl -X GET ${cluster_url}/${lc_cluster_2_name}

printf "\n\nGetting Quota info for the logical cloud\n\n"
curl -X GET "${quota_url}/${quota_name}"

# Cleanup (delete created resources)
if [ "$1" == "clean" ]; then
    printf "\n\nDeleting Quota info for the logical cloud\n\n"
    curl -X DELETE "${quota_url}/${quota_name}"

    printf "\n\nDeleting the two clusters from logical cloud\n\n"
    curl -X DELETE ${cluster_url}/${lc_cluster_1_name}
    curl -X DELETE ${cluster_url}/${lc_cluster_2_name}

    printf "\n\nDeleting logical cloud data\n\n"
    curl -X DELETE ${logical_cloud_url}/${logical_cloud_name}
fi