File: doc.go

package info (click to toggle)
golang-k8s-sigs-kustomize-kyaml 0.19.0%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 7,148 kB
  • sloc: makefile: 220; sh: 68
file content (20 lines) | stat: -rw-r--r-- 509 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright 2019 The Kubernetes Authors.
// SPDX-License-Identifier: Apache-2.0

// Package kyaml contains libraries for reading and writing Kubernetes Resource configuration
// as yaml.
//
// Resources
//
// Individual Resources are manipulated using the yaml package.
//  import (
//      "sigs.k8s.io/kustomize/kyaml/yaml"
//  )
//
// Collections of Resources
//
// Collections of Resources are manipulated using the kio package.
//  import (
//      "sigs.k8s.io/kustomize/kyaml/kio"
//  )
package kyaml