Skip to content
This repository has been archived by the owner on Jan 11, 2023. It is now read-only.

Commit

Permalink
Fix swapped username/password in Windows tutorial (#3761)
Browse files Browse the repository at this point in the history
  • Loading branch information
PatrickLang authored and mboersma committed Aug 29, 2018
1 parent c24ec9c commit f019949
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/kubernetes/windows.md
Original file line number Diff line number Diff line change
Expand Up @@ -333,8 +333,8 @@ $inJson = Get-Content .\kubernetes-windows.json | ConvertFrom-Json
$inJson.properties.masterProfile.dnsPrefix = $dnsPrefix
# Set Windows username & password
$inJson.properties.windowsProfile.adminPassword = $windowsUser
$inJson.properties.windowsProfile.adminUsername = $windowsPassword
$inJson.properties.windowsProfile.adminPassword = $windowsPassword
$inJson.properties.windowsProfile.adminUsername = $windowsUser
# Copy in your SSH public key from `~/.ssh/id_rsa.pub` to linuxProfile.ssh.publicKeys.keyData
$inJson.properties.linuxProfile.ssh.publicKeys[0].keyData = [string](Get-Content "~/.ssh/id_rsa.pub")
Expand Down Expand Up @@ -551,4 +551,4 @@ If you'd like to learn more about Kubernetes in general, check out these guides:

1. [Kubernetes Bootcamp](https://kubernetesbootcamp.github.io/kubernetes-bootcamp/index.html) - shows you how to deploy, scale, update, and debug containerized applications.
2. [Kubernetes Userguide](http://kubernetes.io/docs/user-guide/) - provides information on running programs in an existing Kubernetes cluster.
3. [Kubernetes Examples](https://github.com/kubernetes/kubernetes/tree/master/examples) - provides a number of examples on how to run real applications with Kubernetes.
3. [Kubernetes Examples](https://github.com/kubernetes/kubernetes/tree/master/examples) - provides a number of examples on how to run real applications with Kubernetes.

0 comments on commit f019949

Please sign in to comment.