• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.github/H26-Mar-2020-32

Godeps/H26-Mar-2020-630630

docs/H26-Mar-2020-14,63812,713

images/H03-May-2022-

pkg/H26-Mar-2020-123,803102,848

testdata/H26-Mar-2020-111,206111,174

CONTRIBUTING.mdH A D26-Mar-2020600 84

LICENSEH A D26-Mar-202011.1 KiB202169

OWNERSH A D26-Mar-2020138 108

README.mdH A D26-Mar-20201.6 KiB3823

SECURITY_CONTACTSH A D26-Mar-2020551 1715

code-of-conduct.mdH A D26-Mar-2020148 42

go.modH A D26-Mar-20202.6 KiB6560

go.sumH A D26-Mar-202032 KiB336335

README.md

1# Kubectl
2
3![kubectl logo](./images/kubectl-logo-medium.png)
4
5[![Build Status](https://travis-ci.org/kubernetes/kubectl.svg?branch=master)](https://travis-ci.org/kubernetes/kubectl) [![GoDoc](https://godoc.org/k8s.io/kubectl?status.svg)](https://godoc.org/k8s.io/kubectl)
6
7The `k8s.io/kubectl` repo is used to track issues for the kubectl cli distributed
8with `k8s.io/kubernetes`. It also contains packages intended for use by client
9programs. E.g. these packages are vendored into `k8s.io/kubernetes` for use in
10the [kubectl](https://github.com/kubernetes/kubernetes/tree/master/cmd/kubectl)
11cli client. That client will eventually move here too.
12
13## Contribution Requirements
14
15- Full unit-test coverage.
16
17- Go tools compliant (`go get`, `go test`, etc.). It needs to be vendorable
18  somewhere else.
19
20- No dependence on `k8s.io/kubernetes`. Dependence on other repositories is fine.
21
22- Code must be usefully [commented](https://golang.org/doc/effective_go.html#commentary).
23  Not only for developers on the project, but also for external users of these packages.
24
25- When reviewing PRs, you are encouraged to use Golang's [code review
26  comments](https://github.com/golang/go/wiki/CodeReviewComments) page.
27
28- Packages in this repository should aspire to implement sensible, small
29  interfaces and import a limited set of dependencies.
30
31## Community, discussion, contribution, and support
32
33See [this document](https://github.com/kubernetes/community/tree/master/sig-cli) for how to reach the maintainers of this project.
34
35### Code of conduct
36
37Participation in the Kubernetes community is governed by the [Kubernetes Code of Conduct](code-of-conduct.md).
38