-
Notifications
You must be signed in to change notification settings - Fork 431
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replaced Windows with Windows + WSL2 (#1621)
* Replaced Windows with Windows + WSL2 * Suggestions made
- Loading branch information
1 parent
7bf041e
commit 6566d7a
Showing
1 changed file
with
9 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,23 +47,28 @@ | |
- Get the latest patch version for go v1.16. | ||
2. Install [jq][jq] | ||
- `brew install jq` on macOS. | ||
- `chocolatey install jq` on Windows. | ||
- `sudo apt install jq` on Windows + WSL2 | ||
- `sudo apt install jq` on Ubuntu Linux. | ||
3. Install [gettext][gettext] package | ||
- `brew install gettext && brew link --force gettext` on macOS. | ||
- [install instructions][gettextwindows] on Windows. | ||
- `sudo apt install gettext` on Windows + WSL2. | ||
- `sudo apt install gettext` on Ubuntu Linux. | ||
4. Install [KIND][kind] | ||
- `GO111MODULE="on" go get sigs.k8s.io/[email protected]`. | ||
5. Install [Kustomize][kustomize] | ||
- `brew install kustomize` on macOS. | ||
- `choco install kustomize` on Windows. | ||
- [install instructions][kustomizelinux] on Linux | ||
- [install instructions](https://kubectl.docs.kubernetes.io/installation/kustomize/) on Windows + WSL2. | ||
- [install instructions][kustomizelinux] on Linux. | ||
6. Install Python 3.x or 2.7.x, if neither is already installed. | ||
7. Install make. | ||
- `brew install make` on MacOS. | ||
- `sudo apt install make` on Windows + WSL2. | ||
- `sudo apt install make` on Linux. | ||
8. Install [timeout][timeout] | ||
- `brew install coreutils` on macOS. | ||
|
||
When developing on Windows, it is suggested to set up the project on Windows + WSL2 and the file should be checked out on as wsl file system for better results. | ||
|
||
### Get the source | ||
|
||
```shell | ||
|