Knative developer experience, docs, reference Knative CLI implementation
Go to file
Navid Shaikh f0a40d1b4b Vendor eventing v0.11.0 and run tests against it (#546)
- Pin contrib.go.opencensus.io/exporter/stackdriver@59d068f8d8ff5b653916aa30cdc4e13c7f15d56e
 - Pin knative.dev/pkg@release-0.11
 - Move `Destination` from (knative.dev/pkg) v1alpha1 to duckv1beta1
 - Run tests against Eventing v0.11.0
2019-12-11 00:21:48 -08:00
.github chore: Add some clarification to the pull request template for where to put CHANGELOG entries (#494) 2019-11-12 02:14:23 -08:00
cmd/kn Update serving dependency to 0.8; change all import paths (#368) 2019-08-15 18:09:08 -07:00
config Update serving dependency to 0.8; change all import paths (#368) 2019-08-15 18:09:08 -07:00
conventions Boolean flags by presence (#283) 2019-07-26 17:15:50 -07:00
docs kn source list-types (builtin types) (#536) 2019-12-10 11:20:47 -08:00
hack chore(build): Spacing fix for newer iTerm (>=3.3.7) (#509) 2019-11-19 05:12:07 -08:00
pkg Vendor eventing v0.11.0 and run tests against it (#546) 2019-12-11 00:21:48 -08:00
test Vendor eventing v0.11.0 and run tests against it (#546) 2019-12-11 00:21:48 -08:00
vendor Vendor eventing v0.11.0 and run tests against it (#546) 2019-12-11 00:21:48 -08:00
.gitignore Explicit name for serving client (#537) 2019-12-08 23:42:44 -08:00
CHANGELOG.adoc Support multiple NAMEs on service delete (#492) 2019-11-12 03:02:23 -08:00
DEVELOPMENT.md docs: References golang 1.12 or later in docs (#355) 2019-08-09 08:35:05 -07:00
LICENSE Initial commit 2018-12-12 16:45:51 -08:00
OWNERS Adds Navid (@navidshaikh) to approvers list (#321) 2019-07-31 13:59:43 -07:00
README.md Adds zsh completion (#476) 2019-11-05 02:42:25 -08:00
go.mod Vendor eventing v0.11.0 and run tests against it (#546) 2019-12-11 00:21:48 -08:00
go.sum Vendor eventing v0.11.0 and run tests against it (#546) 2019-12-11 00:21:48 -08:00

README.md

Knative Client

This section outlines best practices for the Knative developer experience. It is a reference for Knative CLI implementation, and a reference for Knative client libraries.

The goals of the Knative Client are to:

  1. Follow the Knative serving and eventing APIs
  2. Be scriptable to allow users to create different Knative workflows
  3. Expose useful Golang packages to allow integration into other programs or CLIs or plugins
  4. Use consistent verbs, nouns, and flags for various commands
  5. Be easily extended via a plugin mechanism (similar to kubectl) to allow for experimentation and customization

Docs

Start with the user's guide to learn more. You can read about common use cases, get detailed documentation on each command, and learn how to extend the kn CLI. For more information, access the following links:

Shell auto completion:

Run the following command to enable shell auto-completion:

For Zsh:

$ source <(kn completion zsh)

For Bash:

$ source <(kn completion bash)

Use TAB to list available sub-commands or flags.

Developers

If you would like to contribute, please see CONTRIBUTING for more information.

To build kn, see our Development guide.