mirror of
https://github.com/skoelle/kctl-tui.git
synced 2026-09-18 04:20:25 +00:00
20 lines
608 B
Go
20 lines
608 B
Go
package main
|
|
|
|
import "github.com/skoelle/kctl-tui/internal/kctl"
|
|
|
|
func distinctLabelValues(namespaces map[string]map[string]string, labelKey string) []string {
|
|
return kctl.DistinctLabelValues(namespaces, labelKey)
|
|
}
|
|
|
|
func namespacesForLabelValue(namespaces map[string]map[string]string, labelKey, value string) []string {
|
|
return kctl.NamespacesForLabelValue(namespaces, labelKey, value)
|
|
}
|
|
|
|
func diffSecretValues(left, right map[string]string) []kctl.SecretDiffEntry {
|
|
return kctl.DiffSecretValues(left, right)
|
|
}
|
|
|
|
func anyMismatch(entries []kctl.SecretDiffEntry) bool {
|
|
return kctl.AnyMismatch(entries)
|
|
}
|