Skip to content
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

[AKS] Fix the bug related to AKS Monitoring MSI auth when the location value with spaces #23149

Merged
merged 21 commits into from
Jul 14, 2022
Merged
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
ea24c55
use existing tags on container insights extension dcr for PUT
ganga1980 Apr 2, 2022
2c012ed
fix style issues
ganga1980 Apr 2, 2022
cc6a07b
optimize the code
ganga1980 Apr 12, 2022
febec50
add containerinsights solution in msi mode
ganga1980 Apr 17, 2022
80a68ce
fix style issues
ganga1980 Apr 17, 2022
d8b6c85
Merge branch 'dev' of github.com:Azure/azure-cli into dev
ganga1980 Jun 21, 2022
d5c22d8
DCR API version and update to stream group
ganga1980 Jun 21, 2022
f0c5332
DCR API version and update to stream group
ganga1980 Jun 21, 2022
daf6913
DCR API version and update to stream group
ganga1980 Jun 21, 2022
710ac73
update to use stable API version
ganga1980 Jun 27, 2022
5e89cf7
Merge branch 'dev' of github.com:Azure/azure-cli into dev
ganga1980 Jun 30, 2022
d1174af
remove container insights solution resource dependency
ganga1980 Jun 30, 2022
2a6ff48
remove unused import
ganga1980 Jun 30, 2022
7a38e0b
remove unused _invoke_deployment also
ganga1980 Jul 4, 2022
d0a0c4a
remove unused imports
ganga1980 Jul 4, 2022
b6726c5
resolve merge conflicts
ganga1980 Jul 5, 2022
4501d72
Merge branch 'dev' of github.com:Azure/azure-cli into dev
ganga1980 Jul 6, 2022
2ff287a
Merge branch 'dev' of github.com:Azure/azure-cli into dev
ganga1980 Jul 7, 2022
d2ec1fb
Merge branch 'dev' of github.com:Azure/azure-cli into dev
ganga1980 Jul 8, 2022
e3b4f14
remove spaces in the location value
ganga1980 Jul 8, 2022
924eac2
Merge branch 'dev' of github.com:Azure/azure-cli into dev
ganga1980 Jul 12, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -312,6 +312,8 @@ def ensure_container_insights_for_monitoring(
workspace_resource_id, "2015-11-01-preview"
)
location = resource.location
# location can have spaces for example 'East US' hence remove the spaces
location = location.replace(" ", "").lower()
ganga1980 marked this conversation as resolved.
Show resolved Hide resolved
except HttpResponseError as ex:
raise ex

Expand Down