Interface KubernetesVerifiers.Verifier
-
- Enclosing class:
- KubernetesVerifiers
public static interface KubernetesVerifiers.Verifier
A verifier is an adapter that uses aKubectlWrapper
to verify that aManifests.ManifestObject
was successfully applied to the Kubernetes cluster.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description KubernetesVerifiers.VerificationResult
verify(KubectlWrapper kubectl, Manifests.ManifestObject object)
Verify the Kubernetes object represented by theManifests.ManifestObject
was applied to the Kubernetes cluster.
-
-
-
Method Detail
-
verify
KubernetesVerifiers.VerificationResult verify(KubectlWrapper kubectl, Manifests.ManifestObject object)
Verify the Kubernetes object represented by theManifests.ManifestObject
was applied to the Kubernetes cluster.- Parameters:
kubectl
- AKubectlWrapper
object for querying the object type in the cluster.object
- The manifest to be verified.- Returns:
- true If the resource was verified, false otherwise.
-
-