forked from Azure/azure-cli-extensions
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add http proxy command to az aks create (Azure#3682)
* add http proxy for create scenario to extensions * change conversion issue * fix test * exclude test * add tag live only * correct live only * remove from exclusions * add recording * record again * check for httpProxy * add correct recording * add correct recording * chnage file extension to from yml to yaml * raise CLI error if file does not exist * check for file existence instead of a dict Co-authored-by: Adil Adilli <[email protected]>
- Loading branch information
1 parent
1d72a08
commit 5558428
Showing
7 changed files
with
665 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
src/aks-preview/azext_aks_preview/tests/latest/data/httpproxyconfig.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"httpProxy": "http://myproxy.server.com:8080/", | ||
"httpsProxy": "https://myproxy.server.com:8080/", | ||
"noProxy": [ | ||
"localhost", | ||
"127.0.0.1" | ||
], | ||
"trustedCa": "G9yR2xrQ29NRjNURHg4cm1wOURCaUIvCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0=" | ||
} |
Oops, something went wrong.