mirror of https://github.com/knative/docs.git
Made Evan's edits
This commit is contained in:
parent
c6182f2da5
commit
1156da399d
|
@ -52,7 +52,7 @@ nav:
|
|||
- Installing:
|
||||
- About installing Knative: install/README.md
|
||||
- Install CLI Tools: client/install-kn.md
|
||||
- Install Knative quickstart plugin: install/quickstart-install.md
|
||||
- Install quickstart: install/quickstart-install.md
|
||||
# YAML Installation
|
||||
- Install Knative with YAML:
|
||||
- About YAML-based installation: install/yaml-install/README.md
|
||||
|
|
|
@ -14,7 +14,7 @@ You can use two CLI tools sets for Knative:
|
|||
- Knative CLI - `kn`
|
||||
- Kubernetes CLI - `kubectl`
|
||||
|
||||
The `kn` CLI makes Knative operations easier, but all functionality is available in `kubectl` wh. if you want to handle more YAML.
|
||||
The `kn` CLI makes Knative operations easier, but all functionality is available via `kubectl` if you want to primarily use YAML representations of resources.
|
||||
|
||||
--8<-- "install-kn.md"
|
||||
|
||||
|
|
|
@ -33,24 +33,5 @@ For all installations, you need the Knative CLI and other CLI tools. All install
|
|||
|
||||
System requirements provided are recommendations only. The requirements for your installation might vary, depending on whether you use optional components, such as a networking layer.
|
||||
|
||||
## Install optional components
|
||||
|
||||
You can extend Knative capabilities with the following components.
|
||||
|
||||
| Extension or component | Description |
|
||||
| --- | -- |
|
||||
| [Istio](installing-istio.md) | A service mesh platform for microservices. |
|
||||
| [Cert Manager](installing-cert-manager.md) | Implement TLS certificates for secure HTTPS connections in Knative. |
|
||||
| [Backstage plugins](installing-backstage-plugins.md) | Plugins for Knative users and their respective backends. |
|
||||
|
||||
## Installation resources
|
||||
|
||||
Use the following links to maintain your installations.
|
||||
|
||||
- [Upgrading Knative](upgrade/README.md)
|
||||
- [Uninstall Knative](uninstall.md)
|
||||
- [Check Knative version](upgrade/check-install-version.md)
|
||||
- [Troubleshoot Knative installations](troubleshooting.md)
|
||||
|
||||
For a list of commercial Knative products, see [Knative offerings](knative-offerings.md).
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ function: tutorial
|
|||
|
||||
# Install the Knative quickstart plugin
|
||||
|
||||
This quickstart plugin provides a simplified Knative installation on a Minikube or a Kubernetes running locally on a single computer. This installation is well suited for experimentation. For information on production installs, see the [Installation Roadmap](README.md#installation-roadmap).
|
||||
This quickstart plugin provides a simplified Knative installation on a kind or Minikube Kubernetes cluster running locally on a single computer. This installation is well suited for experimentation. For information on production installs, see the [Installation Roadmap](README.md#installation-roadmap).
|
||||
|
||||
--8<-- "quickstart-install.md"
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ function: how-to
|
|||
|
||||
# Installing Knative Eventing using YAML files
|
||||
|
||||
his topic describes how to install Knative Eventing by applying YAML files. This installation requires the following prerequisites.
|
||||
This topic describes how to install Knative Eventing by applying YAML files. This installation requires the following prerequisites.
|
||||
|
||||
- The [CLI Tools](../../../client/install-kn.md) are installed.
|
||||
- Sufficient hardware:
|
||||
|
|
|
@ -20,14 +20,6 @@ The `kn` CLI also simplifies completion of otherwise complex procedures such as
|
|||
brew install knative/client/kn
|
||||
```
|
||||
|
||||
If you are having issues upgrading using Homebrew, it might be due to a change to a CLI repository where the `master` branch was renamed to `main`. Resolve this issue by running the command:
|
||||
|
||||
```bash
|
||||
brew uninstall kn
|
||||
brew untap knative/client --force
|
||||
brew install knative/client/kn
|
||||
```
|
||||
|
||||
=== "Using a binary"
|
||||
|
||||
You can install `kn` by downloading the executable binary for your system and placing it in the system path.
|
||||
|
|
Loading…
Reference in New Issue