mirror of
https://github.com/outbackdingo/kamaji.git
synced 2026-01-27 10:19:29 +00:00
11 lines
347 B
Go
11 lines
347 B
Go
// Copyright 2022 Clastix Labs
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package constants
|
|
|
|
const (
|
|
// Checksum is the annotation label that we use to store the checksum for the resource:
|
|
// it allows to check by comparing it if the resource has been changed and must be aligned with the reconciliation.
|
|
Checksum = "kamaji.clastix.io/checksum"
|
|
)
|