Skip to content

Commit

Permalink
Azure Service Mesh - BYO CA, Egress Gateway and Mesh Revisions (#24453)
Browse files Browse the repository at this point in the history
* Azure Service Mesh - BYO CA and Egress Gateway

* prettier fix.

* adding changes for for revisions and meshversioncompatibilityprofile

* adding a missing parameter

* Changes as per lint failures
  • Loading branch information
deveshdama authored and FumingZhang committed Jul 21, 2023
1 parent bce7a5a commit f527ddf
Show file tree
Hide file tree
Showing 5 changed files with 579 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
{
"parameters": {
"api-version": "2023-06-02-preview",
"subscriptionId": "subid1",
"location": "location1",
"mode": "istio"
},
"responses": {
"200": {
"body": {
"id": "/subscriptions/subid1/providers/Microsoft.ContainerService/locations/location1/meshRevisionProfiles/istio",
"type": "Microsoft.ContainerService/locations/meshRevisionProfiles",
"name": "istio",
"properties": {
"meshRevisions": [
{
"revision": "1-17",
"upgrades": [
"1-18"
],
"compatibleWith": [
{
"name": "kubernetes",
"versions": [
"1.23",
"1.24",
"1.25",
"1.26"
]
}
]
},
{
"revision": "1-18",
"upgrades": [],
"compatibleWith": [
{
"name": "kubernetes",
"versions": [
"1.24",
"1.25",
"1.26",
"1.27"
]
}
]
}
]
}
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"parameters": {
"api-version": "2023-06-02-preview",
"subscriptionId": "subid1",
"resourceGroupName": "rg1",
"resourceName": "clustername1",
"mode": "istio"
},
"responses": {
"200": {
"body": {
"id": "/subscriptions/subid1/resourcegroups/rg1/providers/Microsoft.ContainerService/managedClusters/clustername1/meshUpgradeProfiles/istio",
"type": "Microsoft.ContainerService/managedClusters/meshUpgradeProfiles",
"name": "istio",
"properties": {
"revision": "1-17",
"upgrades": [
"1-18"
],
"compatibleWith": [
{
"name": "kubernetes",
"versions": [
"1.23",
"1.24",
"1.25",
"1.26"
]
}
]
}
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
{
"parameters": {
"api-version": "2023-06-02-preview",
"subscriptionId": "subid1",
"location": "location1"
},
"responses": {
"200": {
"body": {
"value": [
{
"id": "/subscriptions/subid1/providers/Microsoft.ContainerService/locations/location1/meshRevisionProfiles/istio",
"type": "Microsoft.ContainerService/locations/meshRevisionProfiles",
"name": "istio",
"properties": {
"meshRevisions": [
{
"revision": "1-17",
"upgrades": [
"1-18"
],
"compatibleWith": [
{
"name": "kubernetes",
"versions": [
"1.23",
"1.24",
"1.25",
"1.26"
]
}
]
},
{
"revision": "1-18",
"upgrades": [],
"compatibleWith": [
{
"name": "kubernetes",
"versions": [
"1.24",
"1.25",
"1.26",
"1.27"
]
}
]
}
]
}
}
]
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{
"parameters": {
"api-version": "2023-06-02-preview",
"subscriptionId": "subid1",
"resourceGroupName": "rg1",
"resourceName": "clustername1"
},
"responses": {
"200": {
"body": {
"value": [
{
"id": "/subscriptions/subid1/resourcegroups/rg1/providers/Microsoft.ContainerService/managedClusters/clustername1/meshUpgradeProfiles/istio",
"type": "Microsoft.ContainerService/managedClusters/meshUpgradeProfiles",
"name": "istio",
"properties": {
"revision": "1-17",
"upgrades": [
"1-18"
],
"compatibleWith": [
{
"name": "kubernetes",
"versions": [
"1.23",
"1.24",
"1.25",
"1.26"
]
}
]
}
}
]
}
}
}
}
Loading

0 comments on commit f527ddf

Please sign in to comment.