Changes to nav, consolidate Getting Started README (#3979)

* Changes to nav, consolidate README

* delete unused file
This commit is contained in:
Omer B 2021-07-16 10:51:09 -04:00 committed by GitHub
parent ddf358e29e
commit 8b018a64b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 22 additions and 22 deletions

View File

@ -2,9 +2,8 @@ INHERIT: redirects.yml
nav:
- Home: index.md
- Getting Started:
- Before you begin: getting-started/README.md
- Knative Quickstart: getting-started/install-knative-quickstart.md
- Getting started:
- Knative Quickstart: getting-started/README.md
- Using Knative Serving:
- First Knative Service: getting-started/first-service.md
- Scaling to Zero: getting-started/first-autoscale.md
@ -18,7 +17,7 @@ nav:
- What's Next?: getting-started/next-steps.md
# Administration guide
- Administration guide:
- Overview: admin/README.md
- Administration guide: admin/README.md
- Installing Knative:
- Overview: admin/install/README.md
# Serving Installation

View File

@ -1,13 +1,29 @@
# Before you begin
# Getting Started with Knative
## Before you begin
!!! warning
Knative Quickstart Environments are for experimentation use only. For production installation, see our [Administrator's Guide](../admin)
Before you can get started with a Knative Quickstart deployment you must install kind and the Kubernetes CLI.
## Install Kind (Kubernetes in Docker)
### Install Kind (Kubernetes in Docker)
You can use [`kind`](https://kind.sigs.k8s.io/docs/user/quick-start){target=_blank} (Kubernetes in Docker) to run a local Kubernetes cluster with Docker container nodes.
## Install the Kubernetes CLI
### Install the Kubernetes CLI
The [Kubernetes CLI (`kubectl`)](https://kubernetes.io/docs/tasks/tools/install-kubectl){target=_blank}, allows you to run commands against Kubernetes clusters. You can use `kubectl` to deploy applications, inspect and manage cluster resources, and view logs.
## Install the Knative "Quickstart" environment
You can get started with a local deployment of Knative by using _Knative on Kind_ (`konk`):
--8<-- "quickstart-install.md"
## Install the Knative CLI
The Knative CLI (`kn`) provides a quick and easy interface for creating Knative resources, such as Knative Services and Event Sources, without the need to create or modify YAML files directly.
`kn` also simplifies completion of otherwise complex procedures such as autoscaling and traffic splitting.
--8<-- "install-kn.md"

View File

@ -1,15 +0,0 @@
# Getting Started with the Knative "Quickstart" Environment
## Install Knative using the konk script
You can get started with a local deployment of Knative by using _Knative on Kind_ (`konk`):
--8<-- "quickstart-install.md"
## Install the Knative CLI
The Knative CLI (`kn`) provides a quick and easy interface for creating Knative resources, such as Knative Services and Event Sources, without the need to create or modify YAML files directly.
`kn` also simplifies completion of otherwise complex procedures such as autoscaling and traffic splitting.
--8<-- "install-kn.md"