[Ubuntu] Make k8s tools tests consistent across OS (#8112)

This commit is contained in:
Vasilii Polikarpov
2023-08-18 12:44:06 +02:00
committed by GitHub
parent d9169bba1e
commit 6adb752638

View File

@@ -280,19 +280,19 @@ Describe "Julia" {
Describe "Kubernetes tools" {
It "kind" {
"kind --version" | Should -ReturnZeroExitCode
"kind version" | Should -ReturnZeroExitCode
}
It "kubectl" {
"kubectl version" | Should -MatchCommandOutput "Client Version: v"
"kubectl version --client=true" | Should -MatchCommandOutput "Client Version: v"
}
It "helm" {
"helm version" | Should -ReturnZeroExitCode
"helm version --short" | Should -ReturnZeroExitCode
}
It "minikube" {
"minikube version" | Should -ReturnZeroExitCode
"minikube version --short" | Should -ReturnZeroExitCode
}
It "kustomize" {