-
Notifications
You must be signed in to change notification settings - Fork 5.2k
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
Dev containerservice microsoft.container service 2020 09 01 #10634
Changes from 2 commits
2a4b590
6e30407
7a72006
3216b53
92bda33
78475b5
914a3bf
48189ac
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 |
---|---|---|
|
@@ -157,6 +157,7 @@ AZFW | |
AZNB | ||
azns | ||
azpkg | ||
azpodpolicy | ||
azureaccounts | ||
azureactivedirectory | ||
azureblob | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"parameters": { | ||
"api-version": "2020-09-01", | ||
"subscriptionId": "subid1", | ||
"resourceGroupName": "rg1", | ||
"resourceName": "clustername1" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"value": [ | ||
{ | ||
"name": "management", | ||
"type": "Microsoft.ContainerService/managedClusters/privateLinkResources", | ||
"groupId": "management", | ||
"requiredMembers": [ | ||
"management" | ||
], | ||
"privateLinkServiceID": "/subscriptions/subid2/resourceGroups/rg2/providers/Microsoft.Network/privateLinkServices/plsName" | ||
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. PLS ID Not required on Swagger 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 would be more clear to have it here, and AKS already have logic to make sure PLSID is only exposed to NRP calls. I would like to have it as a part of swagger, unless you don't want to have swagger for these APIs. |
||
} | ||
] | ||
} | ||
} | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
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. is this API required on Swagger @ajinkyapotdarvjti ? |
||
"parameters": { | ||
"api-version": "2020-09-01", | ||
"subscriptionId": "subid1", | ||
"resourceGroupName": "rg1", | ||
"resourceName": "clustername1", | ||
"parameters": { | ||
"name": "management" | ||
} | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"privateLinkServiceID": "/subscriptions/subid2/resourceGroups/rg2/providers/Microsoft.Network/privateLinkServices/plsName" | ||
} | ||
} | ||
} | ||
} |
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.
missing requiredZoneNames property
NRP Spec section 7.5
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.
This is implemented with spec Private Link for AKS, not the 1st party spec.
requiredZoneNames
is not used there.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.
Sounds good, let's take it for next iteration once supported