ingress-nginx-helm/vendor/k8s.io/utils
Manuel Alejandro de Brito Fontes 6c33bee8fd
Update go dependencies
2018-10-10 21:46:45 -03:00
..
exec Update go dependencies 2018-05-26 16:27:45 -04:00
pointer Update go dependencies 2018-10-10 21:46:45 -03:00
.travis.yml Update go dependencies 2018-05-26 16:27:45 -04:00
code-of-conduct.md Update go dependencies 2018-05-26 16:27:45 -04:00
CONTRIBUTING.md Update go dependencies 2018-09-22 14:54:24 -03:00
HOWTOMOVE.md Update dependencies 2017-10-06 19:40:31 -03:00
LICENSE Update dependencies 2017-10-06 19:40:31 -03:00
OWNERS Update go dependencies 2018-09-22 14:54:24 -03:00
README.md Update go dependencies 2018-09-22 14:54:24 -03:00

Utils

Build Status GoDoc

A set of Go libraries that provide low-level, kubernetes-independent packages supplementing the Go standard libs.

Purpose

As Kubernetes grows and spins functionality out of its core and into cooperating repositories like apiserver, kubectl, kubeadm, etc., the need arises for leaf repositories to house shared code and avoid cycles in repository relationships.

This repository is intended to hold shared utilities with no Kubernetes dependence that may be of interest to any Go project. See these instructions for moving an existing package to this repository.

Criteria for adding code here

  • Used by multiple Kubernetes repositories.

  • Full unit test coverage.

  • Go tools compliant (go get, go test, etc.).

  • Complex enough to be worth vendoring, rather than copying.

  • Stable, or backward compatible, API.

  • No dependence on any Kubernetes repository.

Libraries

  • Exec provides an interface for os/exec. It makes it easier to mock and replace in tests, especially with the FakeExec struct.

  • Temp provides an interface to create temporary directories. It also provides a FakeDir implementation to replace in tests.

  • Clock provides an interface for time-based operations. It allows mocking time for testing.

  • Pointers provides some functions for pointer-based operations.

Contributing

Please see CONTRIBUTING.md for instructions on how to contribute.