Add ListAWSSecrets and GetSecretAllFields for the redesigned secrets diff flow

This commit is contained in:
Stefan Koelle
2026-08-09 12:10:59 +02:00
parent 793c28afff
commit b7d553c966
2 changed files with 47 additions and 0 deletions
+8
View File
@@ -13,3 +13,11 @@ func namespacesForLabelValue(namespaces map[string]map[string]string, labelKey,
func findNextContext(current string, pairs []kctl.ContextPair) (string, bool) {
return kctl.FindNextContext(current, pairs)
}
func diffSecretValues(left, right map[string]string) []kctl.SecretDiffEntry {
return kctl.DiffSecretValues(left, right)
}
func anyMismatch(entries []kctl.SecretDiffEntry) bool {
return kctl.AnyMismatch(entries)
}