Skip to content

Commit

Permalink
docs: implemented steps from tutorial video on Codespaces page (#3257)
Browse files Browse the repository at this point in the history
Signed-off-by: UtkarshUmre <[email protected]>
  • Loading branch information
UtkarshUmre authored Mar 18, 2024
1 parent 8a1eebf commit fc07a5f
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions docs/docs/contribute/general/codespace.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,21 @@ to develop software or documentation for Keptn.
The interface is similar to that of
[Visual Studio Code](https://code.visualstudio.com/).

The only additional tool required for software development is [Kustomize](https://kustomize.io/),
which is a Kubernetes configuration transformation tool.
To install it, simply change your directory to the workspace
as shown in the video and copy and paste the below-mentioned two commands.
The first command downloads the precompiled binary of Kustomize;
the second command grants the necessary permissions to the tool and sets the path.
You can always download the latest binaries from the official [Kustomize GitHub repository](https://github.com/kubernetes-sigs/kustomize/releases).

```bash

curl -s "https://raw.githubusercontent.com/kubernetes-sigs/kustomize/master/hack/install_kustomize.sh" | bash

sudo install -o root -g root -m 0755 kustomize /usr/local/bin/kustomize
```

To develop or modify software or documentation, the steps are:

1. Make your modifications and test those modifications
Expand Down

0 comments on commit fc07a5f

Please sign in to comment.