-
Notifications
You must be signed in to change notification settings - Fork 45
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Updating requiredResources in Application Management API #280
Changes from 1 commit
891a083
b291c76
d6fbf60
bc455b1
c276faf
1f3826a
f79413b
c76ff77
5312a84
1218954
bcd57bc
6b2b6c8
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -355,7 +355,7 @@ paths: | |
content: | ||
application/json: | ||
schema: | ||
$ref: '#/components/schemas/AppZones' | ||
$ref: '#/components/schemas/AppInstaces' | ||
required: true | ||
responses: | ||
'202': | ||
|
@@ -683,16 +683,25 @@ components: | |
accessPoints: | ||
$ref: '#/components/schemas/AccessEndpoint' | ||
minItems: 1 | ||
kubernetesClusterRef: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It is not clear how developer will get the KubernetesClusterRef? Are there suppose to be any query API to find it out or how do we see retrieving this information by the API user? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There are two ways to get a ClusterRef:
|
||
$ref: '#/components/schemas/KubernetesClusterRef' | ||
edgeCloudZone: | ||
$ref: '#/components/schemas/EdgeCloudZone' | ||
|
||
AppZones: | ||
AppInstaces: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. typo: AppInstaces -> AppInstances |
||
description: | | ||
Collection of Edge Cloud Zones where the Application Provider wants to | ||
instantiate the application. | ||
type: array | ||
items: | ||
$ref: '#/components/schemas/EdgeCloudZone' | ||
type: object | ||
properties: | ||
kubernetesClusterRef: | ||
$ref: '#/components/schemas/KubernetesClusterRef' | ||
EdgeCloudZone: | ||
$ref: '#/components/schemas/EdgeCloudZone' | ||
required: | ||
- EdgeCloudZone | ||
minItems: 1 | ||
additionalProperties: false | ||
|
||
|
@@ -912,8 +921,6 @@ components: | |
$ref: '#/components/schemas/EdgeCloudProvider' | ||
edgeCloudRegion: | ||
$ref: '#/components/schemas/EdgeCloudRegion' | ||
edgeCloudKubernetesClusterRef: | ||
$ref: '#/components/schemas/KubernetesClusterRef' | ||
minItems: 1 | ||
|
||
EdgeCloudZoneName: | ||
|
@@ -1217,8 +1224,6 @@ components: | |
applications. | ||
type: boolean | ||
example: false | ||
kubernetesClusterRef: | ||
$ref: '#/components/schemas/KubernetesClusterRef' | ||
version: | ||
type: string | ||
description: Minimum Kubernetes Version. | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
typo: AppInstaces -> AppInstances