mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-05-18 04:05:21 +00:00
13 lines
322 B
Go
13 lines
322 B
Go
// Copyright 2019 The Kubernetes Authors.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package inventory
|
|
|
|
const (
|
|
// Annotation that contains the inventory content.
|
|
ContentAnnotation = "kustomize.config.k8s.io/Inventory"
|
|
|
|
// Annotation for inventory content hash.
|
|
HashAnnotation = "kustomize.config.k8s.io/InventoryHash"
|
|
)
|