Clone this repo:
  1. 6fdb442 Merge pull request #206 from jprzychodzen/fix-tracing-time-format by Kubernetes Prow Robot · 3 years, 3 months ago main
  2. 3da2546 Fix tracing time format, to report second by Jakub Przychodzeń · 3 years, 3 months ago
  3. da69540 Merge pull request #205 from jsafrane/add-explicit-consistent-error by Kubernetes Prow Robot · 3 years, 3 months ago
  4. 9f9c2db Add explicit error to ConsistentRead by Jan Safranek · 3 years, 4 months ago
  5. 5a248b5 Merge pull request #191 from brahmaroutu/notice_on_mount_repo by Kubernetes Prow Robot · 3 years, 4 months ago

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 dependencies 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.

  • Complex enough to be worth vendoring, rather than copying (e.g. not 5 LOC).

  • Can be fully exercised by unit tests (e.g. no dependencies on kernels).

  • Has full unit test coverage.

  • Stable, or backward compatible, API, with complete godocs.

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

  • Very few (ideally zero) external dependencies.

  • No dependencies on any other Kubernetes repository.

Contributing

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