Skip to content
Snippets Groups Projects
Commit 87ed4378 authored by Jessica Yao's avatar Jessica Yao
Browse files

small readme and install fixes


Signed-off-by: default avatarJessica Yao <jessica@heptio.com>
parent 5b215d87
No related branches found
No related tags found
No related merge requests found
......@@ -18,9 +18,11 @@ All of this results in a more iterative process for developing manifests, one th
## Install
The ksonnet CLI, `ks`, can be installed in three different ways. Choose the method that best matches your setup:
### Homebrew on macOS
If you are using [Homebrew](https://brew.sh/) on macOS, you can easily install `ks`.
If you are using [Homebrew](https://brew.sh/) on macOS, you can easily install `ks` with the following command:
```
brew install ksonnet/tap/ks
......@@ -153,7 +155,7 @@ Thanks for taking the time to join our community and start contributing!
#### Before you start
* Please familiarize yourself with the [Code of
Conduct](CODE_OF_CONDUCT.md) before contributing.
Conduct](CODE-OF-CONDUCT.md) before contributing.
* Read the contribution guidelines in [CONTRIBUTING.md](CONTRIBUTING.md).
* There is a [mailing list](https://groups.google.com/forum/#!forum/ksonnet) and [Slack channel](https://ksonnet.slack.com/) if you want to interact with
other members of the community.
......
......@@ -41,13 +41,13 @@ var showCmd = &cobra.Command{
Short: "Show expanded manifests for a specific environment.",
Long: `Show expanded manifests (resource definitions) for a specific environment. Jsonnet manifests,
each defining a ksonnet component, are expanded into their JSON or YAML equivalents (YAML is the default).
Any parameters for a component are resolved based on environment-specific values.
Any parameters in these Jsonnet manifests are resolved based on environment-specific values.
When NO component is specified via the` + "`-c`" + `flag, this command expands all of the files in the ` +
When NO component is specified (no ` + "`-c`" + ` flag), this command expands all of the files in the ` +
"`components/`" + ` directory into a list of resource definitions. This is the YAML version
of what gets deployed to your cluster with ` + "`ks apply <env>`" + `.
When a component IS specified via the` + "`-c`" + `flag, this command only expands the manifest for that
When a component IS specified via the ` + "`-c`" + ` flag, this command only expands the manifest for that
particular component.`,
Example: `# Show all of the components for the 'dev' environment, in YAML
# (In other words, expands all manifests in the components/ directory)
......
......@@ -2,6 +2,6 @@
While the ksonnet site updates are still pending, you can find additional documentation in this directory:
* [Manual build and install](/docs/build-install.md)
* [Manually build and install](/docs/build-install.md)
* [CLI reference](/docs/cli-reference#command-line-reference)
* [Concept reference](/docs/concepts.md)
......@@ -19,7 +19,7 @@ If your ksonnet is properly installed, you should be able to run `ks --help` and
If you're using macOS, trying adding the line `export GOPATH=$HOME/go` to the end of your `$HOME/.bash_profile`.
Other systems may have different `$GOPATH` defaults (e.g. `/usr/local/go`), in which case you should use those instead.
If you get stuck, [these instructions](https://github.com/golang/go/wiki/SettingGOPATH) may help).
(If you get stuck, [these instructions](https://github.com/golang/go/wiki/SettingGOPATH) may help).
The ksonnet Makefile assumes you have one and only one directory in your `$GOPATH`.
......
......@@ -7,12 +7,12 @@ Show expanded manifests for a specific environment.
Show expanded manifests (resource definitions) for a specific environment. Jsonnet manifests,
each defining a ksonnet component, are expanded into their JSON or YAML equivalents (YAML is the default).
Any parameters for a component are resolved based on environment-specific values.
Any parameters in these Jsonnet manifests are resolved based on environment-specific values.
When NO component is specified via the`-c`flag, this command expands all of the files in the `components/` directory into a list of resource definitions. This is the YAML version
When NO component is specified (no `-c` flag), this command expands all of the files in the `components/` directory into a list of resource definitions. This is the YAML version
of what gets deployed to your cluster with `ks apply <env>`.
When a component IS specified via the`-c`flag, this command only expands the manifest for that
When a component IS specified via the `-c` flag, this command only expands the manifest for that
particular component.
```
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment