You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Lines 39 and 40 the sed commands.
When I ran the script I got the errors ( <acr-name> and <dns-name> where the actual values).
sed: can't read s+!IMAGE!+<acr-name>/contoso-website+g: No such file or directory
sed: can't read s+!DNS!+<dns-name>+g: No such file or directory
I'm assuming the intent of the commands is to replace the azure values but as we proceed through the tutorial that is done via helm anyway. So I think that these commands should be removed.
Copy/Paste error on the echo on line 47
Currently
echo "-> AKS Cluster Name: $ACR_NAME"
Should be
echo "-> AKS Cluster Name: $AKS_NAME"
so the output would be
-> AKS Cluster Name: contoso-video
The text was updated successfully, but these errors were encountered:
Lines 39 and 40 the
sed
commands.When I ran the script I got the errors (
<acr-name>
and<dns-name>
where the actual values).I'm assuming the intent of the commands is to replace the azure values but as we proceed through the tutorial that is done via helm anyway. So I think that these commands should be removed.
Copy/Paste error on the echo on line 47
Currently
Should be
so the output would be
The text was updated successfully, but these errors were encountered: