From 0a449980870963ebb77cc494f9c6b0b38d3ae83f Mon Sep 17 00:00:00 2001 From: Joan Edwards Date: Fri, 27 Sep 2019 17:03:40 +0100 Subject: [PATCH] folder directory --- docs/operations/management.md | 10 +++++----- docs/plugins/README.md | 2 +- docs/traffic/README.md | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/operations/management.md b/docs/operations/management.md index 752bc082fd..e4523d724e 100644 --- a/docs/operations/management.md +++ b/docs/operations/management.md @@ -4,7 +4,7 @@ A Knative service is the embodiment of a serverless workload. It is generally in the form of a collection of containers running in a group of pods, in the underlying Kubernetes cluster. Each Knative service associates with a collection of revisions, which represent the evolution of that service. -With the Kn CLI a user can [`list`](cmd/kn_service_list.md), [`create`](cmd/kn_service_create.md), [`delete`](cmd/kn_service_delete.md), and [`update`](cmd/kn_service_update.md) Knative services. The [detail reference](cmd/kn_service.md) of each sub-command under the [`service`](cmd/kn_service.md) command shows the options and flags for this group of commands. +With the Kn CLI a user can [`list`](../cmd/kn_service_list.md), [`create`](../cmd/kn_service_create.md), [`delete`](../cmd/kn_service_delete.md), and [`update`](../cmd/kn_service_update.md) Knative services. The [detail reference](../cmd/kn_service.md) of each sub-command under the [`service`](../cmd/kn_service.md) command shows the options and flags for this group of commands. Examples: @@ -14,7 +14,7 @@ Examples: kn service create mysvc --env KEY1=VALUE1 --env KEY2=VALUE2 --image dev.local/ns/image:latest ``` -You are able to also specify the requests and limits of both CPU and memory when creating a service. See [`service create`](cmd/kn_service_create.md) command reference for additional details. +You are able to also specify the requests and limits of both CPU and memory when creating a service. See [`service create`](../cmd/kn_service_create.md) command reference for additional details. ```bash # List existing services in the 'default' namespace of your cluster @@ -22,14 +22,14 @@ You are able to also specify the requests and limits of both CPU and memory when kn service list ``` -You can also list services from all namespaces or a specific namespace using flags: `--all-namespaces` and `--namespace mynamespace`. See [`service list`](cmd/kn_service_list.md) command reference for additional details. +You can also list services from all namespaces or a specific namespace using flags: `--all-namespaces` and `--namespace mynamespace`. See [`service list`](../cmd/kn_service_list.md) command reference for additional details. ## Revision Management A Knative revision is a "snapshot" of the specification of a service. For instance, when a Knative service is created with the environment variable `FOO=bar` a revision is added to the service. Afterwards, when the environment variable is changed to `baz` or additional variables are added, a new revision is created. When the image that the service is running is changed to a new digest, a new revision is created. -With the [`revision`](cmd/kn_revision.md) command group you can [list](cmd/kn_revision_list.md) and [describe](cmd/kn_revision_describe.md) the current revisions on a service. +With the [`revision`](../cmd/kn_revision.md) command group you can [list](../cmd/kn_revision_list.md) and [describe](../cmd/kn_revision_describe.md) the current revisions on a service. Examples: @@ -44,7 +44,7 @@ kn revision list --service srvc # CHECK this since current command does not have These are commands that provide some useful information to the user. * The `kn help` command displays a list of the commands with helpful information. -* The [`kn version`](cmd/kn_version.md) command will display the current version of the `kn` build including date and Git commit revision. +* The [`kn version`](../cmd/kn_version.md) command will display the current version of the `kn` build including date and Git commit revision. * The `kn completion` command will output a BASH completion script for `kn` to allow command completions with tabs. diff --git a/docs/plugins/README.md b/docs/plugins/README.md index 5f53578460..1d6701b5d7 100644 --- a/docs/plugins/README.md +++ b/docs/plugins/README.md @@ -8,4 +8,4 @@ Plugins provide extended functionality that is not part of the core `kn` command Please refer to the documentation and examples for more information on how to write your own plugins. -* [kn plugin](kn_plugin.md) - Plugin command group \ No newline at end of file +* [kn plugin](../cmd/kn_plugin.md) - Plugin command group \ No newline at end of file diff --git a/docs/traffic/README.md b/docs/traffic/README.md index 6c9309395d..94379b9514 100644 --- a/docs/traffic/README.md +++ b/docs/traffic/README.md @@ -5,4 +5,4 @@ kn can help you control which revisions get traffic in your Knative Service. A Knative Service has a traffic mapping, which is a mapping of revisions of the Service to percent amounts of traffic, along with the ability to create unique URLs for particular revisions. It also has the ability to assign traffic to the latest Revision, which can change as new revisions are created. * [Traffic Operations](revisions.md) -* [Examples](example.md) \ No newline at end of file +* [Examples](examples.md) \ No newline at end of file