From 5fd911d55d0a86ce757cea37c7e9f4398b505309 Mon Sep 17 00:00:00 2001 From: Andrew Suderman Date: Wed, 6 Sep 2023 12:19:17 -0600 Subject: [PATCH] Fix exit code handling (#508) * Fix exit code handling * fix test. Update venom * update the version of kube * fix venom command --- .circleci/config.yml | 12 +- cmd/root.go | 29 +- e2e/test.sh | 4 +- e2e/tests/00_static_files.yaml | 7 + e2e/venom.0.log | 4870 +++++++++++++++++++++++++++++++ e2e/venom.1.log | 4903 ++++++++++++++++++++++++++++++++ e2e/venom.log | 4874 +++++++++++++++++++++++++++++++ 7 files changed, 14677 insertions(+), 22 deletions(-) create mode 100644 e2e/venom.0.log create mode 100644 e2e/venom.1.log create mode 100644 e2e/venom.log diff --git a/.circleci/config.yml b/.circleci/config.yml index 8f159ef2..522fbc95 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -2,7 +2,7 @@ version: 2.1 orbs: orb-tools: circleci/orb-tools@10.1.0 - rok8s: fairwinds/rok8s-scripts@11 + rok8s: fairwinds/rok8s-scripts@12 oss-docs: fairwinds/oss-docs@0 executors: @@ -12,11 +12,11 @@ executors: references: e2e_config: &e2e_config - command_runner_image: quay.io/reactiveops/ci-images:v11-buster - kind_node_image: "kindest/node:v1.21.1@sha256:69860bda5563ac81e3c0057d654b5253219618a22ec3a346306239bba8cfa1a6" + command_runner_image: quay.io/reactiveops/ci-images:v12-buster + kind_node_image: "kindest/node:v1.26.6@sha256:6e2d8b28a5b601defe327b98bd1c2d1930b49e5d8c512e1895099e4504007adb" executor: golang-exec pre_script: e2e/pre.sh - store-test-results: /tmp/test-results + store-test-results: /tmp/test-results/ script: e2e/test.sh requires: - test @@ -90,7 +90,7 @@ jobs: publish-dev-orb: working_directory: /go/src/github.com/fairwindsops/pluto docker: - - image: quay.io/reactiveops/ci-images:v11-alpine + - image: quay.io/reactiveops/ci-images:v12-alpine shell: /bin/bash steps: - checkout @@ -105,7 +105,7 @@ jobs: token-variable: CIRCLECI_DEV_API_TOKEN request-orb-publish: docker: - - image: quay.io/reactiveops/ci-images:v11-alpine + - image: quay.io/reactiveops/ci-images:v12-alpine steps: - *install_vault_alpine - rok8s/get_vault_env: diff --git a/cmd/root.go b/cmd/root.go index fc26b959..403215d2 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -165,10 +165,12 @@ var rootCmd = &cobra.Command{ PersistentPostRun: func(cmd *cobra.Command, args []string) { if noFooter, err := cmd.Flags().GetBool("no-footer"); err == nil && noFooter { + klog.V(5).Infof("exiting with code %d", exitCode) os.Exit(exitCode) } os.Stderr.WriteString("\n\nWant more? Automate Pluto for free with Fairwinds Insights!\n 🚀 https://fairwinds.com/insights-signup/pluto 🚀 \n") + klog.V(5).Infof("exiting with code %d", exitCode) os.Exit(exitCode) }, PersistentPreRunE: func(cmd *cobra.Command, args []string) error { @@ -333,9 +335,9 @@ var detectHelmCmd = &cobra.Command{ fmt.Printf("Error Parsing Output: %v\n", err) os.Exit(1) } - exitCode := apiInstance.GetReturnCode() - klog.V(5).Infof("retCode: %d", exitCode) - os.Exit(exitCode) + exitCode = apiInstance.GetReturnCode() + klog.V(5).Infof("exitCode: %d", exitCode) + return }, } @@ -354,9 +356,9 @@ var detectApiResourceCmd = &cobra.Command{ fmt.Printf("Error Parsing Output: %v\n", err) os.Exit(1) } - exitCode := apiInstance.GetReturnCode() - klog.V(5).Infof("retCode: %d", exitCode) - os.Exit(exitCode) + exitCode = apiInstance.GetReturnCode() + klog.V(5).Infof("exitCode: %d", exitCode) + return }, } @@ -383,9 +385,8 @@ var detectAllInClusterCmd = &cobra.Command{ fmt.Printf("Error Parsing Output: %v\n", err) os.Exit(1) } - exitCode := apiInstance.GetReturnCode() - klog.V(5).Infof("retCode: %d", exitCode) - os.Exit(exitCode) + exitCode = apiInstance.GetReturnCode() + klog.V(5).Infof("exitCode: %d", exitCode) }, } @@ -425,9 +426,9 @@ var detectCmd = &cobra.Command{ fmt.Println("Error parsing output:", err) os.Exit(1) } - retCode := apiInstance.GetReturnCode() - klog.V(5).Infof("retCode: %d", retCode) - os.Exit(retCode) + exitCode = apiInstance.GetReturnCode() + klog.V(5).Infof("exitCode: %d", exitCode) + return } // File input @@ -445,8 +446,8 @@ var detectCmd = &cobra.Command{ fmt.Println("Error parsing output:", err) os.Exit(1) } - retCode := apiInstance.GetReturnCode() - klog.V(5).Infof("retCode: %d", retCode) + exitCode = apiInstance.GetReturnCode() + klog.V(5).Infof("exitCode: %d", exitCode) }, } diff --git a/e2e/test.sh b/e2e/test.sh index 858e2387..9039d4f4 100644 --- a/e2e/test.sh +++ b/e2e/test.sh @@ -9,7 +9,7 @@ echo "** Install and Run Venom **" echo "***************************" printf "\n\n" -curl -LO https://github.com/ovh/venom/releases/download/v0.27.0/venom.linux-amd64 +curl -LO https://github.com/ovh/venom/releases/download/v1.1.0/venom.linux-amd64 mv venom.linux-amd64 /usr/local/bin/venom chmod +x /usr/local/bin/venom @@ -18,5 +18,5 @@ cp /pluto/pluto /usr/local/bin/pluto cd /pluto/e2e mkdir -p /tmp/test-results helm delete -n kube-system hostpath-provisioner || true -venom run tests/* --log debug --output-dir=/tmp/test-results --strict +venom run tests/* --output-dir=/tmp/test-results exit $? diff --git a/e2e/tests/00_static_files.yaml b/e2e/tests/00_static_files.yaml index d2f117ed..68d38760 100644 --- a/e2e/tests/00_static_files.yaml +++ b/e2e/tests/00_static_files.yaml @@ -78,3 +78,10 @@ testcases: - result.systemout ShouldContainSubstring "NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED" - result.systemout ShouldContainSubstring "utilities Deployment extensions/v1beta1 apps/v1 false true" - result.systemout ShouldNotContainSubstring "utilities Deployment apps/v1 false false" + +- name: exit code three for single file + steps: + - script: pluto detect assets/deprecated116/deployment-extensions-v1beta1.yaml + assertions: + - result.code ShouldEqual 3 + - result.systemout ShouldContainSubstring "extensions/v1beta1" \ No newline at end of file diff --git a/e2e/venom.0.log b/e2e/venom.0.log new file mode 100644 index 00000000..651605c1 --- /dev/null +++ b/e2e/venom.0.log @@ -0,0 +1,4870 @@ +Sep 5 12:24:22.479 [INFO] Reading tests/00_static_files.yaml +Sep 5 12:24:22.481 [INFO] Reading tests/01_helm-detect-3.yaml +Sep 5 12:24:22.481 [INFO] Reading tests/03-cli-validation.yaml +Sep 5 12:24:22.481 [INFO] Parsing testsuite tests/00_static_files.yaml : map[venom.datetime:2023-09-05T12:24:22-06:00 venom.testsuite:Static Code Files (including helm) venom.testsuite.filename:00_static_files.yaml venom.testsuite.filepath:tests/00_static_files.yaml venom.testsuite.name:Static Code Files (including helm) venom.testsuite.shortName:00_static_files venom.testsuite.workdir:/Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests venom.timestamp:1693938262] +Sep 5 12:24:22.487 [DEBU] Testsuite (tests/00_static_files.yaml) variables: map[venom.datetime:2023-09-05T12:24:22-06:00 venom.testsuite:Static Code Files (including helm) venom.testsuite.filename:00_static_files.yaml venom.testsuite.filepath:tests/00_static_files.yaml venom.testsuite.name:Static Code Files (including helm) venom.testsuite.shortName:00_static_files venom.testsuite.workdir:/Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests venom.timestamp:1693938262] +Sep 5 12:24:22.487 [INFO] Parsing testsuite tests/01_helm-detect-3.yaml : map[venom.datetime:2023-09-05T12:24:22-06:00 venom.testsuite:Static Code Files (including helm) venom.testsuite.filename:01_helm-detect-3.yaml venom.testsuite.filepath:tests/01_helm-detect-3.yaml venom.testsuite.name:Static Code Files (including helm) venom.testsuite.shortName:01_helm-detect-3 venom.testsuite.workdir:/Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests venom.timestamp:1693938262] +Sep 5 12:24:22.487 [DEBU] Testsuite (tests/01_helm-detect-3.yaml) variables: map[venom.datetime:2023-09-05T12:24:22-06:00 venom.testsuite:Static Code Files (including helm) venom.testsuite.filename:01_helm-detect-3.yaml venom.testsuite.filepath:tests/01_helm-detect-3.yaml venom.testsuite.name:Static Code Files (including helm) venom.testsuite.shortName:01_helm-detect-3 venom.testsuite.workdir:/Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests venom.timestamp:1693938262] +Sep 5 12:24:22.487 [INFO] Parsing testsuite tests/03-cli-validation.yaml : map[venom.datetime:2023-09-05T12:24:22-06:00 venom.testsuite:CLI Validation venom.testsuite.filename:03-cli-validation.yaml venom.testsuite.filepath:tests/03-cli-validation.yaml venom.testsuite.name:CLI Validation venom.testsuite.shortName:03-cli-validation venom.testsuite.workdir:/Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests venom.timestamp:1693938262] +Sep 5 12:24:22.488 [DEBU] Testsuite (tests/03-cli-validation.yaml) variables: map[venom.datetime:2023-09-05T12:24:22-06:00 venom.testsuite:CLI Validation venom.testsuite.filename:03-cli-validation.yaml venom.testsuite.filepath:tests/03-cli-validation.yaml venom.testsuite.name:CLI Validation venom.testsuite.shortName:03-cli-validation venom.testsuite.workdir:/Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests venom.timestamp:1693938262] +Sep 5 12:24:22.488 [DEBU] nb testsuites: 3 +Sep 5 12:24:22.488 [INFO] [Static Code Files (including helm)] Starting testsuite +Sep 5 12:24:22.488 [INFO] [Static Code Files (including helm)] [static-files] Starting testcase +Sep 5 12:24:22.488 [DEBU] [Static Code Files (including helm)] [static-files] Running testcase with variable __Len__: 8 +Sep 5 12:24:22.488 [DEBU] [Static Code Files (including helm)] [static-files] Running testcase with variable venom.testsuite.filename: 00_static_files.yaml +Sep 5 12:24:22.488 [DEBU] [Static Code Files (including helm)] [static-files] Running testcase with variable venom.timestamp: 1693938262 +Sep 5 12:24:22.488 [DEBU] [Static Code Files (including helm)] [static-files] Running testcase with variable venom.testsuite: Static Code Files (including helm) +Sep 5 12:24:22.488 [DEBU] [Static Code Files (including helm)] [static-files] Running testcase with variable __Type__: Map +Sep 5 12:24:22.488 [DEBU] [Static Code Files (including helm)] [static-files] Running testcase with variable venom.testcase: static-files +Sep 5 12:24:22.488 [DEBU] [Static Code Files (including helm)] [static-files] Running testcase with variable venom.libdir: +Sep 5 12:24:22.488 [DEBU] [Static Code Files (including helm)] [static-files] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:24:22.488 [DEBU] [Static Code Files (including helm)] [static-files] Running testcase with variable venom.testsuite.name: Static Code Files (including helm) +Sep 5 12:24:22.488 [DEBU] [Static Code Files (including helm)] [static-files] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:24:22.488 [DEBU] [Static Code Files (including helm)] [static-files] Running testcase with variable venom.outputdir: +Sep 5 12:24:22.488 [DEBU] [Static Code Files (including helm)] [static-files] Running testcase with variable venom.testsuite.shortName: 00_static_files +Sep 5 12:24:22.488 [DEBU] [Static Code Files (including helm)] [static-files] Running testcase with variable venom.testsuite.filepath: tests/00_static_files.yaml +Sep 5 12:24:22.488 [DEBU] [Static Code Files (including helm)] [static-files] Running testcase with variable venom.datetime: 2023-09-05T12:24:22-06:00 +Sep 5 12:24:22.488 [INFO] [Static Code Files (including helm)] [static-files] Step #0 content is: {"assertions":["result.code ShouldEqual 2","result.systemout ShouldContainSubstring \"NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED\"","result.systemout ShouldContainSubstring \"utilities Deployment extensions/v1beta1 apps/v1 false true\"","result.systemout ShouldNotContainSubstring \"utilities Deployment apps/v1 false false\""],"script":"pluto detect-files -d assets/ --target-versions k8s=v1.15.0"} +Sep 5 12:24:22.488 [DEBU] [Static Code Files (including helm)] [static-files] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-403707113 +Sep 5 12:24:22.488 [DEBU] [Static Code Files (including helm)] [static-files] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-403707113' +Sep 5 12:24:22.679 [DEBU] [Static Code Files (including helm)] [static-files] [exec] NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL + +Sep 5 12:24:22.679 [DEBU] [Static Code Files (including helm)] [static-files] [exec] utilities Deployment extensions/v1beta1 apps/v1 false true true + +Sep 5 12:24:22.679 [DEBU] [Static Code Files (including helm)] [static-files] [exec] + +Sep 5 12:24:22.679 [DEBU] [Static Code Files (including helm)] [static-files] [exec] + +Sep 5 12:24:22.679 [DEBU] [Static Code Files (including helm)] [static-files] [exec] Want more? Automate Pluto for free with Fairwinds Insights! + +Sep 5 12:24:22.679 [DEBU] [Static Code Files (including helm)] [static-files] [exec] 🚀 https://fairwinds.com/insights-signup/pluto 🚀 + +Sep 5 12:24:22.679 [DEBU] [Static Code Files (including helm)] [static-files] [exec] utilities Deployment extensions/v1beta1 apps/v1 false true true + +Sep 5 12:24:22.679 [DEBU] [Static Code Files (including helm)] [static-files] [exec] + +Sep 5 12:24:22.679 [DEBU] [Static Code Files (including helm)] [static-files] [exec] result of runTestStepExecutor: {Systemout:NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +utilities Deployment extensions/v1beta1 apps/v1 false true true +utilities Deployment extensions/v1beta1 apps/v1 false true true SystemoutJSON: Systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 SystemerrJSON: Err: Code:2 TimeSeconds:0.190864042} +Sep 5 12:24:22.680 [INFO] [Static Code Files (including helm)] [static-files] Ending testcase +Sep 5 12:24:22.680 [INFO] [Static Code Files (including helm)] [static-files-only-show-removed] Starting testcase +Sep 5 12:24:22.680 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable venom.testsuite: Static Code Files (including helm) +Sep 5 12:24:22.680 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:24:22.680 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable venom.testcase: static-files-only-show-removed +Sep 5 12:24:22.680 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable static-files.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:22.680 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable static-files.result.timeseconds: 0.190864042 +Sep 5 12:24:22.680 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable static-files.result.code: 2 +Sep 5 12:24:22.680 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable venom.testsuite.shortName: 00_static_files +Sep 5 12:24:22.680 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable static-files.result.systemoutjson: +Sep 5 12:24:22.680 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable static-files.result.err: +Sep 5 12:24:22.680 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable static-files.__type__: Result +Sep 5 12:24:22.680 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable static-files.result.systemerrjson: +Sep 5 12:24:22.680 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable venom.timestamp: 1693938262 +Sep 5 12:24:22.680 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable __Type__: Map +Sep 5 12:24:22.680 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable venom.testsuite.filepath: tests/00_static_files.yaml +Sep 5 12:24:22.680 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable static-files.result.__len__: 7 +Sep 5 12:24:22.680 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable static-files.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +utilities Deployment extensions/v1beta1 apps/v1 false true true +utilities Deployment extensions/v1beta1 apps/v1 false true true +Sep 5 12:24:22.680 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable venom.testsuite.name: Static Code Files (including helm) +Sep 5 12:24:22.680 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:24:22.680 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable venom.testsuite.filename: 00_static_files.yaml +Sep 5 12:24:22.680 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable venom.datetime: 2023-09-05T12:24:22-06:00 +Sep 5 12:24:22.680 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable __Len__: 8 +Sep 5 12:24:22.680 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable venom.outputdir: +Sep 5 12:24:22.680 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable venom.libdir: +Sep 5 12:24:22.680 [INFO] [Static Code Files (including helm)] [static-files-only-show-removed] Step #0 content is: {"assertions":["result.code ShouldEqual 0","result.systemout ShouldEqual \"No output to display\""],"script":"pluto detect-files -d assets/ --target-versions k8s=v1.15.0 -r"} +Sep 5 12:24:22.680 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-1721863135 +Sep 5 12:24:22.680 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-1721863135' +Sep 5 12:24:22.795 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] [exec] No output to display + +Sep 5 12:24:22.795 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] [exec] + +Sep 5 12:24:22.795 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] [exec] + +Sep 5 12:24:22.795 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] [exec] Want more? Automate Pluto for free with Fairwinds Insights! + +Sep 5 12:24:22.795 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] [exec] 🚀 https://fairwinds.com/insights-signup/pluto 🚀 + +Sep 5 12:24:22.795 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] [exec] result of runTestStepExecutor: {Systemout:No output to display SystemoutJSON: Systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 SystemerrJSON: Err: Code:0 TimeSeconds:0.11473575} +Sep 5 12:24:22.795 [INFO] [Static Code Files (including helm)] [static-files-only-show-removed] Ending testcase +Sep 5 12:24:22.795 [INFO] [Static Code Files (including helm)] [helm-template] Starting testcase +Sep 5 12:24:22.795 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable venom.testcase: helm-template +Sep 5 12:24:22.795 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable static-files-only-show-removed.result.__len__: 7 +Sep 5 12:24:22.795 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable static-files.result.systemoutjson: +Sep 5 12:24:22.795 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable static-files.result.timeseconds: 0.190864042 +Sep 5 12:24:22.795 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable venom.testsuite.filepath: tests/00_static_files.yaml +Sep 5 12:24:22.795 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable venom.datetime: 2023-09-05T12:24:22-06:00 +Sep 5 12:24:22.795 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable venom.testsuite: Static Code Files (including helm) +Sep 5 12:24:22.796 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable static-files.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +utilities Deployment extensions/v1beta1 apps/v1 false true true +utilities Deployment extensions/v1beta1 apps/v1 false true true +Sep 5 12:24:22.796 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable static-files.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:22.796 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable static-files-only-show-removed.result.systemerrjson: +Sep 5 12:24:22.796 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable static-files.result.code: 2 +Sep 5 12:24:22.796 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable static-files.__type__: Result +Sep 5 12:24:22.796 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable __Type__: Map +Sep 5 12:24:22.796 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable venom.testsuite.name: Static Code Files (including helm) +Sep 5 12:24:22.796 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable static-files.result.__len__: 7 +Sep 5 12:24:22.796 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable static-files.result.err: +Sep 5 12:24:22.796 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable static-files-only-show-removed.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:22.796 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable static-files.result.systemerrjson: +Sep 5 12:24:22.796 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable static-files-only-show-removed.result.code: 0 +Sep 5 12:24:22.796 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable static-files-only-show-removed.__type__: Result +Sep 5 12:24:22.796 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable static-files-only-show-removed.result.err: +Sep 5 12:24:22.796 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable venom.outputdir: +Sep 5 12:24:22.796 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:24:22.796 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable venom.testsuite.shortName: 00_static_files +Sep 5 12:24:22.796 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable __Len__: 8 +Sep 5 12:24:22.796 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable static-files-only-show-removed.result.timeseconds: 0.11473575 +Sep 5 12:24:22.796 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable venom.timestamp: 1693938262 +Sep 5 12:24:22.796 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable static-files-only-show-removed.result.systemoutjson: +Sep 5 12:24:22.796 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable static-files-only-show-removed.result.systemout: No output to display +Sep 5 12:24:22.796 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable venom.testsuite.filename: 00_static_files.yaml +Sep 5 12:24:22.796 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable venom.libdir: +Sep 5 12:24:22.796 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:24:22.796 [INFO] [Static Code Files (including helm)] [helm-template] Step #0 content is: {"assertions":["result.systemout ShouldContainSubstring \"NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED\"","result.systemout ShouldContainSubstring \"release-name-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true\"","result.systemout ShouldNotContainSubstring \"release-name-helm3chart Deployment apps/v1 false false\""],"script":"helm template assets/chart | pluto detect -"} +Sep 5 12:24:22.796 [DEBU] [Static Code Files (including helm)] [helm-template] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-4217374827 +Sep 5 12:24:22.796 [DEBU] [Static Code Files (including helm)] [helm-template] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-4217374827' +Sep 5 12:24:23.057 [DEBU] [Static Code Files (including helm)] [helm-template] [exec] NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL + +Sep 5 12:24:23.057 [DEBU] [Static Code Files (including helm)] [helm-template] [exec] release-name-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true + +Sep 5 12:24:23.057 [DEBU] [Static Code Files (including helm)] [helm-template] [exec] + +Sep 5 12:24:23.057 [DEBU] [Static Code Files (including helm)] [helm-template] [exec] result of runTestStepExecutor: {Systemout:NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +release-name-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true SystemoutJSON: Systemerr: SystemerrJSON: Err: Code:3 TimeSeconds:0.261235458} +Sep 5 12:24:23.057 [INFO] [Static Code Files (including helm)] [helm-template] Ending testcase +Sep 5 12:24:23.058 [INFO] [Static Code Files (including helm)] [static-files-no-deprecated] Starting testcase +Sep 5 12:24:23.058 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable static-files-only-show-removed.result.code: 0 +Sep 5 12:24:23.058 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable venom.timestamp: 1693938262 +Sep 5 12:24:23.058 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable helm-template.result.systemoutjson: +Sep 5 12:24:23.058 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable static-files.__type__: Result +Sep 5 12:24:23.058 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable helm-template.result.__len__: 7 +Sep 5 12:24:23.058 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable helm-template.__type__: Result +Sep 5 12:24:23.058 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable venom.testsuite.filename: 00_static_files.yaml +Sep 5 12:24:23.058 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable static-files-only-show-removed.__type__: Result +Sep 5 12:24:23.058 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable helm-template.result.systemerr: +Sep 5 12:24:23.058 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable __Len__: 8 +Sep 5 12:24:23.058 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable venom.libdir: +Sep 5 12:24:23.058 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:24:23.058 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable venom.testsuite.name: Static Code Files (including helm) +Sep 5 12:24:23.058 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable static-files.result.__len__: 7 +Sep 5 12:24:23.058 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable static-files.result.err: +Sep 5 12:24:23.058 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable static-files-only-show-removed.result.timeseconds: 0.11473575 +Sep 5 12:24:23.058 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable static-files-only-show-removed.result.systemoutjson: +Sep 5 12:24:23.058 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable venom.outputdir: +Sep 5 12:24:23.058 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:24:23.058 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable venom.testsuite.shortName: 00_static_files +Sep 5 12:24:23.058 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable venom.testsuite.filepath: tests/00_static_files.yaml +Sep 5 12:24:23.058 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable static-files-only-show-removed.result.systemout: No output to display +Sep 5 12:24:23.058 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable static-files.result.systemoutjson: +Sep 5 12:24:23.058 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable helm-template.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +release-name-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:24:23.058 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable static-files-only-show-removed.result.err: +Sep 5 12:24:23.058 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable helm-template.result.err: +Sep 5 12:24:23.058 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable static-files.result.code: 2 +Sep 5 12:24:23.058 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable static-files.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +utilities Deployment extensions/v1beta1 apps/v1 false true true +utilities Deployment extensions/v1beta1 apps/v1 false true true +Sep 5 12:24:23.058 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable helm-template.result.timeseconds: 0.261235458 +Sep 5 12:24:23.058 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable venom.datetime: 2023-09-05T12:24:22-06:00 +Sep 5 12:24:23.058 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable static-files-only-show-removed.result.__len__: 7 +Sep 5 12:24:23.058 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable static-files-only-show-removed.result.systemerrjson: +Sep 5 12:24:23.058 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable venom.testsuite: Static Code Files (including helm) +Sep 5 12:24:23.058 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable __Type__: Map +Sep 5 12:24:23.058 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable venom.testcase: static-files-no-deprecated +Sep 5 12:24:23.058 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable static-files.result.systemerrjson: +Sep 5 12:24:23.058 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable static-files.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:23.058 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable helm-template.result.systemerrjson: +Sep 5 12:24:23.058 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable static-files-only-show-removed.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:23.058 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable helm-template.result.code: 3 +Sep 5 12:24:23.058 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable static-files.result.timeseconds: 0.190864042 +Sep 5 12:24:23.058 [INFO] [Static Code Files (including helm)] [static-files-no-deprecated] Step #0 content is: {"assertions":["result.code ShouldEqual 0","result.systemout ShouldContainSubstring \"There were no resources found with known deprecated apiVersions.\""],"script":"pluto detect-files -d assets/non-deprecated --target-versions k8s=v1.16.0"} +Sep 5 12:24:23.058 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-3824571655 +Sep 5 12:24:23.058 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-3824571655' +Sep 5 12:24:23.171 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] [exec] + +Sep 5 12:24:23.171 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] [exec] There were no resources found with known deprecated apiVersions. + +Sep 5 12:24:23.171 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] [exec] + +Sep 5 12:24:23.171 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] [exec] Want more? Automate Pluto for free with Fairwinds Insights! + +Sep 5 12:24:23.171 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] [exec] 🚀 https://fairwinds.com/insights-signup/pluto 🚀 + +Sep 5 12:24:23.172 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] [exec] result of runTestStepExecutor: {Systemout:There were no resources found with known deprecated apiVersions. SystemoutJSON: Systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 SystemerrJSON: Err: Code:0 TimeSeconds:0.113794666} +Sep 5 12:24:23.172 [INFO] [Static Code Files (including helm)] [static-files-no-deprecated] Ending testcase +Sep 5 12:24:23.172 [INFO] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Starting testcase +Sep 5 12:24:23.172 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files-only-show-removed.result.err: +Sep 5 12:24:23.172 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable venom.outputdir: +Sep 5 12:24:23.172 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files-no-deprecated.result.systemerrjson: +Sep 5 12:24:23.172 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files.result.err: +Sep 5 12:24:23.172 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files-only-show-removed.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:23.172 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable helm-template.result.timeseconds: 0.261235458 +Sep 5 12:24:23.172 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable helm-template.__type__: Result +Sep 5 12:24:23.172 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable helm-template.result.systemerrjson: +Sep 5 12:24:23.172 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable venom.timestamp: 1693938262 +Sep 5 12:24:23.172 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:24:23.172 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable __Len__: 8 +Sep 5 12:24:23.172 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable venom.libdir: +Sep 5 12:24:23.172 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files.result.systemerrjson: +Sep 5 12:24:23.172 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +utilities Deployment extensions/v1beta1 apps/v1 false true true +utilities Deployment extensions/v1beta1 apps/v1 false true true +Sep 5 12:24:23.172 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files-no-deprecated.result.systemout: There were no resources found with known deprecated apiVersions. +Sep 5 12:24:23.172 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable helm-template.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +release-name-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:24:23.172 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable venom.testsuite.filename: 00_static_files.yaml +Sep 5 12:24:23.172 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable venom.datetime: 2023-09-05T12:24:22-06:00 +Sep 5 12:24:23.172 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files-only-show-removed.__type__: Result +Sep 5 12:24:23.172 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable helm-template.result.systemerr: +Sep 5 12:24:23.172 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files-only-show-removed.result.systemerrjson: +Sep 5 12:24:23.172 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files-no-deprecated.result.code: 0 +Sep 5 12:24:23.172 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files.result.__len__: 7 +Sep 5 12:24:23.172 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files-no-deprecated.result.timeseconds: 0.113794666 +Sep 5 12:24:23.172 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable venom.testsuite: Static Code Files (including helm) +Sep 5 12:24:23.172 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable helm-template.result.code: 3 +Sep 5 12:24:23.172 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files.result.timeseconds: 0.190864042 +Sep 5 12:24:23.172 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files-only-show-removed.result.timeseconds: 0.11473575 +Sep 5 12:24:23.172 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files-only-show-removed.result.code: 0 +Sep 5 12:24:23.172 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files.result.systemoutjson: +Sep 5 12:24:23.172 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files.__type__: Result +Sep 5 12:24:23.173 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files-no-deprecated.result.err: +Sep 5 12:24:23.173 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable __Type__: Map +Sep 5 12:24:23.173 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable venom.testsuite.name: Static Code Files (including helm) +Sep 5 12:24:23.173 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable venom.testsuite.shortName: 00_static_files +Sep 5 12:24:23.173 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable venom.testsuite.filepath: tests/00_static_files.yaml +Sep 5 12:24:23.173 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable venom.testcase: static-files-target-v1-8-0-not-removed-or-deprecated +Sep 5 12:24:23.173 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files-no-deprecated.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:23.173 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files-only-show-removed.result.__len__: 7 +Sep 5 12:24:23.173 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable helm-template.result.systemoutjson: +Sep 5 12:24:23.173 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files-only-show-removed.result.systemoutjson: +Sep 5 12:24:23.173 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable helm-template.result.err: +Sep 5 12:24:23.173 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:24:23.173 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable helm-template.result.__len__: 7 +Sep 5 12:24:23.173 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files-only-show-removed.result.systemout: No output to display +Sep 5 12:24:23.173 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files-no-deprecated.result.systemoutjson: +Sep 5 12:24:23.173 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files-no-deprecated.result.__len__: 7 +Sep 5 12:24:23.173 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files.result.code: 2 +Sep 5 12:24:23.173 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files-no-deprecated.__type__: Result +Sep 5 12:24:23.173 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:23.173 [INFO] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Step #0 content is: {"assertions":["result.code ShouldEqual 0","result.systemout ShouldContainSubstring \"No output to display\""],"script":"pluto detect-files -d assets/deprecated116 --target-versions k8s=v1.8.0"} +Sep 5 12:24:23.173 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-1779297622 +Sep 5 12:24:23.173 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-1779297622' +Sep 5 12:24:23.285 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] [exec] No output to display + +Sep 5 12:24:23.285 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] [exec] + +Sep 5 12:24:23.285 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] [exec] + +Sep 5 12:24:23.285 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] [exec] Want more? Automate Pluto for free with Fairwinds Insights! + +Sep 5 12:24:23.285 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] [exec] 🚀 https://fairwinds.com/insights-signup/pluto 🚀 + +Sep 5 12:24:23.285 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] [exec] result of runTestStepExecutor: {Systemout:No output to display SystemoutJSON: Systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 SystemerrJSON: Err: Code:0 TimeSeconds:0.112410417} +Sep 5 12:24:23.286 [INFO] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Ending testcase +Sep 5 12:24:23.286 [INFO] [Static Code Files (including helm)] [static-files-wide] Starting testcase +Sep 5 12:24:23.286 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable venom.timestamp: 1693938262 +Sep 5 12:24:23.286 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-only-show-removed.result.systemoutjson: +Sep 5 12:24:23.286 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable helm-template.__type__: Result +Sep 5 12:24:23.286 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable venom.testcase: static-files-wide +Sep 5 12:24:23.286 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-no-deprecated.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:23.286 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable helm-template.result.__len__: 7 +Sep 5 12:24:23.286 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable helm-template.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +release-name-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:24:23.286 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-no-deprecated.__type__: Result +Sep 5 12:24:23.286 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable venom.testsuite.shortName: 00_static_files +Sep 5 12:24:23.286 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.__len__: 7 +Sep 5 12:24:23.286 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files.result.code: 2 +Sep 5 12:24:23.286 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files.__type__: Result +Sep 5 12:24:23.286 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files.result.__len__: 7 +Sep 5 12:24:23.286 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:23.286 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable helm-template.result.systemerr: +Sep 5 12:24:23.286 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-no-deprecated.result.systemout: There were no resources found with known deprecated apiVersions. +Sep 5 12:24:23.286 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-only-show-removed.result.systemout: No output to display +Sep 5 12:24:23.286 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.__type__: Result +Sep 5 12:24:23.286 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-no-deprecated.result.err: +Sep 5 12:24:23.286 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.timeseconds: 0.112410417 +Sep 5 12:24:23.286 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-no-deprecated.result.timeseconds: 0.113794666 +Sep 5 12:24:23.286 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-no-deprecated.result.systemerrjson: +Sep 5 12:24:23.286 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemerrjson: +Sep 5 12:24:23.286 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable venom.outputdir: +Sep 5 12:24:23.286 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable venom.testsuite: Static Code Files (including helm) +Sep 5 12:24:23.286 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable __Type__: Map +Sep 5 12:24:23.286 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-only-show-removed.result.__len__: 7 +Sep 5 12:24:23.286 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable helm-template.result.code: 3 +Sep 5 12:24:23.286 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-only-show-removed.result.timeseconds: 0.11473575 +Sep 5 12:24:23.286 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemoutjson: +Sep 5 12:24:23.286 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.err: +Sep 5 12:24:23.286 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files.result.systemerrjson: +Sep 5 12:24:23.286 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-only-show-removed.result.err: +Sep 5 12:24:23.286 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:23.286 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-no-deprecated.result.__len__: 7 +Sep 5 12:24:23.286 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files.result.systemoutjson: +Sep 5 12:24:23.286 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable helm-template.result.err: +Sep 5 12:24:23.286 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-only-show-removed.__type__: Result +Sep 5 12:24:23.286 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files.result.timeseconds: 0.190864042 +Sep 5 12:24:23.287 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-only-show-removed.result.systemerrjson: +Sep 5 12:24:23.287 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-no-deprecated.result.code: 0 +Sep 5 12:24:23.287 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:24:23.287 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable helm-template.result.systemoutjson: +Sep 5 12:24:23.287 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-only-show-removed.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:23.287 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable venom.testsuite.filename: 00_static_files.yaml +Sep 5 12:24:23.287 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable venom.testsuite.name: Static Code Files (including helm) +Sep 5 12:24:23.287 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable helm-template.result.timeseconds: 0.261235458 +Sep 5 12:24:23.287 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemout: No output to display +Sep 5 12:24:23.287 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:24:23.287 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +utilities Deployment extensions/v1beta1 apps/v1 false true true +utilities Deployment extensions/v1beta1 apps/v1 false true true +Sep 5 12:24:23.287 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-no-deprecated.result.systemoutjson: +Sep 5 12:24:23.287 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable helm-template.result.systemerrjson: +Sep 5 12:24:23.287 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable venom.testsuite.filepath: tests/00_static_files.yaml +Sep 5 12:24:23.287 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable __Len__: 8 +Sep 5 12:24:23.287 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable venom.libdir: +Sep 5 12:24:23.287 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-only-show-removed.result.code: 0 +Sep 5 12:24:23.287 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable venom.datetime: 2023-09-05T12:24:22-06:00 +Sep 5 12:24:23.287 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.code: 0 +Sep 5 12:24:23.287 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files.result.err: +Sep 5 12:24:23.288 [INFO] [Static Code Files (including helm)] [static-files-wide] Step #0 content is: {"assertions":["result.code ShouldEqual 3","result.systemout ShouldContainSubstring \"NAME NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN\"","result.systemout ShouldContainSubstring \"utilities \u003cUNKNOWN\u003e Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0\""],"script":"pluto detect-files -d assets/ -owide"} +Sep 5 12:24:23.288 [DEBU] [Static Code Files (including helm)] [static-files-wide] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-2505836029 +Sep 5 12:24:23.288 [DEBU] [Static Code Files (including helm)] [static-files-wide] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-2505836029' +Sep 5 12:24:23.407 [DEBU] [Static Code Files (including helm)] [static-files-wide] [exec] + +Sep 5 12:24:23.407 [DEBU] [Static Code Files (including helm)] [static-files-wide] [exec] + +Sep 5 12:24:23.407 [DEBU] [Static Code Files (including helm)] [static-files-wide] [exec] Want more? Automate Pluto for free with Fairwinds Insights! + +Sep 5 12:24:23.407 [DEBU] [Static Code Files (including helm)] [static-files-wide] [exec] 🚀 https://fairwinds.com/insights-signup/pluto 🚀 + +Sep 5 12:24:23.407 [DEBU] [Static Code Files (including helm)] [static-files-wide] [exec] NAME NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN REPL AVAIL REPL AVAIL IN + +Sep 5 12:24:23.407 [DEBU] [Static Code Files (including helm)] [static-files-wide] [exec] utilities Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 + +Sep 5 12:24:23.407 [DEBU] [Static Code Files (including helm)] [static-files-wide] [exec] utilities Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 + +Sep 5 12:24:23.407 [DEBU] [Static Code Files (including helm)] [static-files-wide] [exec] + +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-wide] [exec] result of runTestStepExecutor: {Systemout:NAME NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN REPL AVAIL REPL AVAIL IN +utilities Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 +utilities Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 SystemoutJSON: Systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 SystemerrJSON: Err: Code:3 TimeSeconds:0.119414125} +Sep 5 12:24:23.408 [INFO] [Static Code Files (including helm)] [static-files-wide] Ending testcase +Sep 5 12:24:23.408 [INFO] [Static Code Files (including helm)] [static-files-custom] Starting testcase +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files.result.__len__: 7 +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-no-deprecated.result.systemoutjson: +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-wide.result.systemerrjson: +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable helm-template.__type__: Result +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.err: +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files.result.systemoutjson: +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-only-show-removed.result.systemoutjson: +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-only-show-removed.result.err: +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-only-show-removed.result.timeseconds: 0.11473575 +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-only-show-removed.result.systemerrjson: +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable helm-template.result.__len__: 7 +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.__len__: 7 +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-wide.result.timeseconds: 0.119414125 +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files.result.code: 2 +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-wide.result.systemoutjson: +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-no-deprecated.__type__: Result +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable helm-template.result.systemoutjson: +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable venom.libdir: +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-wide.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable venom.timestamp: 1693938262 +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.code: 0 +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-no-deprecated.result.timeseconds: 0.113794666 +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable venom.testcase: static-files-custom +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable venom.outputdir: +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable helm-template.result.systemerrjson: +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable __Type__: Map +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable helm-template.result.systemerr: +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-only-show-removed.result.systemout: No output to display +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable helm-template.result.err: +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.__type__: Result +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable venom.testsuite.shortName: 00_static_files +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable venom.datetime: 2023-09-05T12:24:22-06:00 +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable __Len__: 8 +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable venom.testsuite: Static Code Files (including helm) +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-wide.result.systemout: NAME NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN REPL AVAIL REPL AVAIL IN +utilities Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 +utilities Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-no-deprecated.result.systemout: There were no resources found with known deprecated apiVersions. +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files.result.systemerrjson: +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-only-show-removed.__type__: Result +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-no-deprecated.result.systemerrjson: +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.timeseconds: 0.112410417 +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-wide.result.__len__: 7 +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-only-show-removed.result.__len__: 7 +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files.result.timeseconds: 0.190864042 +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemerrjson: +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable helm-template.result.code: 3 +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-no-deprecated.result.err: +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable helm-template.result.timeseconds: 0.261235458 +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-wide.result.err: +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-wide.__type__: Result +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable venom.testsuite.filename: 00_static_files.yaml +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-only-show-removed.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files.result.err: +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable venom.testsuite.filepath: tests/00_static_files.yaml +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-no-deprecated.result.__len__: 7 +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-no-deprecated.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-no-deprecated.result.code: 0 +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemoutjson: +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-wide.result.code: 3 +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable venom.testsuite.name: Static Code Files (including helm) +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemout: No output to display +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable helm-template.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +release-name-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +utilities Deployment extensions/v1beta1 apps/v1 false true true +utilities Deployment extensions/v1beta1 apps/v1 false true true +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-only-show-removed.result.code: 0 +Sep 5 12:24:23.408 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files.__type__: Result +Sep 5 12:24:23.408 [INFO] [Static Code Files (including helm)] [static-files-custom] Step #0 content is: {"assertions":["result.code ShouldEqual 3","result.systemout ShouldContainSubstring \"NAME NAMESPACE VERSION KIND DEPRECATED DEPRECATED IN COMPONENT\"","result.systemout ShouldContainSubstring \"utilities \u003cUNKNOWN\u003e extensions/v1beta1 Deployment true v1.9.0 k8s\""],"script":"pluto detect-files -d assets/ -o custom --columns \"NAME,NAMESPACE,VERSION,KIND,DEPRECATED,DEPRECATED IN,component\""} +Sep 5 12:24:23.409 [DEBU] [Static Code Files (including helm)] [static-files-custom] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-513340153 +Sep 5 12:24:23.409 [DEBU] [Static Code Files (including helm)] [static-files-custom] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-513340153' +Sep 5 12:24:23.522 [DEBU] [Static Code Files (including helm)] [static-files-custom] [exec] + +Sep 5 12:24:23.522 [DEBU] [Static Code Files (including helm)] [static-files-custom] [exec] + +Sep 5 12:24:23.522 [DEBU] [Static Code Files (including helm)] [static-files-custom] [exec] Want more? Automate Pluto for free with Fairwinds Insights! + +Sep 5 12:24:23.522 [DEBU] [Static Code Files (including helm)] [static-files-custom] [exec] 🚀 https://fairwinds.com/insights-signup/pluto 🚀 + +Sep 5 12:24:23.522 [DEBU] [Static Code Files (including helm)] [static-files-custom] [exec] NAME NAMESPACE VERSION KIND DEPRECATED DEPRECATED IN COMPONENT + +Sep 5 12:24:23.522 [DEBU] [Static Code Files (including helm)] [static-files-custom] [exec] utilities extensions/v1beta1 Deployment true v1.9.0 k8s + +Sep 5 12:24:23.522 [DEBU] [Static Code Files (including helm)] [static-files-custom] [exec] utilities extensions/v1beta1 Deployment true v1.9.0 k8s + +Sep 5 12:24:23.522 [DEBU] [Static Code Files (including helm)] [static-files-custom] [exec] + +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-custom] [exec] result of runTestStepExecutor: {Systemout:NAME NAMESPACE VERSION KIND DEPRECATED DEPRECATED IN COMPONENT +utilities extensions/v1beta1 Deployment true v1.9.0 k8s +utilities extensions/v1beta1 Deployment true v1.9.0 k8s SystemoutJSON: Systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 SystemerrJSON: Err: Code:3 TimeSeconds:0.1138945} +Sep 5 12:24:23.523 [INFO] [Static Code Files (including helm)] [static-files-custom] Ending testcase +Sep 5 12:24:23.523 [INFO] [Static Code Files (including helm)] [static-files-show-file-path] Starting testcase +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable __Len__: 8 +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable __Type__: Map +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files.result.systemoutjson: +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-wide.result.__len__: 7 +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-no-deprecated.__type__: Result +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.code: 0 +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-only-show-removed.result.systemoutjson: +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable venom.datetime: 2023-09-05T12:24:22-06:00 +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-custom.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-custom.__type__: Result +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-no-deprecated.result.systemoutjson: +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files.result.code: 2 +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable helm-template.__type__: Result +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-custom.result.err: +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-no-deprecated.result.__len__: 7 +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files.result.__len__: 7 +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +utilities Deployment extensions/v1beta1 apps/v1 false true true +utilities Deployment extensions/v1beta1 apps/v1 false true true +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-no-deprecated.result.timeseconds: 0.113794666 +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.err: +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-wide.result.systemout: NAME NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN REPL AVAIL REPL AVAIL IN +utilities Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 +utilities Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemout: No output to display +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-custom.result.systemerrjson: +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-no-deprecated.result.systemerrjson: +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-wide.__type__: Result +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable venom.outputdir: +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable venom.testsuite: Static Code Files (including helm) +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.timeseconds: 0.112410417 +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable venom.testsuite.filepath: tests/00_static_files.yaml +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable helm-template.result.err: +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable venom.testsuite.name: Static Code Files (including helm) +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable helm-template.result.systemerrjson: +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-no-deprecated.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable venom.testsuite.filename: 00_static_files.yaml +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable helm-template.result.timeseconds: 0.261235458 +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-only-show-removed.result.code: 0 +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-only-show-removed.result.systemerrjson: +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-no-deprecated.result.err: +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable helm-template.result.systemoutjson: +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable helm-template.result.__len__: 7 +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-no-deprecated.result.systemout: There were no resources found with known deprecated apiVersions. +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-wide.result.systemoutjson: +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-custom.result.systemout: NAME NAMESPACE VERSION KIND DEPRECATED DEPRECATED IN COMPONENT +utilities extensions/v1beta1 Deployment true v1.9.0 k8s +utilities extensions/v1beta1 Deployment true v1.9.0 k8s +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable venom.testcase: static-files-show-file-path +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-custom.result.timeseconds: 0.1138945 +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-wide.result.code: 3 +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files.result.err: +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-only-show-removed.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-wide.result.err: +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files.result.systemerrjson: +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.__type__: Result +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.__len__: 7 +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemerrjson: +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable helm-template.result.systemerr: +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-wide.result.systemerrjson: +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-no-deprecated.result.code: 0 +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable venom.timestamp: 1693938262 +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-wide.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-custom.result.__len__: 7 +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files.__type__: Result +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-only-show-removed.__type__: Result +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable helm-template.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +release-name-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable helm-template.result.code: 3 +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-only-show-removed.result.err: +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-only-show-removed.result.timeseconds: 0.11473575 +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-custom.result.code: 3 +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-only-show-removed.result.systemout: No output to display +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemoutjson: +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable venom.libdir: +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-wide.result.timeseconds: 0.119414125 +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-only-show-removed.result.__len__: 7 +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files.result.timeseconds: 0.190864042 +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-custom.result.systemoutjson: +Sep 5 12:24:23.523 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable venom.testsuite.shortName: 00_static_files +Sep 5 12:24:23.523 [INFO] [Static Code Files (including helm)] [static-files-show-file-path] Step #0 content is: {"assertions":["result.code ShouldEqual 3","result.systemout ShouldContainSubstring \"FILEPATH\"","result.systemout ShouldContainSubstring \"tests/assets/deprecated116/deployment-extensions-v1beta1.yaml\""],"script":"pluto detect-files -d assets/ -o custom --columns \"filepath\""} +Sep 5 12:24:23.524 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-4003059717 +Sep 5 12:24:23.524 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-4003059717' +Sep 5 12:24:23.638 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] [exec] + +Sep 5 12:24:23.638 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] [exec] + +Sep 5 12:24:23.638 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] [exec] Want more? Automate Pluto for free with Fairwinds Insights! + +Sep 5 12:24:23.638 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] [exec] FILEPATH + +Sep 5 12:24:23.638 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] [exec] /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests/assets/deprecated116/deployment-extensions-v1beta1.yaml + +Sep 5 12:24:23.638 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] [exec] /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests/assets/list/list-deployment-deprecated-and-non-deprecated.yaml + +Sep 5 12:24:23.638 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] [exec] 🚀 https://fairwinds.com/insights-signup/pluto 🚀 + +Sep 5 12:24:23.638 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] [exec] + +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] [exec] result of runTestStepExecutor: {Systemout:FILEPATH +/Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests/assets/deprecated116/deployment-extensions-v1beta1.yaml +/Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests/assets/list/list-deployment-deprecated-and-non-deprecated.yaml SystemoutJSON: Systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 SystemerrJSON: Err: Code:3 TimeSeconds:0.114876584} +Sep 5 12:24:23.639 [INFO] [Static Code Files (including helm)] [static-files-show-file-path] Ending testcase +Sep 5 12:24:23.639 [INFO] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Starting testcase +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemerrjson: +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-no-deprecated.result.systemout: There were no resources found with known deprecated apiVersions. +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-show-file-path.result.systemerrjson: +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-wide.result.systemoutjson: +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-only-show-removed.result.code: 0 +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.code: 0 +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files.__type__: Result +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable venom.testsuite.name: Static Code Files (including helm) +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-no-deprecated.result.timeseconds: 0.113794666 +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-only-show-removed.result.systemout: No output to display +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-show-file-path.result.systemoutjson: +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.__len__: 7 +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-no-deprecated.result.systemoutjson: +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-no-deprecated.result.code: 0 +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-custom.result.code: 3 +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.err: +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-only-show-removed.result.systemerrjson: +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable venom.testsuite.filepath: tests/00_static_files.yaml +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-custom.result.timeseconds: 0.1138945 +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-no-deprecated.result.err: +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-custom.result.systemout: NAME NAMESPACE VERSION KIND DEPRECATED DEPRECATED IN COMPONENT +utilities extensions/v1beta1 Deployment true v1.9.0 k8s +utilities extensions/v1beta1 Deployment true v1.9.0 k8s +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-wide.result.systemerrjson: +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable helm-template.__type__: Result +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-wide.__type__: Result +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable helm-template.result.err: +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable helm-template.result.code: 3 +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-only-show-removed.result.timeseconds: 0.11473575 +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-wide.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-custom.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable __Len__: 8 +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable __Type__: Map +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-no-deprecated.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-custom.result.err: +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files.result.err: +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-only-show-removed.__type__: Result +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-custom.result.systemoutjson: +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable venom.testcase: static-files-no-output-due-to-no-matching-components +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-custom.result.systemerrjson: +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.__type__: Result +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable helm-template.result.__len__: 7 +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable helm-template.result.timeseconds: 0.261235458 +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable venom.timestamp: 1693938262 +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable venom.testsuite: Static Code Files (including helm) +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-wide.result.timeseconds: 0.119414125 +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-wide.result.__len__: 7 +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files.result.timeseconds: 0.190864042 +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable venom.outputdir: +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files.result.systemoutjson: +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-only-show-removed.result.__len__: 7 +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemout: No output to display +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-show-file-path.result.systemout: FILEPATH +/Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests/assets/deprecated116/deployment-extensions-v1beta1.yaml +/Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests/assets/list/list-deployment-deprecated-and-non-deprecated.yaml +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-only-show-removed.result.systemoutjson: +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable venom.testsuite.filename: 00_static_files.yaml +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-no-deprecated.result.__len__: 7 +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-show-file-path.result.timeseconds: 0.114876584 +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-show-file-path.__type__: Result +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files.result.code: 2 +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable helm-template.result.systemerrjson: +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-show-file-path.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-no-deprecated.result.systemerrjson: +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable venom.libdir: +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files.result.__len__: 7 +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-wide.result.code: 3 +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-only-show-removed.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemoutjson: +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-custom.result.__len__: 7 +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable venom.datetime: 2023-09-05T12:24:22-06:00 +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable venom.testsuite.shortName: 00_static_files +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-show-file-path.result.err: +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-no-deprecated.__type__: Result +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-show-file-path.result.code: 3 +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable helm-template.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +release-name-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.timeseconds: 0.112410417 +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-wide.result.err: +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files.result.systemerrjson: +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable helm-template.result.systemoutjson: +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-wide.result.systemout: NAME NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN REPL AVAIL REPL AVAIL IN +utilities Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 +utilities Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-custom.__type__: Result +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-only-show-removed.result.err: +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +utilities Deployment extensions/v1beta1 apps/v1 false true true +utilities Deployment extensions/v1beta1 apps/v1 false true true +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-show-file-path.result.__len__: 7 +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable helm-template.result.systemerr: +Sep 5 12:24:23.639 [INFO] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Step #0 content is: {"assertions":["result.code ShouldEqual 0","result.systemout ShouldEqual \"No output to display\""],"script":"pluto detect-files -d assets/ --components=istio"} +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-1695151315 +Sep 5 12:24:23.639 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-1695151315' +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] [exec] + +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] [exec] + +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] [exec] Want more? Automate Pluto for free with Fairwinds Insights! + +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] [exec] 🚀 https://fairwinds.com/insights-signup/pluto 🚀 + +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] [exec] No output to display + +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] [exec] result of runTestStepExecutor: {Systemout:No output to display SystemoutJSON: Systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 SystemerrJSON: Err: Code:0 TimeSeconds:0.114473291} +Sep 5 12:24:23.754 [INFO] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Ending testcase +Sep 5 12:24:23.754 [INFO] [Static Code Files (including helm)] [static-files-in-a-List] Starting testcase +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-custom.result.code: 3 +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-only-show-removed.result.systemout: No output to display +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-custom.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.err: +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable helm-template.result.__len__: 7 +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-wide.result.systemout: NAME NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN REPL AVAIL REPL AVAIL IN +utilities Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 +utilities Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.__type__: Result +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-only-show-removed.result.err: +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-show-file-path.result.err: +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-no-deprecated.__type__: Result +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemoutjson: +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-custom.result.systemout: NAME NAMESPACE VERSION KIND DEPRECATED DEPRECATED IN COMPONENT +utilities extensions/v1beta1 Deployment true v1.9.0 k8s +utilities extensions/v1beta1 Deployment true v1.9.0 k8s +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-show-file-path.result.systemoutjson: +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable venom.datetime: 2023-09-05T12:24:22-06:00 +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-no-output-due-to-no-matching-components.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files.result.err: +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-only-show-removed.result.systemerrjson: +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files.result.code: 2 +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files.result.__len__: 7 +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable helm-template.result.code: 3 +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-wide.result.err: +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files.result.systemerrjson: +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-no-output-due-to-no-matching-components.result.code: 0 +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable helm-template.result.systemoutjson: +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable venom.timestamp: 1693938262 +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable __Len__: 8 +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-only-show-removed.result.systemoutjson: +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-show-file-path.result.systemerrjson: +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-wide.result.systemoutjson: +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-wide.result.__len__: 7 +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable venom.testsuite.name: Static Code Files (including helm) +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-no-output-due-to-no-matching-components.result.__len__: 7 +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-show-file-path.result.timeseconds: 0.114876584 +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files.result.timeseconds: 0.190864042 +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-show-file-path.result.systemout: FILEPATH +/Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests/assets/deprecated116/deployment-extensions-v1beta1.yaml +/Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests/assets/list/list-deployment-deprecated-and-non-deprecated.yaml +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files.__type__: Result +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-show-file-path.__type__: Result +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable venom.testsuite: Static Code Files (including helm) +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable venom.testsuite.shortName: 00_static_files +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.__len__: 7 +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +utilities Deployment extensions/v1beta1 apps/v1 false true true +utilities Deployment extensions/v1beta1 apps/v1 false true true +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-no-deprecated.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-only-show-removed.result.code: 0 +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable helm-template.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +release-name-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-only-show-removed.result.timeseconds: 0.11473575 +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable venom.libdir: +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable venom.testsuite.filename: 00_static_files.yaml +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-custom.result.err: +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-no-deprecated.result.systemoutjson: +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-no-output-due-to-no-matching-components.result.systemerrjson: +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-show-file-path.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-custom.result.systemerrjson: +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-no-deprecated.result.err: +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable helm-template.result.err: +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-no-deprecated.result.systemerrjson: +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-wide.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.code: 0 +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable __Type__: Map +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable venom.testsuite.filepath: tests/00_static_files.yaml +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable venom.outputdir: +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-wide.result.timeseconds: 0.119414125 +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-only-show-removed.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-only-show-removed.result.__len__: 7 +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-custom.result.__len__: 7 +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemerrjson: +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-no-deprecated.result.systemout: There were no resources found with known deprecated apiVersions. +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-no-output-due-to-no-matching-components.result.err: +Sep 5 12:24:23.754 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-no-deprecated.result.__len__: 7 +Sep 5 12:24:23.755 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.timeseconds: 0.112410417 +Sep 5 12:24:23.755 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-no-output-due-to-no-matching-components.result.timeseconds: 0.114473291 +Sep 5 12:24:23.755 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable helm-template.__type__: Result +Sep 5 12:24:23.755 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemout: No output to display +Sep 5 12:24:23.755 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-custom.result.systemoutjson: +Sep 5 12:24:23.755 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable helm-template.result.systemerrjson: +Sep 5 12:24:23.755 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-custom.result.timeseconds: 0.1138945 +Sep 5 12:24:23.755 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-show-file-path.result.__len__: 7 +Sep 5 12:24:23.755 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-no-output-due-to-no-matching-components.result.systemout: No output to display +Sep 5 12:24:23.755 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-no-deprecated.result.code: 0 +Sep 5 12:24:23.755 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-no-deprecated.result.timeseconds: 0.113794666 +Sep 5 12:24:23.755 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable helm-template.result.systemerr: +Sep 5 12:24:23.755 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-show-file-path.result.code: 3 +Sep 5 12:24:23.755 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:24:23.755 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files.result.systemoutjson: +Sep 5 12:24:23.755 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-wide.result.code: 3 +Sep 5 12:24:23.755 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-wide.result.systemerrjson: +Sep 5 12:24:23.755 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable helm-template.result.timeseconds: 0.261235458 +Sep 5 12:24:23.755 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-wide.__type__: Result +Sep 5 12:24:23.755 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable venom.testcase: static-files-in-a-List +Sep 5 12:24:23.755 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-custom.__type__: Result +Sep 5 12:24:23.755 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-no-output-due-to-no-matching-components.__type__: Result +Sep 5 12:24:23.755 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-no-output-due-to-no-matching-components.result.systemoutjson: +Sep 5 12:24:23.755 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-only-show-removed.__type__: Result +Sep 5 12:24:23.755 [INFO] [Static Code Files (including helm)] [static-files-in-a-List] Step #0 content is: {"assertions":["result.code ShouldEqual 2","result.systemout ShouldContainSubstring \"NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED\"","result.systemout ShouldContainSubstring \"utilities Deployment extensions/v1beta1 apps/v1 false true\"","result.systemout ShouldNotContainSubstring \"utilities Deployment apps/v1 false false\""],"script":"pluto detect-files -d assets/list --target-versions k8s=v1.15.0"} +Sep 5 12:24:23.755 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-1032723185 +Sep 5 12:24:23.755 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-1032723185' +Sep 5 12:24:23.885 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] [exec] + +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] [exec] + +Sep 5 12:24:23.885 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] [exec] NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL + +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] [exec] utilities Deployment extensions/v1beta1 apps/v1 false true true + +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] [exec] + +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] [exec] Want more? Automate Pluto for free with Fairwinds Insights! + +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] [exec] 🚀 https://fairwinds.com/insights-signup/pluto 🚀 + +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] [exec] result of runTestStepExecutor: {Systemout:NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +utilities Deployment extensions/v1beta1 apps/v1 false true true SystemoutJSON: Systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 SystemerrJSON: Err: Code:2 TimeSeconds:0.130578458} +Sep 5 12:24:23.886 [INFO] [Static Code Files (including helm)] [static-files-in-a-List] Ending testcase +Sep 5 12:24:23.886 [INFO] [Static Code Files (including helm)] [exit-code-three-for-single-file] Starting testcase +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable venom.testsuite.filename: 00_static_files.yaml +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable venom.testcase: exit-code-three-for-single-file +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-show-file-path.__type__: Result +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-only-show-removed.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable venom.testsuite.name: Static Code Files (including helm) +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable __Len__: 8 +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable venom.libdir: +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-in-a-List.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.code: 0 +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files.__type__: Result +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-in-a-List.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +utilities Deployment extensions/v1beta1 apps/v1 false true true +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-in-a-List.result.err: +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files.result.err: +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-wide.result.systemerrjson: +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable venom.testsuite: Static Code Files (including helm) +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-no-output-due-to-no-matching-components.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-in-a-List.__type__: Result +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-show-file-path.result.systemerrjson: +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-no-output-due-to-no-matching-components.__type__: Result +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files.result.code: 2 +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files.result.systemerrjson: +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.err: +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable venom.timestamp: 1693938262 +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files.result.timeseconds: 0.190864042 +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable helm-template.result.__len__: 7 +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-only-show-removed.result.err: +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-no-deprecated.__type__: Result +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable helm-template.result.systemoutjson: +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-show-file-path.result.systemoutjson: +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable venom.outputdir: +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-show-file-path.result.systemout: FILEPATH +/Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests/assets/deprecated116/deployment-extensions-v1beta1.yaml +/Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests/assets/list/list-deployment-deprecated-and-non-deprecated.yaml +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-no-output-due-to-no-matching-components.result.timeseconds: 0.114473291 +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable __Type__: Map +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-wide.result.systemoutjson: +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-no-output-due-to-no-matching-components.result.systemerrjson: +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-custom.result.__len__: 7 +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable venom.testsuite.filepath: tests/00_static_files.yaml +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-wide.result.__len__: 7 +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-show-file-path.result.__len__: 7 +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-no-output-due-to-no-matching-components.result.__len__: 7 +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-custom.result.systemout: NAME NAMESPACE VERSION KIND DEPRECATED DEPRECATED IN COMPONENT +utilities extensions/v1beta1 Deployment true v1.9.0 k8s +utilities extensions/v1beta1 Deployment true v1.9.0 k8s +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-in-a-List.result.__len__: 7 +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-only-show-removed.result.systemerrjson: +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-custom.result.systemoutjson: +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-only-show-removed.result.timeseconds: 0.11473575 +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable helm-template.result.systemerr: +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-show-file-path.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-in-a-List.result.timeseconds: 0.130578458 +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-show-file-path.result.code: 3 +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.__type__: Result +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-no-deprecated.result.systemerrjson: +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-in-a-List.result.systemoutjson: +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-no-output-due-to-no-matching-components.result.systemoutjson: +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-show-file-path.result.err: +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemout: No output to display +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable venom.testsuite.shortName: 00_static_files +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-custom.result.systemerrjson: +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-no-deprecated.result.timeseconds: 0.113794666 +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-custom.__type__: Result +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-custom.result.err: +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-no-output-due-to-no-matching-components.result.systemout: No output to display +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-no-deprecated.result.err: +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-only-show-removed.result.__len__: 7 +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable venom.datetime: 2023-09-05T12:24:22-06:00 +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-only-show-removed.result.systemoutjson: +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable helm-template.result.timeseconds: 0.261235458 +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-only-show-removed.result.systemout: No output to display +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-show-file-path.result.timeseconds: 0.114876584 +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.__len__: 7 +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable helm-template.result.systemerrjson: +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-no-deprecated.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-wide.result.code: 3 +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-wide.__type__: Result +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-no-output-due-to-no-matching-components.result.err: +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files.result.systemoutjson: +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-custom.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-custom.result.code: 3 +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-only-show-removed.result.code: 0 +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable helm-template.result.err: +Sep 5 12:24:23.886 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-only-show-removed.__type__: Result +Sep 5 12:24:23.887 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-wide.result.systemout: NAME NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN REPL AVAIL REPL AVAIL IN +utilities Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 +utilities Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 +Sep 5 12:24:23.887 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +utilities Deployment extensions/v1beta1 apps/v1 false true true +utilities Deployment extensions/v1beta1 apps/v1 false true true +Sep 5 12:24:23.887 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-no-deprecated.result.systemoutjson: +Sep 5 12:24:23.887 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable helm-template.result.code: 3 +Sep 5 12:24:23.887 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.timeseconds: 0.112410417 +Sep 5 12:24:23.887 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-wide.result.timeseconds: 0.119414125 +Sep 5 12:24:23.887 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-wide.result.err: +Sep 5 12:24:23.887 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-custom.result.timeseconds: 0.1138945 +Sep 5 12:24:23.887 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-no-output-due-to-no-matching-components.result.code: 0 +Sep 5 12:24:23.887 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemerrjson: +Sep 5 12:24:23.887 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-no-deprecated.result.systemout: There were no resources found with known deprecated apiVersions. +Sep 5 12:24:23.887 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-no-deprecated.result.__len__: 7 +Sep 5 12:24:23.887 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-in-a-List.result.code: 2 +Sep 5 12:24:23.887 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-no-deprecated.result.code: 0 +Sep 5 12:24:23.887 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable helm-template.__type__: Result +Sep 5 12:24:23.887 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-wide.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:23.887 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemoutjson: +Sep 5 12:24:23.887 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable helm-template.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +release-name-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:24:23.887 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-in-a-List.result.systemerrjson: +Sep 5 12:24:23.887 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files.result.__len__: 7 +Sep 5 12:24:23.887 [INFO] [Static Code Files (including helm)] [exit-code-three-for-single-file] Step #0 content is: {"assertions":["result.code ShouldEqual 3","result.systemout ShouldContainSubstring \"extensions/v1beta1\""],"script":"pluto detect assets/deprecated116/deployment-extensions-v1beta1.yaml"} +Sep 5 12:24:23.887 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-4086246950 +Sep 5 12:24:23.887 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-4086246950' +Sep 5 12:24:24.002 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] [exec] + +Sep 5 12:24:24.002 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] [exec] + +Sep 5 12:24:24.002 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] [exec] NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL + +Sep 5 12:24:24.002 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] [exec] utilities Deployment extensions/v1beta1 apps/v1 true true true + +Sep 5 12:24:24.002 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] [exec] + +Sep 5 12:24:24.002 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] [exec] Want more? Automate Pluto for free with Fairwinds Insights! + +Sep 5 12:24:24.002 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] [exec] 🚀 https://fairwinds.com/insights-signup/pluto 🚀 + +Sep 5 12:24:24.002 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] [exec] result of runTestStepExecutor: {Systemout:NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +utilities Deployment extensions/v1beta1 apps/v1 true true true SystemoutJSON: Systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 SystemerrJSON: Err: Code:0 TimeSeconds:0.115204041} +Sep 5 12:24:24.002 [ERRO] [Static Code Files (including helm)] [exit-code-three-for-single-file] Errors: +Sep 5 12:24:24.002 [ERRO] [Static Code Files (including helm)] [exit-code-three-for-single-file] Testcase "exit code three for single file", step #0-0: Assertion "result.code ShouldEqual 3" failed. expected: 3 got: 0 (00_static_files.yaml:0) +Sep 5 12:24:24.002 [INFO] [Static Code Files (including helm)] [exit-code-three-for-single-file] Ending testcase +Sep 5 12:24:24.002 [INFO] [Static Code Files (including helm)] Ending testsuite +Sep 5 12:24:24.003 [INFO] [Static Code Files (including helm)] Starting testsuite +Sep 5 12:24:24.003 [INFO] [Static Code Files (including helm)] [install-helm3-assets] Starting testcase +Sep 5 12:24:24.003 [DEBU] [Static Code Files (including helm)] [install-helm3-assets] Running testcase with variable __Len__: 8 +Sep 5 12:24:24.003 [DEBU] [Static Code Files (including helm)] [install-helm3-assets] Running testcase with variable venom.testsuite.shortName: 01_helm-detect-3 +Sep 5 12:24:24.003 [DEBU] [Static Code Files (including helm)] [install-helm3-assets] Running testcase with variable venom.testsuite.name: Static Code Files (including helm) +Sep 5 12:24:24.003 [DEBU] [Static Code Files (including helm)] [install-helm3-assets] Running testcase with variable __Type__: Map +Sep 5 12:24:24.003 [DEBU] [Static Code Files (including helm)] [install-helm3-assets] Running testcase with variable venom.testcase: install-helm3-assets +Sep 5 12:24:24.003 [DEBU] [Static Code Files (including helm)] [install-helm3-assets] Running testcase with variable venom.outputdir: +Sep 5 12:24:24.003 [DEBU] [Static Code Files (including helm)] [install-helm3-assets] Running testcase with variable venom.datetime: 2023-09-05T12:24:22-06:00 +Sep 5 12:24:24.003 [DEBU] [Static Code Files (including helm)] [install-helm3-assets] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:24:24.003 [DEBU] [Static Code Files (including helm)] [install-helm3-assets] Running testcase with variable venom.testsuite.filename: 01_helm-detect-3.yaml +Sep 5 12:24:24.003 [DEBU] [Static Code Files (including helm)] [install-helm3-assets] Running testcase with variable venom.testsuite.filepath: tests/01_helm-detect-3.yaml +Sep 5 12:24:24.003 [DEBU] [Static Code Files (including helm)] [install-helm3-assets] Running testcase with variable venom.testsuite: Static Code Files (including helm) +Sep 5 12:24:24.003 [DEBU] [Static Code Files (including helm)] [install-helm3-assets] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:24:24.003 [DEBU] [Static Code Files (including helm)] [install-helm3-assets] Running testcase with variable venom.timestamp: 1693938262 +Sep 5 12:24:24.003 [DEBU] [Static Code Files (including helm)] [install-helm3-assets] Running testcase with variable venom.libdir: +Sep 5 12:24:24.003 [INFO] [Static Code Files (including helm)] [install-helm3-assets] Step #0 content is: {"assertions":["result.code ShouldEqual 0"],"script":"kubectl create ns demo2\nkubectl apply -f assets/helm3\n"} +Sep 5 12:24:24.003 [DEBU] [Static Code Files (including helm)] [install-helm3-assets] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-2616335534 +Sep 5 12:24:24.003 [DEBU] [Static Code Files (including helm)] [install-helm3-assets] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-2616335534' +Sep 5 12:24:24.245 [DEBU] [Static Code Files (including helm)] [install-helm3-assets] [exec] namespace/demo2 created + +Sep 5 12:24:24.440 [DEBU] [Static Code Files (including helm)] [install-helm3-assets] [exec] secret/sh.helm.release.v1.demo2.v1 created + +Sep 5 12:24:24.444 [DEBU] [Static Code Files (including helm)] [install-helm3-assets] [exec] secret/sh.helm.release.v1.test.v1 created + +Sep 5 12:24:24.449 [DEBU] [Static Code Files (including helm)] [install-helm3-assets] [exec] secret/sh.helm.release.v1.test.v2 created + +Sep 5 12:24:24.451 [DEBU] [Static Code Files (including helm)] [install-helm3-assets] [exec] result of runTestStepExecutor: {Systemout:namespace/demo2 created +secret/sh.helm.release.v1.demo2.v1 created +secret/sh.helm.release.v1.test.v1 created +secret/sh.helm.release.v1.test.v2 created SystemoutJSON: Systemerr: SystemerrJSON: Err: Code:0 TimeSeconds:0.447650417} +Sep 5 12:24:24.451 [INFO] [Static Code Files (including helm)] [install-helm3-assets] Ending testcase +Sep 5 12:24:24.451 [INFO] [Static Code Files (including helm)] [helm-detect-show-all] Starting testcase +Sep 5 12:24:24.451 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable install-helm3-assets.result.err: +Sep 5 12:24:24.451 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable venom.testsuite.shortName: 01_helm-detect-3 +Sep 5 12:24:24.451 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:24:24.451 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable venom.outputdir: +Sep 5 12:24:24.451 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable venom.timestamp: 1693938262 +Sep 5 12:24:24.451 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable venom.testcase: helm-detect-show-all +Sep 5 12:24:24.451 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable install-helm3-assets.__type__: Result +Sep 5 12:24:24.451 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable install-helm3-assets.result.systemout: namespace/demo2 created +secret/sh.helm.release.v1.demo2.v1 created +secret/sh.helm.release.v1.test.v1 created +secret/sh.helm.release.v1.test.v2 created +Sep 5 12:24:24.451 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable venom.testsuite.filename: 01_helm-detect-3.yaml +Sep 5 12:24:24.451 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable venom.testsuite.filepath: tests/01_helm-detect-3.yaml +Sep 5 12:24:24.451 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable __Len__: 8 +Sep 5 12:24:24.451 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable venom.libdir: +Sep 5 12:24:24.451 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable install-helm3-assets.result.__len__: 7 +Sep 5 12:24:24.451 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable install-helm3-assets.result.systemoutjson: +Sep 5 12:24:24.451 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable venom.testsuite: Static Code Files (including helm) +Sep 5 12:24:24.451 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable __Type__: Map +Sep 5 12:24:24.451 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:24:24.451 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable install-helm3-assets.result.systemerrjson: +Sep 5 12:24:24.451 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable install-helm3-assets.result.systemerr: +Sep 5 12:24:24.451 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable venom.testsuite.name: Static Code Files (including helm) +Sep 5 12:24:24.451 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable venom.datetime: 2023-09-05T12:24:22-06:00 +Sep 5 12:24:24.451 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable install-helm3-assets.result.timeseconds: 0.447650417 +Sep 5 12:24:24.451 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable install-helm3-assets.result.code: 0 +Sep 5 12:24:24.451 [INFO] [Static Code Files (including helm)] [helm-detect-show-all] Step #0 content is: {"assertions":["result.code ShouldEqual 3","result.systemout ShouldContainSubstring \"NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED\"","result.systemout ShouldContainSubstring \"test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true\""],"script":"pluto detect-helm --target-versions k8s=v1.16.0"} +Sep 5 12:24:24.451 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-449672057 +Sep 5 12:24:24.451 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-449672057' +Sep 5 12:24:24.590 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] [exec] NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL + +Sep 5 12:24:24.590 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] [exec] test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true + +Sep 5 12:24:24.590 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] [exec] test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true + +Sep 5 12:24:24.590 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] [exec] + +Sep 5 12:24:24.591 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] [exec] result of runTestStepExecutor: {Systemout:NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true SystemoutJSON: Systemerr: SystemerrJSON: Err: Code:3 TimeSeconds:0.139478208} +Sep 5 12:24:24.591 [INFO] [Static Code Files (including helm)] [helm-detect-show-all] Ending testcase +Sep 5 12:24:24.591 [INFO] [Static Code Files (including helm)] [helm-detect] Starting testcase +Sep 5 12:24:24.591 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable venom.libdir: +Sep 5 12:24:24.591 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable venom.datetime: 2023-09-05T12:24:22-06:00 +Sep 5 12:24:24.591 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable venom.testsuite.shortName: 01_helm-detect-3 +Sep 5 12:24:24.591 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable venom.testcase: helm-detect +Sep 5 12:24:24.591 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable helm-detect-show-all.result.__len__: 7 +Sep 5 12:24:24.591 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable helm-detect-show-all.result.systemoutjson: +Sep 5 12:24:24.591 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable install-helm3-assets.result.code: 0 +Sep 5 12:24:24.591 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable venom.testsuite.filepath: tests/01_helm-detect-3.yaml +Sep 5 12:24:24.591 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable helm-detect-show-all.result.systemerr: +Sep 5 12:24:24.591 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable install-helm3-assets.result.systemerr: +Sep 5 12:24:24.591 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable install-helm3-assets.result.timeseconds: 0.447650417 +Sep 5 12:24:24.591 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable venom.testsuite.name: Static Code Files (including helm) +Sep 5 12:24:24.591 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable venom.testsuite: Static Code Files (including helm) +Sep 5 12:24:24.591 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable helm-detect-show-all.result.systemerrjson: +Sep 5 12:24:24.591 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable helm-detect-show-all.result.timeseconds: 0.139478208 +Sep 5 12:24:24.591 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable helm-detect-show-all.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:24:24.591 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable install-helm3-assets.result.err: +Sep 5 12:24:24.591 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable install-helm3-assets.result.systemout: namespace/demo2 created +secret/sh.helm.release.v1.demo2.v1 created +secret/sh.helm.release.v1.test.v1 created +secret/sh.helm.release.v1.test.v2 created +Sep 5 12:24:24.591 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable install-helm3-assets.result.__len__: 7 +Sep 5 12:24:24.591 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable install-helm3-assets.__type__: Result +Sep 5 12:24:24.591 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable __Type__: Map +Sep 5 12:24:24.591 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:24:24.591 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable install-helm3-assets.result.systemoutjson: +Sep 5 12:24:24.591 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable helm-detect-show-all.result.err: +Sep 5 12:24:24.591 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable helm-detect-show-all.result.code: 3 +Sep 5 12:24:24.591 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable venom.testsuite.filename: 01_helm-detect-3.yaml +Sep 5 12:24:24.591 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable install-helm3-assets.result.systemerrjson: +Sep 5 12:24:24.591 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable venom.timestamp: 1693938262 +Sep 5 12:24:24.591 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable __Len__: 8 +Sep 5 12:24:24.591 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:24:24.591 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable venom.outputdir: +Sep 5 12:24:24.591 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable helm-detect-show-all.__type__: Result +Sep 5 12:24:24.591 [INFO] [Static Code Files (including helm)] [helm-detect] Step #0 content is: {"assertions":["result.code ShouldEqual 3","result.systemout ShouldContainSubstring \"NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED\"","result.systemout ShouldContainSubstring \"test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true\"","result.systemout ShouldNotContainSubstring \"test/test-helm3chart Deployment apps/v1 false false\""],"script":"pluto detect-helm --target-versions k8s=v1.16.0"} +Sep 5 12:24:24.592 [DEBU] [Static Code Files (including helm)] [helm-detect] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-3499795071 +Sep 5 12:24:24.592 [DEBU] [Static Code Files (including helm)] [helm-detect] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-3499795071' +Sep 5 12:24:24.730 [DEBU] [Static Code Files (including helm)] [helm-detect] [exec] NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL + +Sep 5 12:24:24.730 [DEBU] [Static Code Files (including helm)] [helm-detect] [exec] test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true + +Sep 5 12:24:24.730 [DEBU] [Static Code Files (including helm)] [helm-detect] [exec] test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true + +Sep 5 12:24:24.730 [DEBU] [Static Code Files (including helm)] [helm-detect] [exec] + +Sep 5 12:24:24.731 [DEBU] [Static Code Files (including helm)] [helm-detect] [exec] result of runTestStepExecutor: {Systemout:NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true SystemoutJSON: Systemerr: SystemerrJSON: Err: Code:3 TimeSeconds:0.139207833} +Sep 5 12:24:24.731 [INFO] [Static Code Files (including helm)] [helm-detect] Ending testcase +Sep 5 12:24:24.731 [INFO] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Starting testcase +Sep 5 12:24:24.731 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable venom.timestamp: 1693938262 +Sep 5 12:24:24.731 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable helm-detect-show-all.__type__: Result +Sep 5 12:24:24.731 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable helm-detect.__type__: Result +Sep 5 12:24:24.731 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable helm-detect-show-all.result.systemoutjson: +Sep 5 12:24:24.731 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable install-helm3-assets.result.err: +Sep 5 12:24:24.731 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable install-helm3-assets.result.systemerrjson: +Sep 5 12:24:24.731 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable helm-detect-show-all.result.systemerr: +Sep 5 12:24:24.731 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable venom.testsuite.filepath: tests/01_helm-detect-3.yaml +Sep 5 12:24:24.731 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:24:24.731 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable venom.outputdir: +Sep 5 12:24:24.731 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable install-helm3-assets.result.systemerr: +Sep 5 12:24:24.731 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable install-helm3-assets.result.systemoutjson: +Sep 5 12:24:24.731 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable venom.testsuite.name: Static Code Files (including helm) +Sep 5 12:24:24.731 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable venom.testsuite.shortName: 01_helm-detect-3 +Sep 5 12:24:24.731 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable venom.testsuite.filename: 01_helm-detect-3.yaml +Sep 5 12:24:24.731 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable helm-detect.result.code: 3 +Sep 5 12:24:24.731 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable install-helm3-assets.result.timeseconds: 0.447650417 +Sep 5 12:24:24.731 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable install-helm3-assets.result.__len__: 7 +Sep 5 12:24:24.731 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable helm-detect-show-all.result.systemerrjson: +Sep 5 12:24:24.731 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable helm-detect-show-all.result.__len__: 7 +Sep 5 12:24:24.731 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable helm-detect-show-all.result.code: 3 +Sep 5 12:24:24.731 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable install-helm3-assets.result.code: 0 +Sep 5 12:24:24.731 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable venom.libdir: +Sep 5 12:24:24.731 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable install-helm3-assets.__type__: Result +Sep 5 12:24:24.731 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable helm-detect.result.systemoutjson: +Sep 5 12:24:24.731 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable helm-detect.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:24:24.731 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable helm-detect.result.err: +Sep 5 12:24:24.731 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:24:24.731 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable venom.datetime: 2023-09-05T12:24:22-06:00 +Sep 5 12:24:24.731 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable venom.testcase: helm-detect-ignore-deprecations +Sep 5 12:24:24.731 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable helm-detect.result.__len__: 7 +Sep 5 12:24:24.731 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable helm-detect-show-all.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:24:24.731 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable helm-detect.result.systemerrjson: +Sep 5 12:24:24.731 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable install-helm3-assets.result.systemout: namespace/demo2 created +secret/sh.helm.release.v1.demo2.v1 created +secret/sh.helm.release.v1.test.v1 created +secret/sh.helm.release.v1.test.v2 created +Sep 5 12:24:24.731 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable helm-detect-show-all.result.err: +Sep 5 12:24:24.731 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable helm-detect-show-all.result.timeseconds: 0.139478208 +Sep 5 12:24:24.731 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable venom.testsuite: Static Code Files (including helm) +Sep 5 12:24:24.731 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable __Type__: Map +Sep 5 12:24:24.731 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable __Len__: 8 +Sep 5 12:24:24.731 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable helm-detect.result.systemerr: +Sep 5 12:24:24.731 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable helm-detect.result.timeseconds: 0.139207833 +Sep 5 12:24:24.731 [INFO] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Step #0 content is: {"assertions":["result.code ShouldEqual 0","result.systemout ShouldContainSubstring \"NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED\"","result.systemout ShouldContainSubstring \"test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 false true\"","result.systemout ShouldNotContainSubstring \"test/test-helm3chart Deployment apps/v1 false false\""],"script":"pluto detect-helm --ignore-deprecations --target-versions k8s=v1.15.0"} +Sep 5 12:24:24.732 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-4145200367 +Sep 5 12:24:24.732 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-4145200367' +Sep 5 12:24:24.869 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] [exec] NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL + +Sep 5 12:24:24.869 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] [exec] test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 false true true + +Sep 5 12:24:24.869 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] [exec] test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 false true true + +Sep 5 12:24:24.869 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] [exec] + +Sep 5 12:24:24.869 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] [exec] result of runTestStepExecutor: {Systemout:NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 false true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 false true true SystemoutJSON: Systemerr: SystemerrJSON: Err: Code:0 TimeSeconds:0.137191792} +Sep 5 12:24:24.869 [INFO] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Ending testcase +Sep 5 12:24:24.869 [INFO] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Starting testcase +Sep 5 12:24:24.869 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect-show-all.result.systemerr: +Sep 5 12:24:24.869 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:24:24.869 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect.result.timeseconds: 0.139207833 +Sep 5 12:24:24.870 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect-show-all.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:24:24.870 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable install-helm3-assets.result.err: +Sep 5 12:24:24.870 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect.result.systemerrjson: +Sep 5 12:24:24.870 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect.result.err: +Sep 5 12:24:24.870 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect.result.__len__: 7 +Sep 5 12:24:24.870 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable __Len__: 8 +Sep 5 12:24:24.870 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect-show-all.result.systemerrjson: +Sep 5 12:24:24.870 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable install-helm3-assets.result.systemout: namespace/demo2 created +secret/sh.helm.release.v1.demo2.v1 created +secret/sh.helm.release.v1.test.v1 created +secret/sh.helm.release.v1.test.v2 created +Sep 5 12:24:24.870 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable venom.testsuite.name: Static Code Files (including helm) +Sep 5 12:24:24.870 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect.result.systemerr: +Sep 5 12:24:24.870 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable install-helm3-assets.result.systemerr: +Sep 5 12:24:24.870 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable install-helm3-assets.result.systemerrjson: +Sep 5 12:24:24.870 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect-show-all.result.timeseconds: 0.139478208 +Sep 5 12:24:24.870 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect-ignore-deprecations.result.err: +Sep 5 12:24:24.870 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable venom.testsuite.filename: 01_helm-detect-3.yaml +Sep 5 12:24:24.870 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect-ignore-deprecations.__type__: Result +Sep 5 12:24:24.870 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect.result.systemoutjson: +Sep 5 12:24:24.870 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect-ignore-deprecations.result.systemoutjson: +Sep 5 12:24:24.870 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect-ignore-deprecations.result.timeseconds: 0.137191792 +Sep 5 12:24:24.870 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:24:24.870 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect-ignore-deprecations.result.systemerrjson: +Sep 5 12:24:24.870 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect-ignore-deprecations.result.systemerr: +Sep 5 12:24:24.870 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:24:24.870 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable venom.testsuite.filepath: tests/01_helm-detect-3.yaml +Sep 5 12:24:24.870 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect-show-all.result.code: 3 +Sep 5 12:24:24.870 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable install-helm3-assets.__type__: Result +Sep 5 12:24:24.870 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable install-helm3-assets.result.code: 0 +Sep 5 12:24:24.870 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable install-helm3-assets.result.systemoutjson: +Sep 5 12:24:24.870 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect-show-all.__type__: Result +Sep 5 12:24:24.870 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect.__type__: Result +Sep 5 12:24:24.870 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable venom.timestamp: 1693938262 +Sep 5 12:24:24.870 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable venom.testsuite: Static Code Files (including helm) +Sep 5 12:24:24.870 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable venom.outputdir: +Sep 5 12:24:24.870 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable venom.testsuite.shortName: 01_helm-detect-3 +Sep 5 12:24:24.870 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect-ignore-deprecations.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 false true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 false true true +Sep 5 12:24:24.870 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect-show-all.result.err: +Sep 5 12:24:24.870 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable install-helm3-assets.result.timeseconds: 0.447650417 +Sep 5 12:24:24.870 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable __Type__: Map +Sep 5 12:24:24.870 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable venom.libdir: +Sep 5 12:24:24.870 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable install-helm3-assets.result.__len__: 7 +Sep 5 12:24:24.870 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect-show-all.result.systemoutjson: +Sep 5 12:24:24.870 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect-ignore-deprecations.result.__len__: 7 +Sep 5 12:24:24.870 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect-show-all.result.__len__: 7 +Sep 5 12:24:24.870 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect.result.code: 3 +Sep 5 12:24:24.870 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect-ignore-deprecations.result.code: 0 +Sep 5 12:24:24.870 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable venom.datetime: 2023-09-05T12:24:22-06:00 +Sep 5 12:24:24.870 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable venom.testcase: helm-detect-show-all-ignore-removals +Sep 5 12:24:24.870 [INFO] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Step #0 content is: {"assertions":["result.code ShouldEqual 0","result.systemout ShouldContainSubstring \"NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED\"","result.systemout ShouldContainSubstring \"test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true\""],"script":"pluto detect-helm --ignore-removals --ignore-deprecations --target-versions k8s=v1.16.0"} +Sep 5 12:24:24.870 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-3408171119 +Sep 5 12:24:24.870 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-3408171119' +Sep 5 12:24:25.007 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] [exec] NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL + +Sep 5 12:24:25.007 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] [exec] test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true + +Sep 5 12:24:25.007 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] [exec] test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true + +Sep 5 12:24:25.007 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] [exec] + +Sep 5 12:24:25.008 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] [exec] result of runTestStepExecutor: {Systemout:NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true SystemoutJSON: Systemerr: SystemerrJSON: Err: Code:0 TimeSeconds:0.137556916} +Sep 5 12:24:25.008 [INFO] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Ending testcase +Sep 5 12:24:25.008 [INFO] [Static Code Files (including helm)] [helm-detect-owide] Starting testcase +Sep 5 12:24:25.008 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-show-all-ignore-removals.result.err: +Sep 5 12:24:25.008 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable install-helm3-assets.result.systemout: namespace/demo2 created +secret/sh.helm.release.v1.demo2.v1 created +secret/sh.helm.release.v1.test.v1 created +secret/sh.helm.release.v1.test.v2 created +Sep 5 12:24:25.008 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-ignore-deprecations.result.systemerrjson: +Sep 5 12:24:25.008 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-show-all-ignore-removals.result.systemerr: +Sep 5 12:24:25.008 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-show-all.result.err: +Sep 5 12:24:25.008 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-ignore-deprecations.__type__: Result +Sep 5 12:24:25.008 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable install-helm3-assets.result.err: +Sep 5 12:24:25.008 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable venom.timestamp: 1693938262 +Sep 5 12:24:25.008 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-ignore-deprecations.result.systemerr: +Sep 5 12:24:25.008 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-show-all-ignore-removals.result.__len__: 7 +Sep 5 12:24:25.008 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:24:25.008 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect.result.systemoutjson: +Sep 5 12:24:25.008 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-show-all.result.systemerr: +Sep 5 12:24:25.008 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable install-helm3-assets.result.systemerr: +Sep 5 12:24:25.008 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable install-helm3-assets.result.code: 0 +Sep 5 12:24:25.008 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable venom.testsuite.filename: 01_helm-detect-3.yaml +Sep 5 12:24:25.008 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect.__type__: Result +Sep 5 12:24:25.008 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable install-helm3-assets.__type__: Result +Sep 5 12:24:25.008 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-show-all-ignore-removals.result.systemerrjson: +Sep 5 12:24:25.008 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-show-all-ignore-removals.result.timeseconds: 0.137556916 +Sep 5 12:24:25.008 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable venom.outputdir: +Sep 5 12:24:25.008 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:24:25.008 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-show-all.result.__len__: 7 +Sep 5 12:24:25.008 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-ignore-deprecations.result.code: 0 +Sep 5 12:24:25.008 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-ignore-deprecations.result.err: +Sep 5 12:24:25.008 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable venom.testsuite.shortName: 01_helm-detect-3 +Sep 5 12:24:25.008 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect.result.systemerrjson: +Sep 5 12:24:25.008 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-show-all.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:24:25.009 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable venom.libdir: +Sep 5 12:24:25.009 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect.result.code: 3 +Sep 5 12:24:25.009 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect.result.__len__: 7 +Sep 5 12:24:25.009 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-ignore-deprecations.result.timeseconds: 0.137191792 +Sep 5 12:24:25.009 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-show-all.result.code: 3 +Sep 5 12:24:25.009 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect.result.systemerr: +Sep 5 12:24:25.009 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable venom.datetime: 2023-09-05T12:24:22-06:00 +Sep 5 12:24:25.009 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect.result.timeseconds: 0.139207833 +Sep 5 12:24:25.009 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable install-helm3-assets.result.__len__: 7 +Sep 5 12:24:25.009 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-show-all-ignore-removals.__type__: Result +Sep 5 12:24:25.009 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable __Len__: 8 +Sep 5 12:24:25.009 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable install-helm3-assets.result.timeseconds: 0.447650417 +Sep 5 12:24:25.009 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-ignore-deprecations.result.systemoutjson: +Sep 5 12:24:25.009 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-ignore-deprecations.result.__len__: 7 +Sep 5 12:24:25.009 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-show-all.result.timeseconds: 0.139478208 +Sep 5 12:24:25.009 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-show-all.__type__: Result +Sep 5 12:24:25.009 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-show-all.result.systemerrjson: +Sep 5 12:24:25.009 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable install-helm3-assets.result.systemerrjson: +Sep 5 12:24:25.009 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable venom.testsuite.name: Static Code Files (including helm) +Sep 5 12:24:25.009 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable venom.testcase: helm-detect-owide +Sep 5 12:24:25.009 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable __Type__: Map +Sep 5 12:24:25.009 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect.result.err: +Sep 5 12:24:25.009 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-show-all-ignore-removals.result.systemoutjson: +Sep 5 12:24:25.009 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-show-all-ignore-removals.result.code: 0 +Sep 5 12:24:25.009 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable venom.testsuite: Static Code Files (including helm) +Sep 5 12:24:25.009 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:24:25.009 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable install-helm3-assets.result.systemoutjson: +Sep 5 12:24:25.009 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-ignore-deprecations.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 false true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 false true true +Sep 5 12:24:25.009 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-show-all-ignore-removals.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:24:25.009 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-show-all.result.systemoutjson: +Sep 5 12:24:25.009 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable venom.testsuite.filepath: tests/01_helm-detect-3.yaml +Sep 5 12:24:25.010 [INFO] [Static Code Files (including helm)] [helm-detect-owide] Step #0 content is: {"assertions":["result.code ShouldEqual 3","result.systemout ShouldContainSubstring \"NAME NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN\"","result.systemout ShouldContainSubstring \"test/test-helm3chart-v1beta1 default Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0\"","result.systemout ShouldContainSubstring \"test/test-helm3chart-v1beta1 demo2 Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0\""],"script":"pluto detect-helm -owide --target-versions k8s=v1.16.0"} +Sep 5 12:24:25.011 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-1688156179 +Sep 5 12:24:25.011 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-1688156179' +Sep 5 12:24:25.151 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] [exec] NAME NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN REPL AVAIL REPL AVAIL IN + +Sep 5 12:24:25.151 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] [exec] test/test-helm3chart-v1beta1 default Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 + +Sep 5 12:24:25.151 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] [exec] test/test-helm3chart-v1beta1 demo2 Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 + +Sep 5 12:24:25.151 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] [exec] + +Sep 5 12:24:25.151 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] [exec] result of runTestStepExecutor: {Systemout:NAME NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN REPL AVAIL REPL AVAIL IN +test/test-helm3chart-v1beta1 default Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 +test/test-helm3chart-v1beta1 demo2 Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 SystemoutJSON: Systemerr: SystemerrJSON: Err: Code:3 TimeSeconds:0.1405395} +Sep 5 12:24:25.152 [INFO] [Static Code Files (including helm)] [helm-detect-owide] Ending testcase +Sep 5 12:24:25.152 [INFO] [Static Code Files (including helm)] [helm-detect-ojson] Starting testcase +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-owide.result.err: +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable install-helm3-assets.result.code: 0 +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-show-all-ignore-removals.result.__len__: 7 +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-ignore-deprecations.result.err: +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-owide.result.systemerr: +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-show-all-ignore-removals.result.timeseconds: 0.137556916 +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-ignore-deprecations.result.__len__: 7 +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-ignore-deprecations.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 false true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 false true true +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable venom.testsuite.filename: 01_helm-detect-3.yaml +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-ignore-deprecations.result.timeseconds: 0.137191792 +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect.result.systemerr: +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-owide.result.systemoutjson: +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-show-all.result.__len__: 7 +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable __Len__: 8 +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect.__type__: Result +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-show-all-ignore-removals.result.code: 0 +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-owide.result.systemerrjson: +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-owide.result.systemout: NAME NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN REPL AVAIL REPL AVAIL IN +test/test-helm3chart-v1beta1 default Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 +test/test-helm3chart-v1beta1 demo2 Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-show-all.result.systemerrjson: +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable venom.testsuite: Static Code Files (including helm) +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable install-helm3-assets.result.__len__: 7 +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect.result.systemoutjson: +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable install-helm3-assets.__type__: Result +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-show-all.result.code: 3 +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect.result.timeseconds: 0.139207833 +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable install-helm3-assets.result.systemerr: +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-show-all-ignore-removals.result.err: +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable venom.datetime: 2023-09-05T12:24:22-06:00 +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable venom.outputdir: +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-show-all.result.systemerr: +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable install-helm3-assets.result.timeseconds: 0.447650417 +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-ignore-deprecations.result.systemoutjson: +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-owide.__type__: Result +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable venom.testsuite.name: Static Code Files (including helm) +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-ignore-deprecations.result.code: 0 +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-owide.result.timeseconds: 0.1405395 +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-owide.result.__len__: 7 +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable __Type__: Map +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable venom.testcase: helm-detect-ojson +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-ignore-deprecations.result.systemerrjson: +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-show-all.__type__: Result +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect.result.code: 3 +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-show-all-ignore-removals.result.systemerrjson: +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable install-helm3-assets.result.systemoutjson: +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect.result.__len__: 7 +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable venom.testsuite.shortName: 01_helm-detect-3 +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-show-all-ignore-removals.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-show-all-ignore-removals.result.systemoutjson: +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-ignore-deprecations.__type__: Result +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable install-helm3-assets.result.err: +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable venom.timestamp: 1693938262 +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect.result.systemerrjson: +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-show-all-ignore-removals.__type__: Result +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable venom.testsuite.filepath: tests/01_helm-detect-3.yaml +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-ignore-deprecations.result.systemerr: +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-show-all.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-show-all.result.timeseconds: 0.139478208 +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-show-all.result.systemoutjson: +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-show-all-ignore-removals.result.systemerr: +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable install-helm3-assets.result.systemout: namespace/demo2 created +secret/sh.helm.release.v1.demo2.v1 created +secret/sh.helm.release.v1.test.v1 created +secret/sh.helm.release.v1.test.v2 created +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable venom.libdir: +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect.result.err: +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-owide.result.code: 3 +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-show-all.result.err: +Sep 5 12:24:25.152 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable install-helm3-assets.result.systemerrjson: +Sep 5 12:24:25.152 [INFO] [Static Code Files (including helm)] [helm-detect-ojson] Step #0 content is: {"assertions":["result.code ShouldEqual 3","result.systemout ShouldEqual {\"items\":[{\"name\":\"test/test-helm3chart-v1beta1\",\"namespace\":\"default\",\"api\":{\"version\":\"extensions/v1beta1\",\"kind\":\"Deployment\",\"deprecated-in\":\"v1.9.0\",\"removed-in\":\"v1.16.0\",\"replacement-api\":\"apps/v1\",\"replacement-available-in\":\"v1.9.0\",\"component\":\"k8s\"},\"deprecated\":true,\"removed\":true,\"replacementAvailable\":true},{\"name\":\"test/test-helm3chart-v1beta1\",\"namespace\":\"demo2\",\"api\":{\"version\":\"extensions/v1beta1\",\"kind\":\"Deployment\",\"deprecated-in\":\"v1.9.0\",\"removed-in\":\"v1.16.0\",\"replacement-api\":\"apps/v1\",\"replacement-available-in\":\"v1.9.0\",\"component\":\"k8s\"},\"deprecated\":true,\"removed\":true,\"replacementAvailable\":true}],\"target-versions\":{\"cert-manager\":\"v1.5.3\",\"istio\":\"v1.11.0\",\"k8s\":\"v1.16.0\"}}"],"script":"pluto detect-helm -ojson --target-versions k8s=v1.16.0"} +Sep 5 12:24:25.153 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-3194864430 +Sep 5 12:24:25.153 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-3194864430' +Sep 5 12:24:25.288 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] [exec] {"items":[{"name":"test/test-helm3chart-v1beta1","namespace":"default","api":{"version":"extensions/v1beta1","kind":"Deployment","deprecated-in":"v1.9.0","removed-in":"v1.16.0","replacement-api":"apps/v1","replacement-available-in":"v1.9.0","component":"k8s"},"deprecated":true,"removed":true,"replacementAvailable":true},{"name":"test/test-helm3chart-v1beta1","namespace":"demo2","api":{"version":"extensions/v1beta1","kind":"Deployment","deprecated-in":"v1.9.0","removed-in":"v1.16.0","replacement-api":"apps/v1","replacement-available-in":"v1.9.0","component":"k8s"},"deprecated":true,"removed":true,"replacementAvailable":true}],"target-versions":{"cert-manager":"v1.5.3","istio":"v1.11.0","k8s":"v1.16.0"}} + +Sep 5 12:24:25.289 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] [exec] result of runTestStepExecutor: {Systemout:{"items":[{"name":"test/test-helm3chart-v1beta1","namespace":"default","api":{"version":"extensions/v1beta1","kind":"Deployment","deprecated-in":"v1.9.0","removed-in":"v1.16.0","replacement-api":"apps/v1","replacement-available-in":"v1.9.0","component":"k8s"},"deprecated":true,"removed":true,"replacementAvailable":true},{"name":"test/test-helm3chart-v1beta1","namespace":"demo2","api":{"version":"extensions/v1beta1","kind":"Deployment","deprecated-in":"v1.9.0","removed-in":"v1.16.0","replacement-api":"apps/v1","replacement-available-in":"v1.9.0","component":"k8s"},"deprecated":true,"removed":true,"replacementAvailable":true}],"target-versions":{"cert-manager":"v1.5.3","istio":"v1.11.0","k8s":"v1.16.0"}} SystemoutJSON:map[items:[map[api:map[component:k8s deprecated-in:v1.9.0 kind:Deployment removed-in:v1.16.0 replacement-api:apps/v1 replacement-available-in:v1.9.0 version:extensions/v1beta1] deprecated:true name:test/test-helm3chart-v1beta1 namespace:default removed:true replacementAvailable:true] map[api:map[component:k8s deprecated-in:v1.9.0 kind:Deployment removed-in:v1.16.0 replacement-api:apps/v1 replacement-available-in:v1.9.0 version:extensions/v1beta1] deprecated:true name:test/test-helm3chart-v1beta1 namespace:demo2 removed:true replacementAvailable:true]] target-versions:map[cert-manager:v1.5.3 istio:v1.11.0 k8s:v1.16.0]] Systemerr: SystemerrJSON: Err: Code:3 TimeSeconds:0.136082625} +Sep 5 12:24:25.290 [INFO] [Static Code Files (including helm)] [helm-detect-ojson] Ending testcase +Sep 5 12:24:25.290 [INFO] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Starting testcase +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.target-versions.k8s: v1.16.0 +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemerrjson: +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.api.replacement-available-in: v1.9.0 +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-show-all.result.systemerr: +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.api.__type__: Map +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-show-all-ignore-removals.result.systemoutjson: +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.__len__: 6 +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemerr: +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.deprecated: true +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.err: +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.api.deprecated-in: v1.9.0 +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect.result.timeseconds: 0.139207833 +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-owide.result.timeseconds: 0.1405395 +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items: [map[api:map[component:k8s deprecated-in:v1.9.0 kind:Deployment removed-in:v1.16.0 replacement-api:apps/v1 replacement-available-in:v1.9.0 version:extensions/v1beta1] deprecated:true name:test/test-helm3chart-v1beta1 namespace:default removed:true replacementAvailable:true] map[api:map[component:k8s deprecated-in:v1.9.0 kind:Deployment removed-in:v1.16.0 replacement-api:apps/v1 replacement-available-in:v1.9.0 version:extensions/v1beta1] deprecated:true name:test/test-helm3chart-v1beta1 namespace:demo2 removed:true replacementAvailable:true]] +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-owide.result.systemerr: +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect.__type__: Result +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable __Type__: Map +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable venom.libdir: +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.api.removed-in: v1.16.0 +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect.result.__len__: 7 +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-show-all-ignore-removals.result.systemerr: +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.replacementavailable: true +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.namespace: default +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable venom.testsuite: Static Code Files (including helm) +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-owide.result.systemerrjson: +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect.result.systemerrjson: +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.api.removed-in: v1.16.0 +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-owide.result.err: +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1: map[api:map[component:k8s deprecated-in:v1.9.0 kind:Deployment removed-in:v1.16.0 replacement-api:apps/v1 replacement-available-in:v1.9.0 version:extensions/v1beta1] deprecated:true name:test/test-helm3chart-v1beta1 namespace:demo2 removed:true replacementAvailable:true] +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.__len__: 6 +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable venom.outputdir: +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-show-all-ignore-removals.result.systemerrjson: +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.api.kind: Deployment +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.api.deprecated-in: v1.9.0 +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.__len__: 2 +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.target-versions.__len__: 3 +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-show-all.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ignore-deprecations.result.timeseconds: 0.137191792 +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.__type__: Map +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable venom.testsuite.name: Static Code Files (including helm) +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable venom.testsuite.shortName: 01_helm-detect-3 +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-show-all.__type__: Result +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.api.replacement-api: apps/v1 +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.removed: true +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ignore-deprecations.result.systemerrjson: +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.name: test/test-helm3chart-v1beta1 +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-show-all.result.__len__: 7 +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.__type__: Array +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.code: 3 +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect.result.code: 3 +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.__type__: Map +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.api: map[component:k8s deprecated-in:v1.9.0 kind:Deployment removed-in:v1.16.0 replacement-api:apps/v1 replacement-available-in:v1.9.0 version:extensions/v1beta1] +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.__type__: Map +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-show-all-ignore-removals.result.__len__: 7 +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.api.replacement-api: apps/v1 +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ignore-deprecations.result.systemoutjson: +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-show-all-ignore-removals.__type__: Result +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson: map[items:[map[api:map[component:k8s deprecated-in:v1.9.0 kind:Deployment removed-in:v1.16.0 replacement-api:apps/v1 replacement-available-in:v1.9.0 version:extensions/v1beta1] deprecated:true name:test/test-helm3chart-v1beta1 namespace:default removed:true replacementAvailable:true] map[api:map[component:k8s deprecated-in:v1.9.0 kind:Deployment removed-in:v1.16.0 replacement-api:apps/v1 replacement-available-in:v1.9.0 version:extensions/v1beta1] deprecated:true name:test/test-helm3chart-v1beta1 namespace:demo2 removed:true replacementAvailable:true]] target-versions:map[cert-manager:v1.5.3 istio:v1.11.0 k8s:v1.16.0]] +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ignore-deprecations.__type__: Result +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.target-versions.istio: v1.11.0 +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.api.replacement-available-in: v1.9.0 +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.api.kind: Deployment +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.api.__type__: Map +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.__len__: 7 +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable venom.timestamp: 1693938262 +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.api.version: extensions/v1beta1 +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable install-helm3-assets.result.systemout: namespace/demo2 created +secret/sh.helm.release.v1.demo2.v1 created +secret/sh.helm.release.v1.test.v1 created +secret/sh.helm.release.v1.test.v2 created +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ignore-deprecations.result.code: 0 +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.name: test/test-helm3chart-v1beta1 +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable install-helm3-assets.__type__: Result +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ignore-deprecations.result.err: +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.target-versions.cert-manager: v1.5.3 +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-owide.result.systemoutjson: +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-show-all-ignore-removals.result.code: 0 +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-owide.result.systemout: NAME NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN REPL AVAIL REPL AVAIL IN +test/test-helm3chart-v1beta1 default Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 +test/test-helm3chart-v1beta1 demo2 Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-show-all.result.err: +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable venom.testsuite.filename: 01_helm-detect-3.yaml +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.__len__: 2 +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-show-all.result.timeseconds: 0.139478208 +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-owide.result.code: 3 +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-show-all.result.systemerrjson: +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.api.__len__: 7 +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable install-helm3-assets.result.timeseconds: 0.447650417 +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-show-all.result.systemoutjson: +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-show-all.result.code: 3 +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-show-all-ignore-removals.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-show-all-ignore-removals.result.err: +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ignore-deprecations.result.systemerr: +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect.result.systemoutjson: +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.removed: true +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.replacementavailable: true +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemout: {"items":[{"name":"test/test-helm3chart-v1beta1","namespace":"default","api":{"version":"extensions/v1beta1","kind":"Deployment","deprecated-in":"v1.9.0","removed-in":"v1.16.0","replacement-api":"apps/v1","replacement-available-in":"v1.9.0","component":"k8s"},"deprecated":true,"removed":true,"replacementAvailable":true},{"name":"test/test-helm3chart-v1beta1","namespace":"demo2","api":{"version":"extensions/v1beta1","kind":"Deployment","deprecated-in":"v1.9.0","removed-in":"v1.16.0","replacement-api":"apps/v1","replacement-available-in":"v1.9.0","component":"k8s"},"deprecated":true,"removed":true,"replacementAvailable":true}],"target-versions":{"cert-manager":"v1.5.3","istio":"v1.11.0","k8s":"v1.16.0"}} +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable install-helm3-assets.result.systemerr: +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable venom.testcase: helm-detect-kube-context-doesnotexist +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.__type__: Result +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ignore-deprecations.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 false true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 false true true +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.target-versions: map[cert-manager:v1.5.3 istio:v1.11.0 k8s:v1.16.0] +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable venom.datetime: 2023-09-05T12:24:22-06:00 +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect.result.systemerr: +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable install-helm3-assets.result.__len__: 7 +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ignore-deprecations.result.__len__: 7 +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.api.version: extensions/v1beta1 +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.api.component: k8s +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.deprecated: true +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.timeseconds: 0.136082625 +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.namespace: demo2 +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-show-all-ignore-removals.result.timeseconds: 0.137556916 +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable venom.testsuite.filepath: tests/01_helm-detect-3.yaml +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable install-helm3-assets.result.code: 0 +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0: map[api:map[component:k8s deprecated-in:v1.9.0 kind:Deployment removed-in:v1.16.0 replacement-api:apps/v1 replacement-available-in:v1.9.0 version:extensions/v1beta1] deprecated:true name:test/test-helm3chart-v1beta1 namespace:default removed:true replacementAvailable:true] +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable install-helm3-assets.result.err: +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.api.component: k8s +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.api.__len__: 7 +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect.result.err: +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable install-helm3-assets.result.systemerrjson: +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.api: map[component:k8s deprecated-in:v1.9.0 kind:Deployment removed-in:v1.16.0 replacement-api:apps/v1 replacement-available-in:v1.9.0 version:extensions/v1beta1] +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-owide.result.__len__: 7 +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable install-helm3-assets.result.systemoutjson: +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-owide.__type__: Result +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable __Len__: 8 +Sep 5 12:24:25.290 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.target-versions.__type__: Map +Sep 5 12:24:25.290 [INFO] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Step #0 content is: {"assertions":["result.code ShouldEqual 1","result.systemout ShouldContainSubstring 'context \"doesnotexist\" does not exist'"],"script":"pluto detect-helm --kube-context doesnotexist"} +Sep 5 12:24:25.291 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-2587691916 +Sep 5 12:24:25.291 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-2587691916' +Sep 5 12:24:25.404 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] [exec] error getting helm configuration: context "doesnotexist" does not exist + +Sep 5 12:24:25.405 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] [exec] result of runTestStepExecutor: {Systemout:error getting helm configuration: context "doesnotexist" does not exist SystemoutJSON: Systemerr: SystemerrJSON: Err: Code:1 TimeSeconds:0.113498334} +Sep 5 12:24:25.405 [INFO] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Ending testcase +Sep 5 12:24:25.405 [INFO] [Static Code Files (including helm)] [cleanup] Starting testcase +Sep 5 12:24:25.405 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-show-all-ignore-removals.result.__len__: 7 +Sep 5 12:24:25.405 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable venom.testsuite.filename: 01_helm-detect-3.yaml +Sep 5 12:24:25.405 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable install-helm3-assets.result.code: 0 +Sep 5 12:24:25.405 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable install-helm3-assets.result.systemoutjson: +Sep 5 12:24:25.405 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemerrjson: +Sep 5 12:24:25.405 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson: map[items:[map[api:map[component:k8s deprecated-in:v1.9.0 kind:Deployment removed-in:v1.16.0 replacement-api:apps/v1 replacement-available-in:v1.9.0 version:extensions/v1beta1] deprecated:true name:test/test-helm3chart-v1beta1 namespace:default removed:true replacementAvailable:true] map[api:map[component:k8s deprecated-in:v1.9.0 kind:Deployment removed-in:v1.16.0 replacement-api:apps/v1 replacement-available-in:v1.9.0 version:extensions/v1beta1] deprecated:true name:test/test-helm3chart-v1beta1 namespace:demo2 removed:true replacementAvailable:true]] target-versions:map[cert-manager:v1.5.3 istio:v1.11.0 k8s:v1.16.0]] +Sep 5 12:24:25.405 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-owide.result.systemoutjson: +Sep 5 12:24:25.405 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:24:25.405 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.name: test/test-helm3chart-v1beta1 +Sep 5 12:24:25.405 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable install-helm3-assets.result.err: +Sep 5 12:24:25.405 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.__type__: Map +Sep 5 12:24:25.405 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.api.__len__: 7 +Sep 5 12:24:25.405 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.target-versions.__type__: Map +Sep 5 12:24:25.405 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemout: {"items":[{"name":"test/test-helm3chart-v1beta1","namespace":"default","api":{"version":"extensions/v1beta1","kind":"Deployment","deprecated-in":"v1.9.0","removed-in":"v1.16.0","replacement-api":"apps/v1","replacement-available-in":"v1.9.0","component":"k8s"},"deprecated":true,"removed":true,"replacementAvailable":true},{"name":"test/test-helm3chart-v1beta1","namespace":"demo2","api":{"version":"extensions/v1beta1","kind":"Deployment","deprecated-in":"v1.9.0","removed-in":"v1.16.0","replacement-api":"apps/v1","replacement-available-in":"v1.9.0","component":"k8s"},"deprecated":true,"removed":true,"replacementAvailable":true}],"target-versions":{"cert-manager":"v1.5.3","istio":"v1.11.0","k8s":"v1.16.0"}} +Sep 5 12:24:25.405 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.api.replacement-api: apps/v1 +Sep 5 12:24:25.405 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-kube-context-doesnotexist.result.code: 1 +Sep 5 12:24:25.405 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.timeseconds: 0.136082625 +Sep 5 12:24:25.405 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.__type__: Result +Sep 5 12:24:25.405 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ignore-deprecations.result.systemerrjson: +Sep 5 12:24:25.405 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.api.component: k8s +Sep 5 12:24:25.405 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ignore-deprecations.result.timeseconds: 0.137191792 +Sep 5 12:24:25.405 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0: map[api:map[component:k8s deprecated-in:v1.9.0 kind:Deployment removed-in:v1.16.0 replacement-api:apps/v1 replacement-available-in:v1.9.0 version:extensions/v1beta1] deprecated:true name:test/test-helm3chart-v1beta1 namespace:default removed:true replacementAvailable:true] +Sep 5 12:24:25.405 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect.result.systemoutjson: +Sep 5 12:24:25.405 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-owide.result.systemout: NAME NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN REPL AVAIL REPL AVAIL IN +test/test-helm3chart-v1beta1 default Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 +test/test-helm3chart-v1beta1 demo2 Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 +Sep 5 12:24:25.405 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:24:25.405 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.api.removed-in: v1.16.0 +Sep 5 12:24:25.405 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.deprecated: true +Sep 5 12:24:25.405 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-show-all-ignore-removals.result.timeseconds: 0.137556916 +Sep 5 12:24:25.405 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.api.component: k8s +Sep 5 12:24:25.405 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable __Len__: 8 +Sep 5 12:24:25.405 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable venom.testcase: cleanup +Sep 5 12:24:25.405 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-kube-context-doesnotexist.result.__len__: 7 +Sep 5 12:24:25.405 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1: map[api:map[component:k8s deprecated-in:v1.9.0 kind:Deployment removed-in:v1.16.0 replacement-api:apps/v1 replacement-available-in:v1.9.0 version:extensions/v1beta1] deprecated:true name:test/test-helm3chart-v1beta1 namespace:demo2 removed:true replacementAvailable:true] +Sep 5 12:24:25.405 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:24:25.405 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ignore-deprecations.result.systemerr: +Sep 5 12:24:25.405 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable venom.libdir: +Sep 5 12:24:25.405 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.__len__: 2 +Sep 5 12:24:25.405 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.target-versions: map[cert-manager:v1.5.3 istio:v1.11.0 k8s:v1.16.0] +Sep 5 12:24:25.405 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect.result.code: 3 +Sep 5 12:24:25.405 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-show-all.result.systemerr: +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.__len__: 6 +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-owide.result.err: +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-owide.result.code: 3 +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable install-helm3-assets.result.systemout: namespace/demo2 created +secret/sh.helm.release.v1.demo2.v1 created +secret/sh.helm.release.v1.test.v1 created +secret/sh.helm.release.v1.test.v2 created +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.target-versions.istio: v1.11.0 +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-show-all-ignore-removals.result.systemerrjson: +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.__len__: 6 +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items: [map[api:map[component:k8s deprecated-in:v1.9.0 kind:Deployment removed-in:v1.16.0 replacement-api:apps/v1 replacement-available-in:v1.9.0 version:extensions/v1beta1] deprecated:true name:test/test-helm3chart-v1beta1 namespace:default removed:true replacementAvailable:true] map[api:map[component:k8s deprecated-in:v1.9.0 kind:Deployment removed-in:v1.16.0 replacement-api:apps/v1 replacement-available-in:v1.9.0 version:extensions/v1beta1] deprecated:true name:test/test-helm3chart-v1beta1 namespace:demo2 removed:true replacementAvailable:true]] +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable venom.outputdir: +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect.result.err: +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.api.replacement-available-in: v1.9.0 +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect.result.timeseconds: 0.139207833 +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect.__type__: Result +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-kube-context-doesnotexist.result.systemerrjson: +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.target-versions.__len__: 3 +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable venom.datetime: 2023-09-05T12:24:22-06:00 +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-show-all.result.systemoutjson: +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-kube-context-doesnotexist.result.timeseconds: 0.113498334 +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.api.kind: Deployment +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.api.__type__: Map +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-show-all.__type__: Result +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.api.version: extensions/v1beta1 +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable install-helm3-assets.__type__: Result +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-show-all.result.err: +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-show-all-ignore-removals.__type__: Result +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemerr: +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.deprecated: true +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.__type__: Map +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable venom.timestamp: 1693938262 +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ignore-deprecations.result.__len__: 7 +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-owide.result.timeseconds: 0.1405395 +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.__len__: 2 +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.replacementavailable: true +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable install-helm3-assets.result.timeseconds: 0.447650417 +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable install-helm3-assets.result.systemerrjson: +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.target-versions.k8s: v1.16.0 +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ignore-deprecations.__type__: Result +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-owide.result.systemerr: +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-show-all-ignore-removals.result.err: +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable venom.testsuite.name: Static Code Files (including helm) +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-show-all.result.timeseconds: 0.139478208 +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.api.__len__: 7 +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.target-versions.cert-manager: v1.5.3 +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.api.deprecated-in: v1.9.0 +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-kube-context-doesnotexist.result.systemerr: +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.err: +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect.result.systemerr: +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable venom.testsuite.shortName: 01_helm-detect-3 +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-kube-context-doesnotexist.result.err: +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ignore-deprecations.result.err: +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-show-all.result.__len__: 7 +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable venom.testsuite.filepath: tests/01_helm-detect-3.yaml +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable venom.testsuite: Static Code Files (including helm) +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-show-all-ignore-removals.result.systemoutjson: +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.removed: true +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-show-all-ignore-removals.result.code: 0 +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect.result.systemerrjson: +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-owide.result.__len__: 7 +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-kube-context-doesnotexist.__type__: Result +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.api.kind: Deployment +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.api: map[component:k8s deprecated-in:v1.9.0 kind:Deployment removed-in:v1.16.0 replacement-api:apps/v1 replacement-available-in:v1.9.0 version:extensions/v1beta1] +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ignore-deprecations.result.systemoutjson: +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.api.__type__: Map +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-owide.result.systemerrjson: +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.__type__: Map +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.api.removed-in: v1.16.0 +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ignore-deprecations.result.code: 0 +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.api.replacement-api: apps/v1 +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.namespace: default +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable install-helm3-assets.result.__len__: 7 +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-show-all.result.code: 3 +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect.result.__len__: 7 +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.replacementavailable: true +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-kube-context-doesnotexist.result.systemout: error getting helm configuration: context "doesnotexist" does not exist +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-kube-context-doesnotexist.result.systemoutjson: +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.api.deprecated-in: v1.9.0 +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-owide.__type__: Result +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable install-helm3-assets.result.systemerr: +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.__type__: Array +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable __Type__: Map +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.namespace: demo2 +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ignore-deprecations.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 false true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 false true true +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.api: map[component:k8s deprecated-in:v1.9.0 kind:Deployment removed-in:v1.16.0 replacement-api:apps/v1 replacement-available-in:v1.9.0 version:extensions/v1beta1] +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-show-all-ignore-removals.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-show-all.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.api.replacement-available-in: v1.9.0 +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-show-all.result.systemerrjson: +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.api.version: extensions/v1beta1 +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.removed: true +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.code: 3 +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-show-all-ignore-removals.result.systemerr: +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.__len__: 7 +Sep 5 12:24:25.406 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.name: test/test-helm3chart-v1beta1 +Sep 5 12:24:25.407 [INFO] [Static Code Files (including helm)] [cleanup] Step #0 content is: {"script":"kubectl delete -f assets/helm3\nkubectl delete ns demo2\n"} +Sep 5 12:24:25.407 [DEBU] [Static Code Files (including helm)] [cleanup] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-2637367897 +Sep 5 12:24:25.407 [DEBU] [Static Code Files (including helm)] [cleanup] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-2637367897' +Sep 5 12:24:25.558 [DEBU] [Static Code Files (including helm)] [cleanup] [exec] secret "sh.helm.release.v1.demo2.v1" deleted + +Sep 5 12:24:25.563 [DEBU] [Static Code Files (including helm)] [cleanup] [exec] secret "sh.helm.release.v1.test.v1" deleted + +Sep 5 12:24:25.568 [DEBU] [Static Code Files (including helm)] [cleanup] [exec] secret "sh.helm.release.v1.test.v2" deleted + +Sep 5 12:24:25.720 [DEBU] [Static Code Files (including helm)] [cleanup] [exec] namespace "demo2" deleted + +Sep 5 12:24:30.812 [DEBU] [Static Code Files (including helm)] [cleanup] [exec] result of runTestStepExecutor: {Systemout:secret "sh.helm.release.v1.demo2.v1" deleted +secret "sh.helm.release.v1.test.v1" deleted +secret "sh.helm.release.v1.test.v2" deleted +namespace "demo2" deleted SystemoutJSON: Systemerr: SystemerrJSON: Err: Code:0 TimeSeconds:5.404218458} +Sep 5 12:24:30.812 [INFO] [Static Code Files (including helm)] [cleanup] Ending testcase +Sep 5 12:24:30.812 [INFO] [Static Code Files (including helm)] Ending testsuite +Sep 5 12:24:30.813 [INFO] [CLI Validation] Starting testsuite +Sep 5 12:24:30.813 [INFO] [CLI Validation] [Pass-bad-semver-with-no-v] Starting testcase +Sep 5 12:24:30.813 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] Running testcase with variable venom.testsuite.filename: 03-cli-validation.yaml +Sep 5 12:24:30.813 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] Running testcase with variable venom.testsuite.filepath: tests/03-cli-validation.yaml +Sep 5 12:24:30.813 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] Running testcase with variable venom.libdir: +Sep 5 12:24:30.813 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] Running testcase with variable venom.testsuite: CLI Validation +Sep 5 12:24:30.813 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:24:30.813 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] Running testcase with variable venom.outputdir: +Sep 5 12:24:30.813 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] Running testcase with variable venom.timestamp: 1693938262 +Sep 5 12:24:30.813 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:24:30.813 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] Running testcase with variable venom.datetime: 2023-09-05T12:24:22-06:00 +Sep 5 12:24:30.813 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] Running testcase with variable __Len__: 8 +Sep 5 12:24:30.813 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] Running testcase with variable venom.testsuite.name: CLI Validation +Sep 5 12:24:30.813 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] Running testcase with variable venom.testsuite.shortName: 03-cli-validation +Sep 5 12:24:30.813 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] Running testcase with variable __Type__: Map +Sep 5 12:24:30.813 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] Running testcase with variable venom.testcase: Pass-bad-semver-with-no-v +Sep 5 12:24:30.813 [INFO] [CLI Validation] [Pass-bad-semver-with-no-v] Step #0 content is: {"assertions":["result.code ShouldEqual 1","result.systemerr ShouldContainSubstring \"you must use valid semver for all target versions with a leading 'v' - got foo 1.0.0\""],"script":"pluto detect-files -d assets/deprecated116 --target-versions foo=1.0.0"} +Sep 5 12:24:30.814 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-3590011691 +Sep 5 12:24:30.814 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-3590011691' +Sep 5 12:24:30.950 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] Error: you must use valid semver for all target versions with a leading 'v' - got foo 1.0.0 + +Sep 5 12:24:30.951 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] Usage: + +Sep 5 12:24:30.951 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] pluto detect-files [flags] + +Sep 5 12:24:30.951 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] + +Sep 5 12:24:30.951 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] Flags: + +Sep 5 12:24:30.951 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] -d, --directory string The directory to scan. If blank, defaults to current working dir. + +Sep 5 12:24:30.951 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] -h, --help help for detect-files + +Sep 5 12:24:30.951 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] + +Sep 5 12:24:30.951 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] Global Flags: + +Sep 5 12:24:30.951 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + +Sep 5 12:24:30.951 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + +Sep 5 12:24:30.951 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] --components strings A list of components to run checks for. If nil, will check for all found in versions. + +Sep 5 12:24:30.952 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + +Sep 5 12:24:30.952 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + +Sep 5 12:24:30.952 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + +Sep 5 12:24:30.952 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] --no-footer Disable footer output + +Sep 5 12:24:30.952 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + +Sep 5 12:24:30.952 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + +Sep 5 12:24:30.952 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + +Sep 5 12:24:30.952 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + +Sep 5 12:24:30.952 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] -v, --v Level number for the log level verbosity + +Sep 5 12:24:30.952 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] + +Sep 5 12:24:30.952 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] E0905 12:24:30.952261 96449 root.go:471] you must use valid semver for all target versions with a leading 'v' - got foo 1.0.0 + +Sep 5 12:24:30.952 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] result of runTestStepExecutor: {Systemout: SystemoutJSON: Systemerr:Error: you must use valid semver for all target versions with a leading 'v' - got foo 1.0.0 +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:30.952261 96449 root.go:471] you must use valid semver for all target versions with a leading 'v' - got foo 1.0.0 SystemerrJSON: Err: Code:1 TimeSeconds:0.138676} +Sep 5 12:24:30.953 [INFO] [CLI Validation] [Pass-bad-semver-with-no-v] Ending testcase +Sep 5 12:24:30.953 [INFO] [CLI Validation] [Pass-bad-semver-starting-with-v] Starting testcase +Sep 5 12:24:30.953 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable __Len__: 8 +Sep 5 12:24:30.953 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable venom.libdir: +Sep 5 12:24:30.953 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:24:30.953 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable venom.testcase: Pass-bad-semver-starting-with-v +Sep 5 12:24:30.953 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable Pass-bad-semver-with-no-v.__type__: Result +Sep 5 12:24:30.953 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable Pass-bad-semver-with-no-v.result.systemerr: Error: you must use valid semver for all target versions with a leading 'v' - got foo 1.0.0 +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:30.952261 96449 root.go:471] you must use valid semver for all target versions with a leading 'v' - got foo 1.0.0 +Sep 5 12:24:30.953 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:24:30.953 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable venom.testsuite.filename: 03-cli-validation.yaml +Sep 5 12:24:30.953 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable venom.testsuite.filepath: tests/03-cli-validation.yaml +Sep 5 12:24:30.953 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable venom.outputdir: +Sep 5 12:24:30.953 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable Pass-bad-semver-with-no-v.result.timeseconds: 0.138676 +Sep 5 12:24:30.953 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable Pass-bad-semver-with-no-v.result.systemoutjson: +Sep 5 12:24:30.953 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable Pass-bad-semver-with-no-v.result.systemerrjson: +Sep 5 12:24:30.953 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable venom.testsuite.name: CLI Validation +Sep 5 12:24:30.953 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable venom.testsuite: CLI Validation +Sep 5 12:24:30.953 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable Pass-bad-semver-with-no-v.result.code: 1 +Sep 5 12:24:30.953 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable Pass-bad-semver-with-no-v.result.__len__: 7 +Sep 5 12:24:30.953 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable venom.timestamp: 1693938262 +Sep 5 12:24:30.953 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable venom.datetime: 2023-09-05T12:24:22-06:00 +Sep 5 12:24:30.953 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable __Type__: Map +Sep 5 12:24:30.953 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable Pass-bad-semver-with-no-v.result.err: +Sep 5 12:24:30.953 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable Pass-bad-semver-with-no-v.result.systemout: +Sep 5 12:24:30.953 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable venom.testsuite.shortName: 03-cli-validation +Sep 5 12:24:30.953 [INFO] [CLI Validation] [Pass-bad-semver-starting-with-v] Step #0 content is: {"assertions":["result.code ShouldEqual 1","result.systemerr ShouldContainSubstring \"you must use valid semver for all target versions with a leading 'v' - got foo vfoo\""],"script":"pluto detect-files -d assets/deprecated116 --target-versions foo=vfoo"} +Sep 5 12:24:30.953 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-1132951683 +Sep 5 12:24:30.953 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-1132951683' +Sep 5 12:24:31.066 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] Error: you must use valid semver for all target versions with a leading 'v' - got foo vfoo + +Sep 5 12:24:31.066 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] Usage: + +Sep 5 12:24:31.066 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] pluto detect-files [flags] + +Sep 5 12:24:31.066 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] + +Sep 5 12:24:31.066 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] Flags: + +Sep 5 12:24:31.066 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] -d, --directory string The directory to scan. If blank, defaults to current working dir. + +Sep 5 12:24:31.066 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] -h, --help help for detect-files + +Sep 5 12:24:31.066 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] + +Sep 5 12:24:31.066 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] Global Flags: + +Sep 5 12:24:31.066 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + +Sep 5 12:24:31.066 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + +Sep 5 12:24:31.066 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] --components strings A list of components to run checks for. If nil, will check for all found in versions. + +Sep 5 12:24:31.066 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + +Sep 5 12:24:31.066 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + +Sep 5 12:24:31.066 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + +Sep 5 12:24:31.066 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] --no-footer Disable footer output + +Sep 5 12:24:31.066 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + +Sep 5 12:24:31.066 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + +Sep 5 12:24:31.066 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + +Sep 5 12:24:31.066 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + +Sep 5 12:24:31.066 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] -v, --v Level number for the log level verbosity + +Sep 5 12:24:31.066 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] + +Sep 5 12:24:31.066 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] E0905 12:24:31.066794 96589 root.go:471] you must use valid semver for all target versions with a leading 'v' - got foo vfoo + +Sep 5 12:24:31.067 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] result of runTestStepExecutor: {Systemout: SystemoutJSON: Systemerr:Error: you must use valid semver for all target versions with a leading 'v' - got foo vfoo +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:31.066794 96589 root.go:471] you must use valid semver for all target versions with a leading 'v' - got foo vfoo SystemerrJSON: Err: Code:1 TimeSeconds:0.113788667} +Sep 5 12:24:31.067 [INFO] [CLI Validation] [Pass-bad-semver-starting-with-v] Ending testcase +Sep 5 12:24:31.067 [INFO] [CLI Validation] [list-versions-ojson] Starting testcase +Sep 5 12:24:31.067 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable venom.timestamp: 1693938262 +Sep 5 12:24:31.067 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable venom.testsuite.shortName: 03-cli-validation +Sep 5 12:24:31.067 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable venom.testsuite: CLI Validation +Sep 5 12:24:31.067 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable __Type__: Map +Sep 5 12:24:31.067 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable __Len__: 8 +Sep 5 12:24:31.067 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable Pass-bad-semver-with-no-v.result.systemoutjson: +Sep 5 12:24:31.067 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable Pass-bad-semver-starting-with-v.result.err: +Sep 5 12:24:31.067 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable Pass-bad-semver-with-no-v.result.systemout: +Sep 5 12:24:31.067 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable venom.testsuite.filepath: tests/03-cli-validation.yaml +Sep 5 12:24:31.067 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable Pass-bad-semver-starting-with-v.result.code: 1 +Sep 5 12:24:31.067 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable Pass-bad-semver-starting-with-v.result.timeseconds: 0.113788667 +Sep 5 12:24:31.067 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemout: +Sep 5 12:24:31.067 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable venom.datetime: 2023-09-05T12:24:22-06:00 +Sep 5 12:24:31.067 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable Pass-bad-semver-with-no-v.result.__len__: 7 +Sep 5 12:24:31.067 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:24:31.067 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:24:31.067 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemerrjson: +Sep 5 12:24:31.067 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable Pass-bad-semver-starting-with-v.result.__len__: 7 +Sep 5 12:24:31.067 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable venom.testsuite.name: CLI Validation +Sep 5 12:24:31.067 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable venom.testcase: list-versions-ojson +Sep 5 12:24:31.067 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemoutjson: +Sep 5 12:24:31.067 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable Pass-bad-semver-with-no-v.result.err: +Sep 5 12:24:31.067 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable Pass-bad-semver-with-no-v.result.systemerrjson: +Sep 5 12:24:31.067 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable venom.libdir: +Sep 5 12:24:31.067 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable Pass-bad-semver-with-no-v.result.systemerr: Error: you must use valid semver for all target versions with a leading 'v' - got foo 1.0.0 +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:30.952261 96449 root.go:471] you must use valid semver for all target versions with a leading 'v' - got foo 1.0.0 +Sep 5 12:24:31.067 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable Pass-bad-semver-with-no-v.result.code: 1 +Sep 5 12:24:31.067 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable Pass-bad-semver-with-no-v.__type__: Result +Sep 5 12:24:31.067 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemerr: Error: you must use valid semver for all target versions with a leading 'v' - got foo vfoo +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:31.066794 96589 root.go:471] you must use valid semver for all target versions with a leading 'v' - got foo vfoo +Sep 5 12:24:31.067 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable Pass-bad-semver-with-no-v.result.timeseconds: 0.138676 +Sep 5 12:24:31.067 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable venom.testsuite.filename: 03-cli-validation.yaml +Sep 5 12:24:31.067 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable venom.outputdir: +Sep 5 12:24:31.067 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable Pass-bad-semver-starting-with-v.__type__: Result +Sep 5 12:24:31.067 [INFO] [CLI Validation] [list-versions-ojson] Step #0 content is: {"assertions":["result.code ShouldEqual 0"],"script":"pluto list-versions"} +Sep 5 12:24:31.068 [DEBU] [CLI Validation] [list-versions-ojson] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-68517381 +Sep 5 12:24:31.068 [DEBU] [CLI Validation] [list-versions-ojson] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-68517381' +Sep 5 12:24:31.180 [DEBU] [CLI Validation] [list-versions-ojson] [exec] KIND NAME DEPRECATED IN REMOVED IN REPLACEMENT REPL AVAIL IN COMPONENT + +Sep 5 12:24:31.180 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Deployment extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s + +Sep 5 12:24:31.180 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Deployment apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s + +Sep 5 12:24:31.180 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Deployment apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s + +Sep 5 12:24:31.180 [DEBU] [CLI Validation] [list-versions-ojson] [exec] StatefulSet apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s + +Sep 5 12:24:31.180 [DEBU] [CLI Validation] [list-versions-ojson] [exec] StatefulSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s + +Sep 5 12:24:31.180 [DEBU] [CLI Validation] [list-versions-ojson] [exec] NetworkPolicy extensions/v1beta1 v1.9.0 v1.16.0 networking.k8s.io/v1 v1.8.0 k8s + +Sep 5 12:24:31.180 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Ingress extensions/v1beta1 v1.14.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s + +Sep 5 12:24:31.180 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Ingress networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s + +Sep 5 12:24:31.180 [DEBU] [CLI Validation] [list-versions-ojson] [exec] IngressClass networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s + +Sep 5 12:24:31.180 [DEBU] [CLI Validation] [list-versions-ojson] [exec] DaemonSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s + +Sep 5 12:24:31.180 [DEBU] [CLI Validation] [list-versions-ojson] [exec] DaemonSet extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s + +Sep 5 12:24:31.180 [DEBU] [CLI Validation] [list-versions-ojson] [exec] PodSecurityPolicy extensions/v1beta1 v1.10.0 v1.16.0 policy/v1beta1 v1.10.0 k8s + +Sep 5 12:24:31.180 [DEBU] [CLI Validation] [list-versions-ojson] [exec] PodSecurityPolicy policy/v1beta1 v1.21.0 v1.25.0 n/a n/a k8s + +Sep 5 12:24:31.180 [DEBU] [CLI Validation] [list-versions-ojson] [exec] ReplicaSet extensions/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s + +Sep 5 12:24:31.180 [DEBU] [CLI Validation] [list-versions-ojson] [exec] ReplicaSet apps/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s + +Sep 5 12:24:31.180 [DEBU] [CLI Validation] [list-versions-ojson] [exec] ReplicaSet apps/v1beta2 n/a v1.16.0 apps/v1 v1.9.0 k8s + +Sep 5 12:24:31.180 [DEBU] [CLI Validation] [list-versions-ojson] [exec] PriorityClass scheduling.k8s.io/v1beta1 v1.14.0 v1.22.0 scheduling.k8s.io/v1 v1.14.0 k8s + +Sep 5 12:24:31.180 [DEBU] [CLI Validation] [list-versions-ojson] [exec] PriorityClass scheduling.k8s.io/v1alpha1 v1.14.0 v1.17.0 scheduling.k8s.io/v1 n/a k8s + +Sep 5 12:24:31.180 [DEBU] [CLI Validation] [list-versions-ojson] [exec] CustomResourceDefinition apiextensions.k8s.io/v1beta1 v1.16.0 v1.22.0 apiextensions.k8s.io/v1 v1.16.0 k8s + +Sep 5 12:24:31.180 [DEBU] [CLI Validation] [list-versions-ojson] [exec] MutatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s + +Sep 5 12:24:31.180 [DEBU] [CLI Validation] [list-versions-ojson] [exec] ValidatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s + +Sep 5 12:24:31.180 [DEBU] [CLI Validation] [list-versions-ojson] [exec] ClusterRoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s + +Sep 5 12:24:31.180 [DEBU] [CLI Validation] [list-versions-ojson] [exec] ClusterRole rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] ClusterRoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] ClusterRoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Role rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] RoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] RoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] RoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] ClusterRoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] ClusterRole rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] ClusterRoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] ClusterRoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Role rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] RoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] RoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] RoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] RuntimeClass node.k8s.io/v1beta1 v1.22.0 v1.25.0 node.k8s.io/v1 v1.20.0 k8s + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] PodDisruptionBudget policy/v1beta1 v1.21.0 v1.25.0 policy/v1 v1.21.0 k8s + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] PodDisruptionBudgetList policy/v1beta1 v1.21.0 v1.25.0 policy/v1 n/a k8s + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] HorizontalPodAutoscaler autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 v1.23.0 k8s + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] HorizontalPodAutoscalerList autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 n/a k8s + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] HorizontalPodAutoscaler autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] HorizontalPodAutoscalerList autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] CronJob batch/v1beta1 v1.21.0 v1.25.0 batch/v1 v1.21.0 k8s + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] CronJobList batch/v1beta1 v1.21.0 v1.25.0 batch/v1 n/a k8s + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] CSINode storage.k8s.io/v1beta1 v1.17.0 v1.22.0 storage.k8s.io/v1 v1.17.0 k8s + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] CSIDriver storage.k8s.io/v1beta1 v1.19.0 v1.22.0 storage.k8s.io/v1 v1.19.0 k8s + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] CSIStorageCapacity storage.k8s.io/v1beta1 v1.24.0 v1.27.0 storage.k8s.io/v1 v1.24.0 k8s + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] StorageClass storage.k8s.io/v1beta1 v1.6.0 v1.22.0 storage.k8s.io/v1 v1.6.0 k8s + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] VolumeAttachment storage.k8s.io/v1beta1 v1.13.0 v1.22.0 storage.k8s.io/v1 v1.13.0 k8s + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] APIService apiregistration.k8s.io/v1beta1 v1.10.0 v1.22.0 apiregistration.k8s.io/v1 v1.10.0 k8s + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] TokenReview authentication.k8s.io/v1beta1 v1.6.0 v1.22.0 authentication.k8s.io/v1 v1.6.0 k8s + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] CertificateSigningRequest certificates.k8s.io/v1beta1 v1.19.0 v1.22.0 certificates.k8s.io/v1 v1.19.0 k8s + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Lease coordination.k8s.io/v1beta1 v1.14.0 v1.22.0 coordination.k8s.io/v1 v1.14.0 k8s + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Event events.k8s.io/v1beta1 v1.19.0 v1.25.0 events.k8s.io/v1 v1.19.0 k8s + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] EndpointSlice discovery.k8s.io/v1beta1 v1.21.0 v1.25.0 discovery.k8s.io/v1 v1.21.0 k8s + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] FlowControl flowcontrol.apiserver.k8s.io/v1beta1 v1.23.0 v1.26.0 flowcontrol.apiserver.k8s.io/v1beta2 n/a k8s + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] AuthorizationPolicies rbac.istio.io v1.4.0 v1.4.0 security.istio.io/v1beta1 n/a istio + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] authentication.istio.io/v1alpha1 v1.5.0 v1.6.0 security.istio.io/v1beta1 n/a istio + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Certificate certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Issuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] ClusterIssuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] CertificateRequest certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Order certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Challenge certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Certificate cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Certificate cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Certificate cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Issuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Issuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Issuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] ClusterIssuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] ClusterIssuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] ClusterIssuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] CertificateRequest cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] CertificateRequest cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] CertificateRequest cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Order acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Order acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Order acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Challenge acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Challenge acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Challenge acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] FlowSchema flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] FLowSchema flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s + +Sep 5 12:24:31.181 [DEBU] [CLI Validation] [list-versions-ojson] [exec] + +Sep 5 12:24:31.182 [DEBU] [CLI Validation] [list-versions-ojson] [exec] + +Sep 5 12:24:31.182 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Want more? Automate Pluto for free with Fairwinds Insights! + +Sep 5 12:24:31.182 [DEBU] [CLI Validation] [list-versions-ojson] [exec] 🚀 https://fairwinds.com/insights-signup/pluto 🚀 + +Sep 5 12:24:31.182 [DEBU] [CLI Validation] [list-versions-ojson] [exec] result of runTestStepExecutor: {Systemout:KIND NAME DEPRECATED IN REMOVED IN REPLACEMENT REPL AVAIL IN COMPONENT +Deployment extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +NetworkPolicy extensions/v1beta1 v1.9.0 v1.16.0 networking.k8s.io/v1 v1.8.0 k8s +Ingress extensions/v1beta1 v1.14.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +Ingress networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +IngressClass networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +DaemonSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +DaemonSet extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +PodSecurityPolicy extensions/v1beta1 v1.10.0 v1.16.0 policy/v1beta1 v1.10.0 k8s +PodSecurityPolicy policy/v1beta1 v1.21.0 v1.25.0 n/a n/a k8s +ReplicaSet extensions/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta2 n/a v1.16.0 apps/v1 v1.9.0 k8s +PriorityClass scheduling.k8s.io/v1beta1 v1.14.0 v1.22.0 scheduling.k8s.io/v1 v1.14.0 k8s +PriorityClass scheduling.k8s.io/v1alpha1 v1.14.0 v1.17.0 scheduling.k8s.io/v1 n/a k8s +CustomResourceDefinition apiextensions.k8s.io/v1beta1 v1.16.0 v1.22.0 apiextensions.k8s.io/v1 v1.16.0 k8s +MutatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ValidatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRole rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRole rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RuntimeClass node.k8s.io/v1beta1 v1.22.0 v1.25.0 node.k8s.io/v1 v1.20.0 k8s +PodDisruptionBudget policy/v1beta1 v1.21.0 v1.25.0 policy/v1 v1.21.0 k8s +PodDisruptionBudgetList policy/v1beta1 v1.21.0 v1.25.0 policy/v1 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 v1.23.0 k8s +HorizontalPodAutoscalerList autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscalerList autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +CronJob batch/v1beta1 v1.21.0 v1.25.0 batch/v1 v1.21.0 k8s +CronJobList batch/v1beta1 v1.21.0 v1.25.0 batch/v1 n/a k8s +CSINode storage.k8s.io/v1beta1 v1.17.0 v1.22.0 storage.k8s.io/v1 v1.17.0 k8s +CSIDriver storage.k8s.io/v1beta1 v1.19.0 v1.22.0 storage.k8s.io/v1 v1.19.0 k8s +CSIStorageCapacity storage.k8s.io/v1beta1 v1.24.0 v1.27.0 storage.k8s.io/v1 v1.24.0 k8s +StorageClass storage.k8s.io/v1beta1 v1.6.0 v1.22.0 storage.k8s.io/v1 v1.6.0 k8s +VolumeAttachment storage.k8s.io/v1beta1 v1.13.0 v1.22.0 storage.k8s.io/v1 v1.13.0 k8s +APIService apiregistration.k8s.io/v1beta1 v1.10.0 v1.22.0 apiregistration.k8s.io/v1 v1.10.0 k8s +TokenReview authentication.k8s.io/v1beta1 v1.6.0 v1.22.0 authentication.k8s.io/v1 v1.6.0 k8s +CertificateSigningRequest certificates.k8s.io/v1beta1 v1.19.0 v1.22.0 certificates.k8s.io/v1 v1.19.0 k8s +Lease coordination.k8s.io/v1beta1 v1.14.0 v1.22.0 coordination.k8s.io/v1 v1.14.0 k8s +Event events.k8s.io/v1beta1 v1.19.0 v1.25.0 events.k8s.io/v1 v1.19.0 k8s +EndpointSlice discovery.k8s.io/v1beta1 v1.21.0 v1.25.0 discovery.k8s.io/v1 v1.21.0 k8s +FlowControl flowcontrol.apiserver.k8s.io/v1beta1 v1.23.0 v1.26.0 flowcontrol.apiserver.k8s.io/v1beta2 n/a k8s +AuthorizationPolicies rbac.istio.io v1.4.0 v1.4.0 security.istio.io/v1beta1 n/a istio + authentication.istio.io/v1alpha1 v1.5.0 v1.6.0 security.istio.io/v1beta1 n/a istio +Certificate certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Issuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +ClusterIssuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +CertificateRequest certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Order certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Challenge certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Certificate cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +FlowSchema flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +FLowSchema flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s SystemoutJSON: Systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 SystemerrJSON: Err: Code:0 TimeSeconds:0.114045333} +Sep 5 12:24:31.182 [INFO] [CLI Validation] [list-versions-ojson] Ending testcase +Sep 5 12:24:31.182 [INFO] [CLI Validation] [list-versions-additional-file-duplicate] Starting testcase +Sep 5 12:24:31.182 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable venom.datetime: 2023-09-05T12:24:22-06:00 +Sep 5 12:24:31.182 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable venom.libdir: +Sep 5 12:24:31.182 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable list-versions-ojson.result.systemerrjson: +Sep 5 12:24:31.182 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable Pass-bad-semver-with-no-v.result.systemerrjson: +Sep 5 12:24:31.182 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable list-versions-ojson.result.systemout: KIND NAME DEPRECATED IN REMOVED IN REPLACEMENT REPL AVAIL IN COMPONENT +Deployment extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +NetworkPolicy extensions/v1beta1 v1.9.0 v1.16.0 networking.k8s.io/v1 v1.8.0 k8s +Ingress extensions/v1beta1 v1.14.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +Ingress networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +IngressClass networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +DaemonSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +DaemonSet extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +PodSecurityPolicy extensions/v1beta1 v1.10.0 v1.16.0 policy/v1beta1 v1.10.0 k8s +PodSecurityPolicy policy/v1beta1 v1.21.0 v1.25.0 n/a n/a k8s +ReplicaSet extensions/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta2 n/a v1.16.0 apps/v1 v1.9.0 k8s +PriorityClass scheduling.k8s.io/v1beta1 v1.14.0 v1.22.0 scheduling.k8s.io/v1 v1.14.0 k8s +PriorityClass scheduling.k8s.io/v1alpha1 v1.14.0 v1.17.0 scheduling.k8s.io/v1 n/a k8s +CustomResourceDefinition apiextensions.k8s.io/v1beta1 v1.16.0 v1.22.0 apiextensions.k8s.io/v1 v1.16.0 k8s +MutatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ValidatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRole rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRole rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RuntimeClass node.k8s.io/v1beta1 v1.22.0 v1.25.0 node.k8s.io/v1 v1.20.0 k8s +PodDisruptionBudget policy/v1beta1 v1.21.0 v1.25.0 policy/v1 v1.21.0 k8s +PodDisruptionBudgetList policy/v1beta1 v1.21.0 v1.25.0 policy/v1 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 v1.23.0 k8s +HorizontalPodAutoscalerList autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscalerList autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +CronJob batch/v1beta1 v1.21.0 v1.25.0 batch/v1 v1.21.0 k8s +CronJobList batch/v1beta1 v1.21.0 v1.25.0 batch/v1 n/a k8s +CSINode storage.k8s.io/v1beta1 v1.17.0 v1.22.0 storage.k8s.io/v1 v1.17.0 k8s +CSIDriver storage.k8s.io/v1beta1 v1.19.0 v1.22.0 storage.k8s.io/v1 v1.19.0 k8s +CSIStorageCapacity storage.k8s.io/v1beta1 v1.24.0 v1.27.0 storage.k8s.io/v1 v1.24.0 k8s +StorageClass storage.k8s.io/v1beta1 v1.6.0 v1.22.0 storage.k8s.io/v1 v1.6.0 k8s +VolumeAttachment storage.k8s.io/v1beta1 v1.13.0 v1.22.0 storage.k8s.io/v1 v1.13.0 k8s +APIService apiregistration.k8s.io/v1beta1 v1.10.0 v1.22.0 apiregistration.k8s.io/v1 v1.10.0 k8s +TokenReview authentication.k8s.io/v1beta1 v1.6.0 v1.22.0 authentication.k8s.io/v1 v1.6.0 k8s +CertificateSigningRequest certificates.k8s.io/v1beta1 v1.19.0 v1.22.0 certificates.k8s.io/v1 v1.19.0 k8s +Lease coordination.k8s.io/v1beta1 v1.14.0 v1.22.0 coordination.k8s.io/v1 v1.14.0 k8s +Event events.k8s.io/v1beta1 v1.19.0 v1.25.0 events.k8s.io/v1 v1.19.0 k8s +EndpointSlice discovery.k8s.io/v1beta1 v1.21.0 v1.25.0 discovery.k8s.io/v1 v1.21.0 k8s +FlowControl flowcontrol.apiserver.k8s.io/v1beta1 v1.23.0 v1.26.0 flowcontrol.apiserver.k8s.io/v1beta2 n/a k8s +AuthorizationPolicies rbac.istio.io v1.4.0 v1.4.0 security.istio.io/v1beta1 n/a istio + authentication.istio.io/v1alpha1 v1.5.0 v1.6.0 security.istio.io/v1beta1 n/a istio +Certificate certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Issuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +ClusterIssuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +CertificateRequest certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Order certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Challenge certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Certificate cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +FlowSchema flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +FLowSchema flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +Sep 5 12:24:31.182 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable venom.testcase: list-versions-additional-file-duplicate +Sep 5 12:24:31.182 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemerrjson: +Sep 5 12:24:31.182 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable list-versions-ojson.__type__: Result +Sep 5 12:24:31.182 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable Pass-bad-semver-with-no-v.result.systemerr: Error: you must use valid semver for all target versions with a leading 'v' - got foo 1.0.0 +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:30.952261 96449 root.go:471] you must use valid semver for all target versions with a leading 'v' - got foo 1.0.0 +Sep 5 12:24:31.182 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable Pass-bad-semver-with-no-v.result.timeseconds: 0.138676 +Sep 5 12:24:31.182 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable list-versions-ojson.result.__len__: 7 +Sep 5 12:24:31.182 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable Pass-bad-semver-starting-with-v.result.__len__: 7 +Sep 5 12:24:31.182 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable venom.testsuite: CLI Validation +Sep 5 12:24:31.182 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable list-versions-ojson.result.err: +Sep 5 12:24:31.182 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable list-versions-ojson.result.code: 0 +Sep 5 12:24:31.182 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable Pass-bad-semver-with-no-v.result.systemoutjson: +Sep 5 12:24:31.182 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable venom.outputdir: +Sep 5 12:24:31.182 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:24:31.182 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable Pass-bad-semver-starting-with-v.result.timeseconds: 0.113788667 +Sep 5 12:24:31.182 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemerr: Error: you must use valid semver for all target versions with a leading 'v' - got foo vfoo +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:31.066794 96589 root.go:471] you must use valid semver for all target versions with a leading 'v' - got foo vfoo +Sep 5 12:24:31.182 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable venom.testsuite.shortName: 03-cli-validation +Sep 5 12:24:31.182 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable venom.timestamp: 1693938262 +Sep 5 12:24:31.182 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable venom.testsuite.name: CLI Validation +Sep 5 12:24:31.182 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemout: +Sep 5 12:24:31.182 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable Pass-bad-semver-starting-with-v.__type__: Result +Sep 5 12:24:31.182 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable Pass-bad-semver-starting-with-v.result.code: 1 +Sep 5 12:24:31.182 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable list-versions-ojson.result.timeseconds: 0.114045333 +Sep 5 12:24:31.182 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable __Type__: Map +Sep 5 12:24:31.182 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable Pass-bad-semver-starting-with-v.result.err: +Sep 5 12:24:31.182 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable list-versions-ojson.result.systemoutjson: +Sep 5 12:24:31.182 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable Pass-bad-semver-with-no-v.result.code: 1 +Sep 5 12:24:31.182 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable Pass-bad-semver-with-no-v.result.systemout: +Sep 5 12:24:31.182 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable Pass-bad-semver-with-no-v.result.__len__: 7 +Sep 5 12:24:31.182 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable __Len__: 8 +Sep 5 12:24:31.182 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable venom.testsuite.filepath: tests/03-cli-validation.yaml +Sep 5 12:24:31.182 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:24:31.182 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable venom.testsuite.filename: 03-cli-validation.yaml +Sep 5 12:24:31.182 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemoutjson: +Sep 5 12:24:31.182 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable Pass-bad-semver-with-no-v.result.err: +Sep 5 12:24:31.182 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable Pass-bad-semver-with-no-v.__type__: Result +Sep 5 12:24:31.182 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable list-versions-ojson.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:31.182 [INFO] [CLI Validation] [list-versions-additional-file-duplicate] Step #0 content is: {"assertions":["result.code ShouldEqual 1","result.systemerr ShouldContainSubstring 'duplicate cannot be added to defaults'","result.systemerr ShouldContainSubstring 'extensions/v1beta1'"],"script":"pluto list-versions -f assets/additional-versions/duplicate.yaml"} +Sep 5 12:24:31.183 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-545459946 +Sep 5 12:24:31.183 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-545459946' +Sep 5 12:24:31.294 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] Error: duplicate cannot be added to defaults: Deployment extensions/v1beta1 + +Sep 5 12:24:31.295 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] Usage: + +Sep 5 12:24:31.295 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] pluto list-versions [flags] + +Sep 5 12:24:31.295 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] + +Sep 5 12:24:31.295 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] Flags: + +Sep 5 12:24:31.295 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] -h, --help help for list-versions + +Sep 5 12:24:31.295 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] + +Sep 5 12:24:31.295 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] Global Flags: + +Sep 5 12:24:31.295 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + +Sep 5 12:24:31.295 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + +Sep 5 12:24:31.295 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] --components strings A list of components to run checks for. If nil, will check for all found in versions. + +Sep 5 12:24:31.295 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + +Sep 5 12:24:31.295 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + +Sep 5 12:24:31.295 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + +Sep 5 12:24:31.295 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] --no-footer Disable footer output + +Sep 5 12:24:31.295 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + +Sep 5 12:24:31.295 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + +Sep 5 12:24:31.295 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + +Sep 5 12:24:31.295 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + +Sep 5 12:24:31.295 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] -v, --v Level number for the log level verbosity + +Sep 5 12:24:31.295 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] + +Sep 5 12:24:31.295 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] E0905 12:24:31.295047 96865 root.go:471] duplicate cannot be added to defaults: Deployment extensions/v1beta1 + +Sep 5 12:24:31.295 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] result of runTestStepExecutor: {Systemout: SystemoutJSON: Systemerr:Error: duplicate cannot be added to defaults: Deployment extensions/v1beta1 +Usage: + pluto list-versions [flags] + +Flags: + -h, --help help for list-versions + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:31.295047 96865 root.go:471] duplicate cannot be added to defaults: Deployment extensions/v1beta1 SystemerrJSON: Err: Code:1 TimeSeconds:0.112379083} +Sep 5 12:24:31.295 [INFO] [CLI Validation] [list-versions-additional-file-duplicate] Ending testcase +Sep 5 12:24:31.295 [INFO] [CLI Validation] [list-versions-additional-file] Starting testcase +Sep 5 12:24:31.295 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable list-versions-additional-file-duplicate.result.timeseconds: 0.112379083 +Sep 5 12:24:31.295 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemout: +Sep 5 12:24:31.295 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable list-versions-ojson.result.err: +Sep 5 12:24:31.295 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable venom.testsuite.filename: 03-cli-validation.yaml +Sep 5 12:24:31.295 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable venom.testsuite.name: CLI Validation +Sep 5 12:24:31.295 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable venom.testsuite: CLI Validation +Sep 5 12:24:31.295 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable list-versions-additional-file-duplicate.result.systemerr: Error: duplicate cannot be added to defaults: Deployment extensions/v1beta1 +Usage: + pluto list-versions [flags] + +Flags: + -h, --help help for list-versions + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:31.295047 96865 root.go:471] duplicate cannot be added to defaults: Deployment extensions/v1beta1 +Sep 5 12:24:31.295 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable list-versions-additional-file-duplicate.result.systemout: +Sep 5 12:24:31.295 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable Pass-bad-semver-with-no-v.result.__len__: 7 +Sep 5 12:24:31.295 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable list-versions-additional-file-duplicate.__type__: Result +Sep 5 12:24:31.295 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable Pass-bad-semver-with-no-v.result.systemerr: Error: you must use valid semver for all target versions with a leading 'v' - got foo 1.0.0 +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:30.952261 96449 root.go:471] you must use valid semver for all target versions with a leading 'v' - got foo 1.0.0 +Sep 5 12:24:31.295 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:24:31.295 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable list-versions-additional-file-duplicate.result.err: +Sep 5 12:24:31.295 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable list-versions-ojson.result.systemout: KIND NAME DEPRECATED IN REMOVED IN REPLACEMENT REPL AVAIL IN COMPONENT +Deployment extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +NetworkPolicy extensions/v1beta1 v1.9.0 v1.16.0 networking.k8s.io/v1 v1.8.0 k8s +Ingress extensions/v1beta1 v1.14.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +Ingress networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +IngressClass networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +DaemonSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +DaemonSet extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +PodSecurityPolicy extensions/v1beta1 v1.10.0 v1.16.0 policy/v1beta1 v1.10.0 k8s +PodSecurityPolicy policy/v1beta1 v1.21.0 v1.25.0 n/a n/a k8s +ReplicaSet extensions/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta2 n/a v1.16.0 apps/v1 v1.9.0 k8s +PriorityClass scheduling.k8s.io/v1beta1 v1.14.0 v1.22.0 scheduling.k8s.io/v1 v1.14.0 k8s +PriorityClass scheduling.k8s.io/v1alpha1 v1.14.0 v1.17.0 scheduling.k8s.io/v1 n/a k8s +CustomResourceDefinition apiextensions.k8s.io/v1beta1 v1.16.0 v1.22.0 apiextensions.k8s.io/v1 v1.16.0 k8s +MutatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ValidatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRole rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRole rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RuntimeClass node.k8s.io/v1beta1 v1.22.0 v1.25.0 node.k8s.io/v1 v1.20.0 k8s +PodDisruptionBudget policy/v1beta1 v1.21.0 v1.25.0 policy/v1 v1.21.0 k8s +PodDisruptionBudgetList policy/v1beta1 v1.21.0 v1.25.0 policy/v1 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 v1.23.0 k8s +HorizontalPodAutoscalerList autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscalerList autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +CronJob batch/v1beta1 v1.21.0 v1.25.0 batch/v1 v1.21.0 k8s +CronJobList batch/v1beta1 v1.21.0 v1.25.0 batch/v1 n/a k8s +CSINode storage.k8s.io/v1beta1 v1.17.0 v1.22.0 storage.k8s.io/v1 v1.17.0 k8s +CSIDriver storage.k8s.io/v1beta1 v1.19.0 v1.22.0 storage.k8s.io/v1 v1.19.0 k8s +CSIStorageCapacity storage.k8s.io/v1beta1 v1.24.0 v1.27.0 storage.k8s.io/v1 v1.24.0 k8s +StorageClass storage.k8s.io/v1beta1 v1.6.0 v1.22.0 storage.k8s.io/v1 v1.6.0 k8s +VolumeAttachment storage.k8s.io/v1beta1 v1.13.0 v1.22.0 storage.k8s.io/v1 v1.13.0 k8s +APIService apiregistration.k8s.io/v1beta1 v1.10.0 v1.22.0 apiregistration.k8s.io/v1 v1.10.0 k8s +TokenReview authentication.k8s.io/v1beta1 v1.6.0 v1.22.0 authentication.k8s.io/v1 v1.6.0 k8s +CertificateSigningRequest certificates.k8s.io/v1beta1 v1.19.0 v1.22.0 certificates.k8s.io/v1 v1.19.0 k8s +Lease coordination.k8s.io/v1beta1 v1.14.0 v1.22.0 coordination.k8s.io/v1 v1.14.0 k8s +Event events.k8s.io/v1beta1 v1.19.0 v1.25.0 events.k8s.io/v1 v1.19.0 k8s +EndpointSlice discovery.k8s.io/v1beta1 v1.21.0 v1.25.0 discovery.k8s.io/v1 v1.21.0 k8s +FlowControl flowcontrol.apiserver.k8s.io/v1beta1 v1.23.0 v1.26.0 flowcontrol.apiserver.k8s.io/v1beta2 n/a k8s +AuthorizationPolicies rbac.istio.io v1.4.0 v1.4.0 security.istio.io/v1beta1 n/a istio + authentication.istio.io/v1alpha1 v1.5.0 v1.6.0 security.istio.io/v1beta1 n/a istio +Certificate certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Issuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +ClusterIssuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +CertificateRequest certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Order certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Challenge certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Certificate cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +FlowSchema flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +FLowSchema flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +Sep 5 12:24:31.295 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable Pass-bad-semver-starting-with-v.result.code: 1 +Sep 5 12:24:31.295 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable list-versions-ojson.result.timeseconds: 0.114045333 +Sep 5 12:24:31.295 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable list-versions-ojson.result.systemoutjson: +Sep 5 12:24:31.295 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable Pass-bad-semver-with-no-v.result.code: 1 +Sep 5 12:24:31.296 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable __Len__: 8 +Sep 5 12:24:31.296 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable venom.testcase: list-versions-additional-file +Sep 5 12:24:31.296 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable Pass-bad-semver-with-no-v.result.timeseconds: 0.138676 +Sep 5 12:24:31.296 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable Pass-bad-semver-starting-with-v.result.err: +Sep 5 12:24:31.296 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable venom.testsuite.shortName: 03-cli-validation +Sep 5 12:24:31.296 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable list-versions-ojson.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:31.296 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable list-versions-additional-file-duplicate.result.systemoutjson: +Sep 5 12:24:31.296 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemerr: Error: you must use valid semver for all target versions with a leading 'v' - got foo vfoo +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:31.066794 96589 root.go:471] you must use valid semver for all target versions with a leading 'v' - got foo vfoo +Sep 5 12:24:31.296 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable Pass-bad-semver-starting-with-v.__type__: Result +Sep 5 12:24:31.296 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemerrjson: +Sep 5 12:24:31.296 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable list-versions-ojson.result.systemerrjson: +Sep 5 12:24:31.296 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable list-versions-ojson.__type__: Result +Sep 5 12:24:31.296 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable venom.testsuite.filepath: tests/03-cli-validation.yaml +Sep 5 12:24:31.296 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable __Type__: Map +Sep 5 12:24:31.296 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable Pass-bad-semver-with-no-v.result.systemerrjson: +Sep 5 12:24:31.296 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable list-versions-ojson.result.code: 0 +Sep 5 12:24:31.296 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemoutjson: +Sep 5 12:24:31.296 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable list-versions-additional-file-duplicate.result.code: 1 +Sep 5 12:24:31.296 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:24:31.296 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable Pass-bad-semver-with-no-v.result.systemout: +Sep 5 12:24:31.296 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable list-versions-additional-file-duplicate.result.__len__: 7 +Sep 5 12:24:31.296 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable Pass-bad-semver-starting-with-v.result.__len__: 7 +Sep 5 12:24:31.296 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable Pass-bad-semver-starting-with-v.result.timeseconds: 0.113788667 +Sep 5 12:24:31.296 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable list-versions-additional-file-duplicate.result.systemerrjson: +Sep 5 12:24:31.296 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable venom.timestamp: 1693938262 +Sep 5 12:24:31.296 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable venom.outputdir: +Sep 5 12:24:31.296 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable venom.libdir: +Sep 5 12:24:31.296 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable Pass-bad-semver-with-no-v.__type__: Result +Sep 5 12:24:31.296 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable Pass-bad-semver-with-no-v.result.systemoutjson: +Sep 5 12:24:31.296 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable venom.datetime: 2023-09-05T12:24:22-06:00 +Sep 5 12:24:31.296 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable list-versions-ojson.result.__len__: 7 +Sep 5 12:24:31.296 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable Pass-bad-semver-with-no-v.result.err: +Sep 5 12:24:31.296 [INFO] [CLI Validation] [list-versions-additional-file] Step #0 content is: {"assertions":["result.code ShouldEqual 0","result.systemout ShouldContainSubstring \"AnotherCRD someother/v1beta1 v1.9.0 v1.16.0 apps/v1\""],"script":"pluto list-versions -f assets/additional-versions/new.yaml"} +Sep 5 12:24:31.296 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-3824342414 +Sep 5 12:24:31.296 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-3824342414' +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] KIND NAME DEPRECATED IN REMOVED IN REPLACEMENT REPL AVAIL IN COMPONENT + +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Deployment extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s + +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Deployment apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s + +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Deployment apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s + +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] StatefulSet apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s + +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] StatefulSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s + +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] NetworkPolicy extensions/v1beta1 v1.9.0 v1.16.0 networking.k8s.io/v1 v1.8.0 k8s + +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Ingress extensions/v1beta1 v1.14.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s + +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Ingress networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s + +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] IngressClass networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s + +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] DaemonSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s + +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] DaemonSet extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s + +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] PodSecurityPolicy extensions/v1beta1 v1.10.0 v1.16.0 policy/v1beta1 v1.10.0 k8s + +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] PodSecurityPolicy policy/v1beta1 v1.21.0 v1.25.0 n/a n/a k8s + +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] ReplicaSet extensions/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s + +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] ReplicaSet apps/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s + +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] ReplicaSet apps/v1beta2 n/a v1.16.0 apps/v1 v1.9.0 k8s + +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] PriorityClass scheduling.k8s.io/v1beta1 v1.14.0 v1.22.0 scheduling.k8s.io/v1 v1.14.0 k8s + +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] PriorityClass scheduling.k8s.io/v1alpha1 v1.14.0 v1.17.0 scheduling.k8s.io/v1 n/a k8s + +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] CustomResourceDefinition apiextensions.k8s.io/v1beta1 v1.16.0 v1.22.0 apiextensions.k8s.io/v1 v1.16.0 k8s + +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] MutatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s + +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] ValidatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s + +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] ClusterRoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s + +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] ClusterRole rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s + +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] ClusterRoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] ClusterRoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Role rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s + +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] RoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s + +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] RoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] RoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] ClusterRoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] ClusterRole rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] ClusterRoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] ClusterRoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Role rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] RoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] RoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] RoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] RuntimeClass node.k8s.io/v1beta1 v1.22.0 v1.25.0 node.k8s.io/v1 v1.20.0 k8s + +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] PodDisruptionBudget policy/v1beta1 v1.21.0 v1.25.0 policy/v1 v1.21.0 k8s + +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] PodDisruptionBudgetList policy/v1beta1 v1.21.0 v1.25.0 policy/v1 n/a k8s + +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] HorizontalPodAutoscaler autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 v1.23.0 k8s + +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] HorizontalPodAutoscalerList autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 n/a k8s + +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] HorizontalPodAutoscaler autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s + +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] HorizontalPodAutoscalerList autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s + +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] CronJob batch/v1beta1 v1.21.0 v1.25.0 batch/v1 v1.21.0 k8s + +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] CronJobList batch/v1beta1 v1.21.0 v1.25.0 batch/v1 n/a k8s + +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] CSINode storage.k8s.io/v1beta1 v1.17.0 v1.22.0 storage.k8s.io/v1 v1.17.0 k8s + +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] CSIDriver storage.k8s.io/v1beta1 v1.19.0 v1.22.0 storage.k8s.io/v1 v1.19.0 k8s + +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] CSIStorageCapacity storage.k8s.io/v1beta1 v1.24.0 v1.27.0 storage.k8s.io/v1 v1.24.0 k8s + +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] StorageClass storage.k8s.io/v1beta1 v1.6.0 v1.22.0 storage.k8s.io/v1 v1.6.0 k8s + +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] VolumeAttachment storage.k8s.io/v1beta1 v1.13.0 v1.22.0 storage.k8s.io/v1 v1.13.0 k8s + +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] APIService apiregistration.k8s.io/v1beta1 v1.10.0 v1.22.0 apiregistration.k8s.io/v1 v1.10.0 k8s + +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] TokenReview authentication.k8s.io/v1beta1 v1.6.0 v1.22.0 authentication.k8s.io/v1 v1.6.0 k8s + +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] CertificateSigningRequest certificates.k8s.io/v1beta1 v1.19.0 v1.22.0 certificates.k8s.io/v1 v1.19.0 k8s + +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Lease coordination.k8s.io/v1beta1 v1.14.0 v1.22.0 coordination.k8s.io/v1 v1.14.0 k8s + +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Event events.k8s.io/v1beta1 v1.19.0 v1.25.0 events.k8s.io/v1 v1.19.0 k8s + +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] EndpointSlice discovery.k8s.io/v1beta1 v1.21.0 v1.25.0 discovery.k8s.io/v1 v1.21.0 k8s + +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] FlowControl flowcontrol.apiserver.k8s.io/v1beta1 v1.23.0 v1.26.0 flowcontrol.apiserver.k8s.io/v1beta2 n/a k8s + +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] AuthorizationPolicies rbac.istio.io v1.4.0 v1.4.0 security.istio.io/v1beta1 n/a istio + +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] authentication.istio.io/v1alpha1 v1.5.0 v1.6.0 security.istio.io/v1beta1 n/a istio + +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Certificate certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager + +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Issuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager + +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] ClusterIssuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager + +Sep 5 12:24:31.409 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] CertificateRequest certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager + +Sep 5 12:24:31.410 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Order certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager + +Sep 5 12:24:31.410 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Challenge certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager + +Sep 5 12:24:31.410 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Certificate cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:31.410 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Certificate cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:31.410 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Certificate cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:31.410 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Issuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:31.410 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Issuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:31.410 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Issuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:31.410 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] ClusterIssuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:31.410 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] ClusterIssuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:31.410 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] ClusterIssuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:31.410 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] CertificateRequest cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:31.410 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] CertificateRequest cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:31.410 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] CertificateRequest cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:31.410 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Order acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:31.410 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Order acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:31.410 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Order acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:31.410 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Challenge acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:31.410 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Challenge acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:31.410 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Challenge acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:31.410 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] FlowSchema flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s + +Sep 5 12:24:31.410 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s + +Sep 5 12:24:31.410 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s + +Sep 5 12:24:31.410 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] FLowSchema flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s + +Sep 5 12:24:31.410 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] AnotherCRD someother/v1beta1 v1.9.0 v1.16.0 apps/v1 n/a other + +Sep 5 12:24:31.410 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] + +Sep 5 12:24:31.410 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] + +Sep 5 12:24:31.410 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Want more? Automate Pluto for free with Fairwinds Insights! + +Sep 5 12:24:31.410 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] 🚀 https://fairwinds.com/insights-signup/pluto 🚀 + +Sep 5 12:24:31.410 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] result of runTestStepExecutor: {Systemout:KIND NAME DEPRECATED IN REMOVED IN REPLACEMENT REPL AVAIL IN COMPONENT +Deployment extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +NetworkPolicy extensions/v1beta1 v1.9.0 v1.16.0 networking.k8s.io/v1 v1.8.0 k8s +Ingress extensions/v1beta1 v1.14.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +Ingress networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +IngressClass networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +DaemonSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +DaemonSet extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +PodSecurityPolicy extensions/v1beta1 v1.10.0 v1.16.0 policy/v1beta1 v1.10.0 k8s +PodSecurityPolicy policy/v1beta1 v1.21.0 v1.25.0 n/a n/a k8s +ReplicaSet extensions/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta2 n/a v1.16.0 apps/v1 v1.9.0 k8s +PriorityClass scheduling.k8s.io/v1beta1 v1.14.0 v1.22.0 scheduling.k8s.io/v1 v1.14.0 k8s +PriorityClass scheduling.k8s.io/v1alpha1 v1.14.0 v1.17.0 scheduling.k8s.io/v1 n/a k8s +CustomResourceDefinition apiextensions.k8s.io/v1beta1 v1.16.0 v1.22.0 apiextensions.k8s.io/v1 v1.16.0 k8s +MutatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ValidatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRole rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRole rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RuntimeClass node.k8s.io/v1beta1 v1.22.0 v1.25.0 node.k8s.io/v1 v1.20.0 k8s +PodDisruptionBudget policy/v1beta1 v1.21.0 v1.25.0 policy/v1 v1.21.0 k8s +PodDisruptionBudgetList policy/v1beta1 v1.21.0 v1.25.0 policy/v1 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 v1.23.0 k8s +HorizontalPodAutoscalerList autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscalerList autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +CronJob batch/v1beta1 v1.21.0 v1.25.0 batch/v1 v1.21.0 k8s +CronJobList batch/v1beta1 v1.21.0 v1.25.0 batch/v1 n/a k8s +CSINode storage.k8s.io/v1beta1 v1.17.0 v1.22.0 storage.k8s.io/v1 v1.17.0 k8s +CSIDriver storage.k8s.io/v1beta1 v1.19.0 v1.22.0 storage.k8s.io/v1 v1.19.0 k8s +CSIStorageCapacity storage.k8s.io/v1beta1 v1.24.0 v1.27.0 storage.k8s.io/v1 v1.24.0 k8s +StorageClass storage.k8s.io/v1beta1 v1.6.0 v1.22.0 storage.k8s.io/v1 v1.6.0 k8s +VolumeAttachment storage.k8s.io/v1beta1 v1.13.0 v1.22.0 storage.k8s.io/v1 v1.13.0 k8s +APIService apiregistration.k8s.io/v1beta1 v1.10.0 v1.22.0 apiregistration.k8s.io/v1 v1.10.0 k8s +TokenReview authentication.k8s.io/v1beta1 v1.6.0 v1.22.0 authentication.k8s.io/v1 v1.6.0 k8s +CertificateSigningRequest certificates.k8s.io/v1beta1 v1.19.0 v1.22.0 certificates.k8s.io/v1 v1.19.0 k8s +Lease coordination.k8s.io/v1beta1 v1.14.0 v1.22.0 coordination.k8s.io/v1 v1.14.0 k8s +Event events.k8s.io/v1beta1 v1.19.0 v1.25.0 events.k8s.io/v1 v1.19.0 k8s +EndpointSlice discovery.k8s.io/v1beta1 v1.21.0 v1.25.0 discovery.k8s.io/v1 v1.21.0 k8s +FlowControl flowcontrol.apiserver.k8s.io/v1beta1 v1.23.0 v1.26.0 flowcontrol.apiserver.k8s.io/v1beta2 n/a k8s +AuthorizationPolicies rbac.istio.io v1.4.0 v1.4.0 security.istio.io/v1beta1 n/a istio + authentication.istio.io/v1alpha1 v1.5.0 v1.6.0 security.istio.io/v1beta1 n/a istio +Certificate certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Issuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +ClusterIssuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +CertificateRequest certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Order certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Challenge certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Certificate cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +FlowSchema flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +FLowSchema flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +AnotherCRD someother/v1beta1 v1.9.0 v1.16.0 apps/v1 n/a other SystemoutJSON: Systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 SystemerrJSON: Err: Code:0 TimeSeconds:0.114097} +Sep 5 12:24:31.411 [INFO] [CLI Validation] [list-versions-additional-file] Ending testcase +Sep 5 12:24:31.411 [INFO] [CLI Validation] [Pass-bad-column-list-to-custom] Starting testcase +Sep 5 12:24:31.411 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable venom.datetime: 2023-09-05T12:24:22-06:00 +Sep 5 12:24:31.411 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable Pass-bad-semver-with-no-v.result.__len__: 7 +Sep 5 12:24:31.411 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-additional-file.result.err: +Sep 5 12:24:31.411 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-additional-file.result.systemoutjson: +Sep 5 12:24:31.411 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-ojson.__type__: Result +Sep 5 12:24:31.411 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-additional-file-duplicate.result.__len__: 7 +Sep 5 12:24:31.411 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-additional-file.result.__len__: 7 +Sep 5 12:24:31.411 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable Pass-bad-semver-with-no-v.result.systemerrjson: +Sep 5 12:24:31.411 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:24:31.411 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-additional-file-duplicate.result.systemoutjson: +Sep 5 12:24:31.411 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-additional-file-duplicate.__type__: Result +Sep 5 12:24:31.411 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-additional-file.result.systemout: KIND NAME DEPRECATED IN REMOVED IN REPLACEMENT REPL AVAIL IN COMPONENT +Deployment extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +NetworkPolicy extensions/v1beta1 v1.9.0 v1.16.0 networking.k8s.io/v1 v1.8.0 k8s +Ingress extensions/v1beta1 v1.14.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +Ingress networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +IngressClass networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +DaemonSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +DaemonSet extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +PodSecurityPolicy extensions/v1beta1 v1.10.0 v1.16.0 policy/v1beta1 v1.10.0 k8s +PodSecurityPolicy policy/v1beta1 v1.21.0 v1.25.0 n/a n/a k8s +ReplicaSet extensions/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta2 n/a v1.16.0 apps/v1 v1.9.0 k8s +PriorityClass scheduling.k8s.io/v1beta1 v1.14.0 v1.22.0 scheduling.k8s.io/v1 v1.14.0 k8s +PriorityClass scheduling.k8s.io/v1alpha1 v1.14.0 v1.17.0 scheduling.k8s.io/v1 n/a k8s +CustomResourceDefinition apiextensions.k8s.io/v1beta1 v1.16.0 v1.22.0 apiextensions.k8s.io/v1 v1.16.0 k8s +MutatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ValidatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRole rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRole rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RuntimeClass node.k8s.io/v1beta1 v1.22.0 v1.25.0 node.k8s.io/v1 v1.20.0 k8s +PodDisruptionBudget policy/v1beta1 v1.21.0 v1.25.0 policy/v1 v1.21.0 k8s +PodDisruptionBudgetList policy/v1beta1 v1.21.0 v1.25.0 policy/v1 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 v1.23.0 k8s +HorizontalPodAutoscalerList autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscalerList autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +CronJob batch/v1beta1 v1.21.0 v1.25.0 batch/v1 v1.21.0 k8s +CronJobList batch/v1beta1 v1.21.0 v1.25.0 batch/v1 n/a k8s +CSINode storage.k8s.io/v1beta1 v1.17.0 v1.22.0 storage.k8s.io/v1 v1.17.0 k8s +CSIDriver storage.k8s.io/v1beta1 v1.19.0 v1.22.0 storage.k8s.io/v1 v1.19.0 k8s +CSIStorageCapacity storage.k8s.io/v1beta1 v1.24.0 v1.27.0 storage.k8s.io/v1 v1.24.0 k8s +StorageClass storage.k8s.io/v1beta1 v1.6.0 v1.22.0 storage.k8s.io/v1 v1.6.0 k8s +VolumeAttachment storage.k8s.io/v1beta1 v1.13.0 v1.22.0 storage.k8s.io/v1 v1.13.0 k8s +APIService apiregistration.k8s.io/v1beta1 v1.10.0 v1.22.0 apiregistration.k8s.io/v1 v1.10.0 k8s +TokenReview authentication.k8s.io/v1beta1 v1.6.0 v1.22.0 authentication.k8s.io/v1 v1.6.0 k8s +CertificateSigningRequest certificates.k8s.io/v1beta1 v1.19.0 v1.22.0 certificates.k8s.io/v1 v1.19.0 k8s +Lease coordination.k8s.io/v1beta1 v1.14.0 v1.22.0 coordination.k8s.io/v1 v1.14.0 k8s +Event events.k8s.io/v1beta1 v1.19.0 v1.25.0 events.k8s.io/v1 v1.19.0 k8s +EndpointSlice discovery.k8s.io/v1beta1 v1.21.0 v1.25.0 discovery.k8s.io/v1 v1.21.0 k8s +FlowControl flowcontrol.apiserver.k8s.io/v1beta1 v1.23.0 v1.26.0 flowcontrol.apiserver.k8s.io/v1beta2 n/a k8s +AuthorizationPolicies rbac.istio.io v1.4.0 v1.4.0 security.istio.io/v1beta1 n/a istio + authentication.istio.io/v1alpha1 v1.5.0 v1.6.0 security.istio.io/v1beta1 n/a istio +Certificate certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Issuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +ClusterIssuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +CertificateRequest certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Order certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Challenge certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Certificate cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +FlowSchema flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +FLowSchema flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +AnotherCRD someother/v1beta1 v1.9.0 v1.16.0 apps/v1 n/a other +Sep 5 12:24:31.411 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-ojson.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:31.411 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable Pass-bad-semver-starting-with-v.__type__: Result +Sep 5 12:24:31.411 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable Pass-bad-semver-with-no-v.result.code: 1 +Sep 5 12:24:31.411 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable venom.testcase: Pass-bad-column-list-to-custom +Sep 5 12:24:31.411 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable Pass-bad-semver-starting-with-v.result.err: +Sep 5 12:24:31.411 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable Pass-bad-semver-with-no-v.result.timeseconds: 0.138676 +Sep 5 12:24:31.411 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable venom.testsuite.filename: 03-cli-validation.yaml +Sep 5 12:24:31.411 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable venom.testsuite.shortName: 03-cli-validation +Sep 5 12:24:31.411 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable venom.testsuite: CLI Validation +Sep 5 12:24:31.411 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable Pass-bad-semver-starting-with-v.result.__len__: 7 +Sep 5 12:24:31.411 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-ojson.result.systemerrjson: +Sep 5 12:24:31.411 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable Pass-bad-semver-starting-with-v.result.timeseconds: 0.113788667 +Sep 5 12:24:31.411 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemerrjson: +Sep 5 12:24:31.411 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-additional-file-duplicate.result.code: 1 +Sep 5 12:24:31.411 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable venom.testsuite.name: CLI Validation +Sep 5 12:24:31.411 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable venom.outputdir: +Sep 5 12:24:31.411 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-additional-file-duplicate.result.timeseconds: 0.112379083 +Sep 5 12:24:31.411 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:24:31.411 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable Pass-bad-semver-with-no-v.result.systemoutjson: +Sep 5 12:24:31.411 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-additional-file.result.timeseconds: 0.114097 +Sep 5 12:24:31.411 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-ojson.result.__len__: 7 +Sep 5 12:24:31.411 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemerr: Error: you must use valid semver for all target versions with a leading 'v' - got foo vfoo +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:31.066794 96589 root.go:471] you must use valid semver for all target versions with a leading 'v' - got foo vfoo +Sep 5 12:24:31.411 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable Pass-bad-semver-with-no-v.__type__: Result +Sep 5 12:24:31.411 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable Pass-bad-semver-with-no-v.result.systemout: +Sep 5 12:24:31.411 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable __Type__: Map +Sep 5 12:24:31.411 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable Pass-bad-semver-starting-with-v.result.code: 1 +Sep 5 12:24:31.411 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-ojson.result.timeseconds: 0.114045333 +Sep 5 12:24:31.411 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-additional-file.result.code: 0 +Sep 5 12:24:31.411 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-additional-file.__type__: Result +Sep 5 12:24:31.411 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-ojson.result.code: 0 +Sep 5 12:24:31.411 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable venom.libdir: +Sep 5 12:24:31.411 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-additional-file.result.systemerrjson: +Sep 5 12:24:31.411 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable Pass-bad-semver-with-no-v.result.systemerr: Error: you must use valid semver for all target versions with a leading 'v' - got foo 1.0.0 +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:30.952261 96449 root.go:471] you must use valid semver for all target versions with a leading 'v' - got foo 1.0.0 +Sep 5 12:24:31.411 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-additional-file.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:31.411 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable venom.testsuite.filepath: tests/03-cli-validation.yaml +Sep 5 12:24:31.411 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable __Len__: 8 +Sep 5 12:24:31.411 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemout: +Sep 5 12:24:31.411 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-ojson.result.err: +Sep 5 12:24:31.411 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemoutjson: +Sep 5 12:24:31.411 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-additional-file-duplicate.result.systemout: +Sep 5 12:24:31.411 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-ojson.result.systemout: KIND NAME DEPRECATED IN REMOVED IN REPLACEMENT REPL AVAIL IN COMPONENT +Deployment extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +NetworkPolicy extensions/v1beta1 v1.9.0 v1.16.0 networking.k8s.io/v1 v1.8.0 k8s +Ingress extensions/v1beta1 v1.14.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +Ingress networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +IngressClass networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +DaemonSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +DaemonSet extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +PodSecurityPolicy extensions/v1beta1 v1.10.0 v1.16.0 policy/v1beta1 v1.10.0 k8s +PodSecurityPolicy policy/v1beta1 v1.21.0 v1.25.0 n/a n/a k8s +ReplicaSet extensions/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta2 n/a v1.16.0 apps/v1 v1.9.0 k8s +PriorityClass scheduling.k8s.io/v1beta1 v1.14.0 v1.22.0 scheduling.k8s.io/v1 v1.14.0 k8s +PriorityClass scheduling.k8s.io/v1alpha1 v1.14.0 v1.17.0 scheduling.k8s.io/v1 n/a k8s +CustomResourceDefinition apiextensions.k8s.io/v1beta1 v1.16.0 v1.22.0 apiextensions.k8s.io/v1 v1.16.0 k8s +MutatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ValidatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRole rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRole rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RuntimeClass node.k8s.io/v1beta1 v1.22.0 v1.25.0 node.k8s.io/v1 v1.20.0 k8s +PodDisruptionBudget policy/v1beta1 v1.21.0 v1.25.0 policy/v1 v1.21.0 k8s +PodDisruptionBudgetList policy/v1beta1 v1.21.0 v1.25.0 policy/v1 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 v1.23.0 k8s +HorizontalPodAutoscalerList autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscalerList autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +CronJob batch/v1beta1 v1.21.0 v1.25.0 batch/v1 v1.21.0 k8s +CronJobList batch/v1beta1 v1.21.0 v1.25.0 batch/v1 n/a k8s +CSINode storage.k8s.io/v1beta1 v1.17.0 v1.22.0 storage.k8s.io/v1 v1.17.0 k8s +CSIDriver storage.k8s.io/v1beta1 v1.19.0 v1.22.0 storage.k8s.io/v1 v1.19.0 k8s +CSIStorageCapacity storage.k8s.io/v1beta1 v1.24.0 v1.27.0 storage.k8s.io/v1 v1.24.0 k8s +StorageClass storage.k8s.io/v1beta1 v1.6.0 v1.22.0 storage.k8s.io/v1 v1.6.0 k8s +VolumeAttachment storage.k8s.io/v1beta1 v1.13.0 v1.22.0 storage.k8s.io/v1 v1.13.0 k8s +APIService apiregistration.k8s.io/v1beta1 v1.10.0 v1.22.0 apiregistration.k8s.io/v1 v1.10.0 k8s +TokenReview authentication.k8s.io/v1beta1 v1.6.0 v1.22.0 authentication.k8s.io/v1 v1.6.0 k8s +CertificateSigningRequest certificates.k8s.io/v1beta1 v1.19.0 v1.22.0 certificates.k8s.io/v1 v1.19.0 k8s +Lease coordination.k8s.io/v1beta1 v1.14.0 v1.22.0 coordination.k8s.io/v1 v1.14.0 k8s +Event events.k8s.io/v1beta1 v1.19.0 v1.25.0 events.k8s.io/v1 v1.19.0 k8s +EndpointSlice discovery.k8s.io/v1beta1 v1.21.0 v1.25.0 discovery.k8s.io/v1 v1.21.0 k8s +FlowControl flowcontrol.apiserver.k8s.io/v1beta1 v1.23.0 v1.26.0 flowcontrol.apiserver.k8s.io/v1beta2 n/a k8s +AuthorizationPolicies rbac.istio.io v1.4.0 v1.4.0 security.istio.io/v1beta1 n/a istio + authentication.istio.io/v1alpha1 v1.5.0 v1.6.0 security.istio.io/v1beta1 n/a istio +Certificate certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Issuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +ClusterIssuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +CertificateRequest certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Order certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Challenge certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Certificate cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +FlowSchema flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +FLowSchema flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +Sep 5 12:24:31.411 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable venom.timestamp: 1693938262 +Sep 5 12:24:31.411 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-additional-file-duplicate.result.systemerr: Error: duplicate cannot be added to defaults: Deployment extensions/v1beta1 +Usage: + pluto list-versions [flags] + +Flags: + -h, --help help for list-versions + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:31.295047 96865 root.go:471] duplicate cannot be added to defaults: Deployment extensions/v1beta1 +Sep 5 12:24:31.411 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-additional-file-duplicate.result.systemerrjson: +Sep 5 12:24:31.411 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-ojson.result.systemoutjson: +Sep 5 12:24:31.411 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable Pass-bad-semver-with-no-v.result.err: +Sep 5 12:24:31.411 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-additional-file-duplicate.result.err: +Sep 5 12:24:31.411 [INFO] [CLI Validation] [Pass-bad-column-list-to-custom] Step #0 content is: {"assertions":["result.code ShouldEqual 1","result.systemerr ShouldContainSubstring \"invalid custom column option FOO\""],"script":"pluto detect-files -d assets/deprecated116 --target-versions foo=vfoo -o custom --columns \"FOO\""} +Sep 5 12:24:31.411 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-1825278779 +Sep 5 12:24:31.411 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-1825278779' +Sep 5 12:24:31.524 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] Error: invalid custom column option FOO - must be one of [NAME FILEPATH NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN COMPONENT REPL AVAIL REPL AVAIL IN] + +Sep 5 12:24:31.524 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] Usage: + +Sep 5 12:24:31.524 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] pluto detect-files [flags] + +Sep 5 12:24:31.524 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] + +Sep 5 12:24:31.524 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] Flags: + +Sep 5 12:24:31.524 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] -d, --directory string The directory to scan. If blank, defaults to current working dir. + +Sep 5 12:24:31.524 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] -h, --help help for detect-files + +Sep 5 12:24:31.524 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] + +Sep 5 12:24:31.524 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] Global Flags: + +Sep 5 12:24:31.524 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + +Sep 5 12:24:31.524 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + +Sep 5 12:24:31.524 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] --components strings A list of components to run checks for. If nil, will check for all found in versions. + +Sep 5 12:24:31.524 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + +Sep 5 12:24:31.524 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + +Sep 5 12:24:31.524 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + +Sep 5 12:24:31.524 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] --no-footer Disable footer output + +Sep 5 12:24:31.524 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + +Sep 5 12:24:31.524 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + +Sep 5 12:24:31.524 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + +Sep 5 12:24:31.524 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + +Sep 5 12:24:31.524 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] -v, --v Level number for the log level verbosity + +Sep 5 12:24:31.524 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] + +Sep 5 12:24:31.524 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] E0905 12:24:31.524547 97141 root.go:471] invalid custom column option FOO - must be one of [NAME FILEPATH NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN COMPONENT REPL AVAIL REPL AVAIL IN] + +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] result of runTestStepExecutor: {Systemout: SystemoutJSON: Systemerr:Error: invalid custom column option FOO - must be one of [NAME FILEPATH NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN COMPONENT REPL AVAIL REPL AVAIL IN] +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:31.524547 97141 root.go:471] invalid custom column option FOO - must be one of [NAME FILEPATH NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN COMPONENT REPL AVAIL REPL AVAIL IN] SystemerrJSON: Err: Code:1 TimeSeconds:0.113336333} +Sep 5 12:24:31.525 [INFO] [CLI Validation] [Pass-bad-column-list-to-custom] Ending testcase +Sep 5 12:24:31.525 [INFO] [CLI Validation] [Pass-bad-column-list-to-markdown] Starting testcase +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-ojson.result.systemerrjson: +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemerr: Error: you must use valid semver for all target versions with a leading 'v' - got foo vfoo +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:31.066794 96589 root.go:471] you must use valid semver for all target versions with a leading 'v' - got foo vfoo +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-additional-file.result.code: 0 +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-additional-file-duplicate.result.code: 1 +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-column-list-to-custom.result.timeseconds: 0.113336333 +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-additional-file-duplicate.result.err: +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-semver-with-no-v.result.systemout: +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable venom.timestamp: 1693938262 +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-ojson.result.code: 0 +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-semver-with-no-v.result.code: 1 +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-additional-file-duplicate.result.timeseconds: 0.112379083 +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-semver-starting-with-v.result.__len__: 7 +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable venom.testsuite.filepath: tests/03-cli-validation.yaml +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-column-list-to-custom.result.err: +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-ojson.result.__len__: 7 +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-additional-file.result.err: +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-additional-file.result.systemoutjson: +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable venom.testsuite.shortName: 03-cli-validation +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-additional-file-duplicate.result.systemout: +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable venom.testsuite: CLI Validation +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-column-list-to-custom.__type__: Result +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-ojson.result.err: +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-additional-file-duplicate.result.__len__: 7 +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable venom.datetime: 2023-09-05T12:24:22-06:00 +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable venom.testsuite.name: CLI Validation +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-additional-file.__type__: Result +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-column-list-to-custom.result.systemerr: Error: invalid custom column option FOO - must be one of [NAME FILEPATH NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN COMPONENT REPL AVAIL REPL AVAIL IN] +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:31.524547 97141 root.go:471] invalid custom column option FOO - must be one of [NAME FILEPATH NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN COMPONENT REPL AVAIL REPL AVAIL IN] +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-ojson.__type__: Result +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable __Type__: Map +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-ojson.result.systemoutjson: +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-semver-with-no-v.result.err: +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-column-list-to-custom.result.systemoutjson: +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable venom.testsuite.filename: 03-cli-validation.yaml +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-semver-starting-with-v.__type__: Result +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemout: +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-semver-with-no-v.__type__: Result +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-additional-file-duplicate.result.systemerr: Error: duplicate cannot be added to defaults: Deployment extensions/v1beta1 +Usage: + pluto list-versions [flags] + +Flags: + -h, --help help for list-versions + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:31.295047 96865 root.go:471] duplicate cannot be added to defaults: Deployment extensions/v1beta1 +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-column-list-to-custom.result.systemout: +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-semver-with-no-v.result.timeseconds: 0.138676 +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable venom.outputdir: +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-ojson.result.systemout: KIND NAME DEPRECATED IN REMOVED IN REPLACEMENT REPL AVAIL IN COMPONENT +Deployment extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +NetworkPolicy extensions/v1beta1 v1.9.0 v1.16.0 networking.k8s.io/v1 v1.8.0 k8s +Ingress extensions/v1beta1 v1.14.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +Ingress networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +IngressClass networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +DaemonSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +DaemonSet extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +PodSecurityPolicy extensions/v1beta1 v1.10.0 v1.16.0 policy/v1beta1 v1.10.0 k8s +PodSecurityPolicy policy/v1beta1 v1.21.0 v1.25.0 n/a n/a k8s +ReplicaSet extensions/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta2 n/a v1.16.0 apps/v1 v1.9.0 k8s +PriorityClass scheduling.k8s.io/v1beta1 v1.14.0 v1.22.0 scheduling.k8s.io/v1 v1.14.0 k8s +PriorityClass scheduling.k8s.io/v1alpha1 v1.14.0 v1.17.0 scheduling.k8s.io/v1 n/a k8s +CustomResourceDefinition apiextensions.k8s.io/v1beta1 v1.16.0 v1.22.0 apiextensions.k8s.io/v1 v1.16.0 k8s +MutatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ValidatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRole rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRole rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RuntimeClass node.k8s.io/v1beta1 v1.22.0 v1.25.0 node.k8s.io/v1 v1.20.0 k8s +PodDisruptionBudget policy/v1beta1 v1.21.0 v1.25.0 policy/v1 v1.21.0 k8s +PodDisruptionBudgetList policy/v1beta1 v1.21.0 v1.25.0 policy/v1 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 v1.23.0 k8s +HorizontalPodAutoscalerList autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscalerList autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +CronJob batch/v1beta1 v1.21.0 v1.25.0 batch/v1 v1.21.0 k8s +CronJobList batch/v1beta1 v1.21.0 v1.25.0 batch/v1 n/a k8s +CSINode storage.k8s.io/v1beta1 v1.17.0 v1.22.0 storage.k8s.io/v1 v1.17.0 k8s +CSIDriver storage.k8s.io/v1beta1 v1.19.0 v1.22.0 storage.k8s.io/v1 v1.19.0 k8s +CSIStorageCapacity storage.k8s.io/v1beta1 v1.24.0 v1.27.0 storage.k8s.io/v1 v1.24.0 k8s +StorageClass storage.k8s.io/v1beta1 v1.6.0 v1.22.0 storage.k8s.io/v1 v1.6.0 k8s +VolumeAttachment storage.k8s.io/v1beta1 v1.13.0 v1.22.0 storage.k8s.io/v1 v1.13.0 k8s +APIService apiregistration.k8s.io/v1beta1 v1.10.0 v1.22.0 apiregistration.k8s.io/v1 v1.10.0 k8s +TokenReview authentication.k8s.io/v1beta1 v1.6.0 v1.22.0 authentication.k8s.io/v1 v1.6.0 k8s +CertificateSigningRequest certificates.k8s.io/v1beta1 v1.19.0 v1.22.0 certificates.k8s.io/v1 v1.19.0 k8s +Lease coordination.k8s.io/v1beta1 v1.14.0 v1.22.0 coordination.k8s.io/v1 v1.14.0 k8s +Event events.k8s.io/v1beta1 v1.19.0 v1.25.0 events.k8s.io/v1 v1.19.0 k8s +EndpointSlice discovery.k8s.io/v1beta1 v1.21.0 v1.25.0 discovery.k8s.io/v1 v1.21.0 k8s +FlowControl flowcontrol.apiserver.k8s.io/v1beta1 v1.23.0 v1.26.0 flowcontrol.apiserver.k8s.io/v1beta2 n/a k8s +AuthorizationPolicies rbac.istio.io v1.4.0 v1.4.0 security.istio.io/v1beta1 n/a istio + authentication.istio.io/v1alpha1 v1.5.0 v1.6.0 security.istio.io/v1beta1 n/a istio +Certificate certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Issuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +ClusterIssuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +CertificateRequest certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Order certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Challenge certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Certificate cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +FlowSchema flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +FLowSchema flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-semver-with-no-v.result.systemoutjson: +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-semver-starting-with-v.result.err: +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemerrjson: +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-additional-file.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-semver-with-no-v.result.__len__: 7 +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable venom.libdir: +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-column-list-to-custom.result.code: 1 +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-semver-with-no-v.result.systemerrjson: +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-column-list-to-custom.result.systemerrjson: +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable __Len__: 8 +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-additional-file.result.timeseconds: 0.114097 +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-semver-starting-with-v.result.code: 1 +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-additional-file-duplicate.result.systemoutjson: +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-semver-starting-with-v.result.timeseconds: 0.113788667 +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-additional-file.result.systemout: KIND NAME DEPRECATED IN REMOVED IN REPLACEMENT REPL AVAIL IN COMPONENT +Deployment extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +NetworkPolicy extensions/v1beta1 v1.9.0 v1.16.0 networking.k8s.io/v1 v1.8.0 k8s +Ingress extensions/v1beta1 v1.14.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +Ingress networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +IngressClass networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +DaemonSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +DaemonSet extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +PodSecurityPolicy extensions/v1beta1 v1.10.0 v1.16.0 policy/v1beta1 v1.10.0 k8s +PodSecurityPolicy policy/v1beta1 v1.21.0 v1.25.0 n/a n/a k8s +ReplicaSet extensions/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta2 n/a v1.16.0 apps/v1 v1.9.0 k8s +PriorityClass scheduling.k8s.io/v1beta1 v1.14.0 v1.22.0 scheduling.k8s.io/v1 v1.14.0 k8s +PriorityClass scheduling.k8s.io/v1alpha1 v1.14.0 v1.17.0 scheduling.k8s.io/v1 n/a k8s +CustomResourceDefinition apiextensions.k8s.io/v1beta1 v1.16.0 v1.22.0 apiextensions.k8s.io/v1 v1.16.0 k8s +MutatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ValidatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRole rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRole rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RuntimeClass node.k8s.io/v1beta1 v1.22.0 v1.25.0 node.k8s.io/v1 v1.20.0 k8s +PodDisruptionBudget policy/v1beta1 v1.21.0 v1.25.0 policy/v1 v1.21.0 k8s +PodDisruptionBudgetList policy/v1beta1 v1.21.0 v1.25.0 policy/v1 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 v1.23.0 k8s +HorizontalPodAutoscalerList autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscalerList autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +CronJob batch/v1beta1 v1.21.0 v1.25.0 batch/v1 v1.21.0 k8s +CronJobList batch/v1beta1 v1.21.0 v1.25.0 batch/v1 n/a k8s +CSINode storage.k8s.io/v1beta1 v1.17.0 v1.22.0 storage.k8s.io/v1 v1.17.0 k8s +CSIDriver storage.k8s.io/v1beta1 v1.19.0 v1.22.0 storage.k8s.io/v1 v1.19.0 k8s +CSIStorageCapacity storage.k8s.io/v1beta1 v1.24.0 v1.27.0 storage.k8s.io/v1 v1.24.0 k8s +StorageClass storage.k8s.io/v1beta1 v1.6.0 v1.22.0 storage.k8s.io/v1 v1.6.0 k8s +VolumeAttachment storage.k8s.io/v1beta1 v1.13.0 v1.22.0 storage.k8s.io/v1 v1.13.0 k8s +APIService apiregistration.k8s.io/v1beta1 v1.10.0 v1.22.0 apiregistration.k8s.io/v1 v1.10.0 k8s +TokenReview authentication.k8s.io/v1beta1 v1.6.0 v1.22.0 authentication.k8s.io/v1 v1.6.0 k8s +CertificateSigningRequest certificates.k8s.io/v1beta1 v1.19.0 v1.22.0 certificates.k8s.io/v1 v1.19.0 k8s +Lease coordination.k8s.io/v1beta1 v1.14.0 v1.22.0 coordination.k8s.io/v1 v1.14.0 k8s +Event events.k8s.io/v1beta1 v1.19.0 v1.25.0 events.k8s.io/v1 v1.19.0 k8s +EndpointSlice discovery.k8s.io/v1beta1 v1.21.0 v1.25.0 discovery.k8s.io/v1 v1.21.0 k8s +FlowControl flowcontrol.apiserver.k8s.io/v1beta1 v1.23.0 v1.26.0 flowcontrol.apiserver.k8s.io/v1beta2 n/a k8s +AuthorizationPolicies rbac.istio.io v1.4.0 v1.4.0 security.istio.io/v1beta1 n/a istio + authentication.istio.io/v1alpha1 v1.5.0 v1.6.0 security.istio.io/v1beta1 n/a istio +Certificate certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Issuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +ClusterIssuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +CertificateRequest certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Order certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Challenge certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Certificate cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +FlowSchema flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +FLowSchema flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +AnotherCRD someother/v1beta1 v1.9.0 v1.16.0 apps/v1 n/a other +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-column-list-to-custom.result.__len__: 7 +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-additional-file.result.__len__: 7 +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-additional-file.result.systemerrjson: +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-additional-file-duplicate.result.systemerrjson: +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-additional-file-duplicate.__type__: Result +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-semver-with-no-v.result.systemerr: Error: you must use valid semver for all target versions with a leading 'v' - got foo 1.0.0 +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:30.952261 96449 root.go:471] you must use valid semver for all target versions with a leading 'v' - got foo 1.0.0 +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-ojson.result.timeseconds: 0.114045333 +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable venom.testcase: Pass-bad-column-list-to-markdown +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemoutjson: +Sep 5 12:24:31.525 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-ojson.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:31.525 [INFO] [CLI Validation] [Pass-bad-column-list-to-markdown] Step #0 content is: {"assertions":["result.code ShouldEqual 1","result.systemerr ShouldContainSubstring \"invalid custom column option FOO\""],"script":"pluto detect-files -d assets/deprecated116 --target-versions foo=vfoo -o markdown --columns \"FOO\""} +Sep 5 12:24:31.526 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-1933156419 +Sep 5 12:24:31.526 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-1933156419' +Sep 5 12:24:31.637 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] Error: invalid custom column option FOO - must be one of [NAME FILEPATH NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN COMPONENT REPL AVAIL REPL AVAIL IN] + +Sep 5 12:24:31.637 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] Usage: + +Sep 5 12:24:31.637 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] pluto detect-files [flags] + +Sep 5 12:24:31.637 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] + +Sep 5 12:24:31.637 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] Flags: + +Sep 5 12:24:31.637 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] -d, --directory string The directory to scan. If blank, defaults to current working dir. + +Sep 5 12:24:31.637 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] -h, --help help for detect-files + +Sep 5 12:24:31.637 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] + +Sep 5 12:24:31.637 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] Global Flags: + +Sep 5 12:24:31.637 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + +Sep 5 12:24:31.637 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + +Sep 5 12:24:31.637 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] --components strings A list of components to run checks for. If nil, will check for all found in versions. + +Sep 5 12:24:31.637 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + +Sep 5 12:24:31.637 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + +Sep 5 12:24:31.637 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + +Sep 5 12:24:31.637 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] --no-footer Disable footer output + +Sep 5 12:24:31.637 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + +Sep 5 12:24:31.637 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + +Sep 5 12:24:31.637 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + +Sep 5 12:24:31.637 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + +Sep 5 12:24:31.637 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] -v, --v Level number for the log level verbosity + +Sep 5 12:24:31.637 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] + +Sep 5 12:24:31.637 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] E0905 12:24:31.637459 97279 root.go:471] invalid custom column option FOO - must be one of [NAME FILEPATH NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN COMPONENT REPL AVAIL REPL AVAIL IN] + +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] result of runTestStepExecutor: {Systemout: SystemoutJSON: Systemerr:Error: invalid custom column option FOO - must be one of [NAME FILEPATH NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN COMPONENT REPL AVAIL REPL AVAIL IN] +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:31.637459 97279 root.go:471] invalid custom column option FOO - must be one of [NAME FILEPATH NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN COMPONENT REPL AVAIL REPL AVAIL IN] SystemerrJSON: Err: Code:1 TimeSeconds:0.11196625} +Sep 5 12:24:31.638 [INFO] [CLI Validation] [Pass-bad-column-list-to-markdown] Ending testcase +Sep 5 12:24:31.638 [INFO] [CLI Validation] [Custom-output-with-no-columns-flag] Starting testcase +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable __Len__: 8 +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-ojson.result.__len__: 7 +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-semver-with-no-v.result.__len__: 7 +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-semver-starting-with-v.result.__len__: 7 +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-ojson.result.systemerrjson: +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-additional-file.__type__: Result +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable venom.timestamp: 1693938262 +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-additional-file-duplicate.result.systemoutjson: +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-column-list-to-markdown.result.systemoutjson: +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-column-list-to-markdown.result.__len__: 7 +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-column-list-to-markdown.result.code: 1 +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable venom.outputdir: +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable venom.testsuite.filename: 03-cli-validation.yaml +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-column-list-to-custom.__type__: Result +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-semver-with-no-v.result.systemerr: Error: you must use valid semver for all target versions with a leading 'v' - got foo 1.0.0 +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:30.952261 96449 root.go:471] you must use valid semver for all target versions with a leading 'v' - got foo 1.0.0 +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-semver-with-no-v.result.systemout: +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-column-list-to-custom.result.__len__: 7 +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable venom.datetime: 2023-09-05T12:24:22-06:00 +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemerr: Error: you must use valid semver for all target versions with a leading 'v' - got foo vfoo +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:31.066794 96589 root.go:471] you must use valid semver for all target versions with a leading 'v' - got foo vfoo +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-semver-with-no-v.result.code: 1 +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-additional-file-duplicate.result.__len__: 7 +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-column-list-to-custom.result.code: 1 +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-ojson.result.code: 0 +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-additional-file.result.systemoutjson: +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-semver-with-no-v.result.timeseconds: 0.138676 +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemout: +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-column-list-to-markdown.result.systemerr: Error: invalid custom column option FOO - must be one of [NAME FILEPATH NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN COMPONENT REPL AVAIL REPL AVAIL IN] +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:31.637459 97279 root.go:471] invalid custom column option FOO - must be one of [NAME FILEPATH NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN COMPONENT REPL AVAIL REPL AVAIL IN] +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-ojson.result.timeseconds: 0.114045333 +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-additional-file.result.__len__: 7 +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-ojson.result.err: +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-additional-file.result.code: 0 +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-additional-file-duplicate.result.code: 1 +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-column-list-to-markdown.result.err: +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-semver-with-no-v.__type__: Result +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-column-list-to-markdown.result.systemout: +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable venom.libdir: +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable venom.testcase: Custom-output-with-no-columns-flag +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-semver-with-no-v.result.err: +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-ojson.result.systemout: KIND NAME DEPRECATED IN REMOVED IN REPLACEMENT REPL AVAIL IN COMPONENT +Deployment extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +NetworkPolicy extensions/v1beta1 v1.9.0 v1.16.0 networking.k8s.io/v1 v1.8.0 k8s +Ingress extensions/v1beta1 v1.14.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +Ingress networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +IngressClass networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +DaemonSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +DaemonSet extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +PodSecurityPolicy extensions/v1beta1 v1.10.0 v1.16.0 policy/v1beta1 v1.10.0 k8s +PodSecurityPolicy policy/v1beta1 v1.21.0 v1.25.0 n/a n/a k8s +ReplicaSet extensions/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta2 n/a v1.16.0 apps/v1 v1.9.0 k8s +PriorityClass scheduling.k8s.io/v1beta1 v1.14.0 v1.22.0 scheduling.k8s.io/v1 v1.14.0 k8s +PriorityClass scheduling.k8s.io/v1alpha1 v1.14.0 v1.17.0 scheduling.k8s.io/v1 n/a k8s +CustomResourceDefinition apiextensions.k8s.io/v1beta1 v1.16.0 v1.22.0 apiextensions.k8s.io/v1 v1.16.0 k8s +MutatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ValidatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRole rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRole rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RuntimeClass node.k8s.io/v1beta1 v1.22.0 v1.25.0 node.k8s.io/v1 v1.20.0 k8s +PodDisruptionBudget policy/v1beta1 v1.21.0 v1.25.0 policy/v1 v1.21.0 k8s +PodDisruptionBudgetList policy/v1beta1 v1.21.0 v1.25.0 policy/v1 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 v1.23.0 k8s +HorizontalPodAutoscalerList autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscalerList autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +CronJob batch/v1beta1 v1.21.0 v1.25.0 batch/v1 v1.21.0 k8s +CronJobList batch/v1beta1 v1.21.0 v1.25.0 batch/v1 n/a k8s +CSINode storage.k8s.io/v1beta1 v1.17.0 v1.22.0 storage.k8s.io/v1 v1.17.0 k8s +CSIDriver storage.k8s.io/v1beta1 v1.19.0 v1.22.0 storage.k8s.io/v1 v1.19.0 k8s +CSIStorageCapacity storage.k8s.io/v1beta1 v1.24.0 v1.27.0 storage.k8s.io/v1 v1.24.0 k8s +StorageClass storage.k8s.io/v1beta1 v1.6.0 v1.22.0 storage.k8s.io/v1 v1.6.0 k8s +VolumeAttachment storage.k8s.io/v1beta1 v1.13.0 v1.22.0 storage.k8s.io/v1 v1.13.0 k8s +APIService apiregistration.k8s.io/v1beta1 v1.10.0 v1.22.0 apiregistration.k8s.io/v1 v1.10.0 k8s +TokenReview authentication.k8s.io/v1beta1 v1.6.0 v1.22.0 authentication.k8s.io/v1 v1.6.0 k8s +CertificateSigningRequest certificates.k8s.io/v1beta1 v1.19.0 v1.22.0 certificates.k8s.io/v1 v1.19.0 k8s +Lease coordination.k8s.io/v1beta1 v1.14.0 v1.22.0 coordination.k8s.io/v1 v1.14.0 k8s +Event events.k8s.io/v1beta1 v1.19.0 v1.25.0 events.k8s.io/v1 v1.19.0 k8s +EndpointSlice discovery.k8s.io/v1beta1 v1.21.0 v1.25.0 discovery.k8s.io/v1 v1.21.0 k8s +FlowControl flowcontrol.apiserver.k8s.io/v1beta1 v1.23.0 v1.26.0 flowcontrol.apiserver.k8s.io/v1beta2 n/a k8s +AuthorizationPolicies rbac.istio.io v1.4.0 v1.4.0 security.istio.io/v1beta1 n/a istio + authentication.istio.io/v1alpha1 v1.5.0 v1.6.0 security.istio.io/v1beta1 n/a istio +Certificate certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Issuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +ClusterIssuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +CertificateRequest certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Order certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Challenge certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Certificate cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +FlowSchema flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +FLowSchema flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-column-list-to-custom.result.systemerrjson: +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-additional-file-duplicate.result.err: +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-column-list-to-markdown.result.systemerrjson: +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable venom.testsuite.shortName: 03-cli-validation +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable __Type__: Map +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-column-list-to-custom.result.systemerr: Error: invalid custom column option FOO - must be one of [NAME FILEPATH NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN COMPONENT REPL AVAIL REPL AVAIL IN] +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:31.524547 97141 root.go:471] invalid custom column option FOO - must be one of [NAME FILEPATH NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN COMPONENT REPL AVAIL REPL AVAIL IN] +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-semver-starting-with-v.result.code: 1 +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-semver-with-no-v.result.systemoutjson: +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemoutjson: +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemerrjson: +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-additional-file-duplicate.result.systemerr: Error: duplicate cannot be added to defaults: Deployment extensions/v1beta1 +Usage: + pluto list-versions [flags] + +Flags: + -h, --help help for list-versions + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:31.295047 96865 root.go:471] duplicate cannot be added to defaults: Deployment extensions/v1beta1 +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-column-list-to-custom.result.timeseconds: 0.113336333 +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-ojson.__type__: Result +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-additional-file-duplicate.__type__: Result +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-additional-file.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-column-list-to-custom.result.systemout: +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-additional-file.result.systemerrjson: +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-additional-file.result.err: +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-semver-starting-with-v.__type__: Result +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-additional-file-duplicate.result.systemerrjson: +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-column-list-to-markdown.result.timeseconds: 0.11196625 +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-additional-file-duplicate.result.systemout: +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-column-list-to-custom.result.systemoutjson: +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable venom.testsuite.filepath: tests/03-cli-validation.yaml +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-column-list-to-markdown.__type__: Result +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-ojson.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-semver-starting-with-v.result.timeseconds: 0.113788667 +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-semver-with-no-v.result.systemerrjson: +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-semver-starting-with-v.result.err: +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-additional-file.result.systemout: KIND NAME DEPRECATED IN REMOVED IN REPLACEMENT REPL AVAIL IN COMPONENT +Deployment extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +NetworkPolicy extensions/v1beta1 v1.9.0 v1.16.0 networking.k8s.io/v1 v1.8.0 k8s +Ingress extensions/v1beta1 v1.14.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +Ingress networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +IngressClass networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +DaemonSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +DaemonSet extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +PodSecurityPolicy extensions/v1beta1 v1.10.0 v1.16.0 policy/v1beta1 v1.10.0 k8s +PodSecurityPolicy policy/v1beta1 v1.21.0 v1.25.0 n/a n/a k8s +ReplicaSet extensions/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta2 n/a v1.16.0 apps/v1 v1.9.0 k8s +PriorityClass scheduling.k8s.io/v1beta1 v1.14.0 v1.22.0 scheduling.k8s.io/v1 v1.14.0 k8s +PriorityClass scheduling.k8s.io/v1alpha1 v1.14.0 v1.17.0 scheduling.k8s.io/v1 n/a k8s +CustomResourceDefinition apiextensions.k8s.io/v1beta1 v1.16.0 v1.22.0 apiextensions.k8s.io/v1 v1.16.0 k8s +MutatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ValidatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRole rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRole rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RuntimeClass node.k8s.io/v1beta1 v1.22.0 v1.25.0 node.k8s.io/v1 v1.20.0 k8s +PodDisruptionBudget policy/v1beta1 v1.21.0 v1.25.0 policy/v1 v1.21.0 k8s +PodDisruptionBudgetList policy/v1beta1 v1.21.0 v1.25.0 policy/v1 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 v1.23.0 k8s +HorizontalPodAutoscalerList autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscalerList autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +CronJob batch/v1beta1 v1.21.0 v1.25.0 batch/v1 v1.21.0 k8s +CronJobList batch/v1beta1 v1.21.0 v1.25.0 batch/v1 n/a k8s +CSINode storage.k8s.io/v1beta1 v1.17.0 v1.22.0 storage.k8s.io/v1 v1.17.0 k8s +CSIDriver storage.k8s.io/v1beta1 v1.19.0 v1.22.0 storage.k8s.io/v1 v1.19.0 k8s +CSIStorageCapacity storage.k8s.io/v1beta1 v1.24.0 v1.27.0 storage.k8s.io/v1 v1.24.0 k8s +StorageClass storage.k8s.io/v1beta1 v1.6.0 v1.22.0 storage.k8s.io/v1 v1.6.0 k8s +VolumeAttachment storage.k8s.io/v1beta1 v1.13.0 v1.22.0 storage.k8s.io/v1 v1.13.0 k8s +APIService apiregistration.k8s.io/v1beta1 v1.10.0 v1.22.0 apiregistration.k8s.io/v1 v1.10.0 k8s +TokenReview authentication.k8s.io/v1beta1 v1.6.0 v1.22.0 authentication.k8s.io/v1 v1.6.0 k8s +CertificateSigningRequest certificates.k8s.io/v1beta1 v1.19.0 v1.22.0 certificates.k8s.io/v1 v1.19.0 k8s +Lease coordination.k8s.io/v1beta1 v1.14.0 v1.22.0 coordination.k8s.io/v1 v1.14.0 k8s +Event events.k8s.io/v1beta1 v1.19.0 v1.25.0 events.k8s.io/v1 v1.19.0 k8s +EndpointSlice discovery.k8s.io/v1beta1 v1.21.0 v1.25.0 discovery.k8s.io/v1 v1.21.0 k8s +FlowControl flowcontrol.apiserver.k8s.io/v1beta1 v1.23.0 v1.26.0 flowcontrol.apiserver.k8s.io/v1beta2 n/a k8s +AuthorizationPolicies rbac.istio.io v1.4.0 v1.4.0 security.istio.io/v1beta1 n/a istio + authentication.istio.io/v1alpha1 v1.5.0 v1.6.0 security.istio.io/v1beta1 n/a istio +Certificate certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Issuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +ClusterIssuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +CertificateRequest certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Order certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Challenge certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Certificate cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +FlowSchema flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +FLowSchema flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +AnotherCRD someother/v1beta1 v1.9.0 v1.16.0 apps/v1 n/a other +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-additional-file.result.timeseconds: 0.114097 +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-ojson.result.systemoutjson: +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable venom.testsuite: CLI Validation +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable venom.testsuite.name: CLI Validation +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-additional-file-duplicate.result.timeseconds: 0.112379083 +Sep 5 12:24:31.638 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-column-list-to-custom.result.err: +Sep 5 12:24:31.638 [INFO] [CLI Validation] [Custom-output-with-no-columns-flag] Step #0 content is: {"assertions":["result.code ShouldEqual 1","result.systemerr ShouldContainSubstring \"when --output=custom you must specify --columns\""],"script":"pluto detect-files -d assets/deprecated116 --target-versions foo=vfoo -o custom"} +Sep 5 12:24:31.639 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-847389617 +Sep 5 12:24:31.639 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-847389617' +Sep 5 12:24:31.778 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] Error: when --output=custom you must specify --columns + +Sep 5 12:24:31.778 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] Usage: + +Sep 5 12:24:31.778 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] pluto detect-files [flags] + +Sep 5 12:24:31.778 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] + +Sep 5 12:24:31.778 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] Flags: + +Sep 5 12:24:31.778 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] -d, --directory string The directory to scan. If blank, defaults to current working dir. + +Sep 5 12:24:31.778 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] -h, --help help for detect-files + +Sep 5 12:24:31.778 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] + +Sep 5 12:24:31.778 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] Global Flags: + +Sep 5 12:24:31.778 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + +Sep 5 12:24:31.778 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + +Sep 5 12:24:31.778 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] --components strings A list of components to run checks for. If nil, will check for all found in versions. + +Sep 5 12:24:31.778 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + +Sep 5 12:24:31.778 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + +Sep 5 12:24:31.778 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + +Sep 5 12:24:31.778 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] --no-footer Disable footer output + +Sep 5 12:24:31.778 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + +Sep 5 12:24:31.778 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + +Sep 5 12:24:31.778 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + +Sep 5 12:24:31.778 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + +Sep 5 12:24:31.778 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] -v, --v Level number for the log level verbosity + +Sep 5 12:24:31.778 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] + +Sep 5 12:24:31.778 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] E0905 12:24:31.778479 97417 root.go:471] when --output=custom you must specify --columns + +Sep 5 12:24:31.779 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] result of runTestStepExecutor: {Systemout: SystemoutJSON: Systemerr:Error: when --output=custom you must specify --columns +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:31.778479 97417 root.go:471] when --output=custom you must specify --columns SystemerrJSON: Err: Code:1 TimeSeconds:0.13978925} +Sep 5 12:24:31.779 [INFO] [CLI Validation] [Custom-output-with-no-columns-flag] Ending testcase +Sep 5 12:24:31.779 [INFO] [CLI Validation] [no-output-due-to-bad-components-list] Starting testcase +Sep 5 12:24:31.779 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-additional-file-duplicate.__type__: Result +Sep 5 12:24:31.779 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-additional-file.result.systemout: KIND NAME DEPRECATED IN REMOVED IN REPLACEMENT REPL AVAIL IN COMPONENT +Deployment extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +NetworkPolicy extensions/v1beta1 v1.9.0 v1.16.0 networking.k8s.io/v1 v1.8.0 k8s +Ingress extensions/v1beta1 v1.14.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +Ingress networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +IngressClass networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +DaemonSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +DaemonSet extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +PodSecurityPolicy extensions/v1beta1 v1.10.0 v1.16.0 policy/v1beta1 v1.10.0 k8s +PodSecurityPolicy policy/v1beta1 v1.21.0 v1.25.0 n/a n/a k8s +ReplicaSet extensions/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta2 n/a v1.16.0 apps/v1 v1.9.0 k8s +PriorityClass scheduling.k8s.io/v1beta1 v1.14.0 v1.22.0 scheduling.k8s.io/v1 v1.14.0 k8s +PriorityClass scheduling.k8s.io/v1alpha1 v1.14.0 v1.17.0 scheduling.k8s.io/v1 n/a k8s +CustomResourceDefinition apiextensions.k8s.io/v1beta1 v1.16.0 v1.22.0 apiextensions.k8s.io/v1 v1.16.0 k8s +MutatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ValidatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRole rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRole rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RuntimeClass node.k8s.io/v1beta1 v1.22.0 v1.25.0 node.k8s.io/v1 v1.20.0 k8s +PodDisruptionBudget policy/v1beta1 v1.21.0 v1.25.0 policy/v1 v1.21.0 k8s +PodDisruptionBudgetList policy/v1beta1 v1.21.0 v1.25.0 policy/v1 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 v1.23.0 k8s +HorizontalPodAutoscalerList autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscalerList autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +CronJob batch/v1beta1 v1.21.0 v1.25.0 batch/v1 v1.21.0 k8s +CronJobList batch/v1beta1 v1.21.0 v1.25.0 batch/v1 n/a k8s +CSINode storage.k8s.io/v1beta1 v1.17.0 v1.22.0 storage.k8s.io/v1 v1.17.0 k8s +CSIDriver storage.k8s.io/v1beta1 v1.19.0 v1.22.0 storage.k8s.io/v1 v1.19.0 k8s +CSIStorageCapacity storage.k8s.io/v1beta1 v1.24.0 v1.27.0 storage.k8s.io/v1 v1.24.0 k8s +StorageClass storage.k8s.io/v1beta1 v1.6.0 v1.22.0 storage.k8s.io/v1 v1.6.0 k8s +VolumeAttachment storage.k8s.io/v1beta1 v1.13.0 v1.22.0 storage.k8s.io/v1 v1.13.0 k8s +APIService apiregistration.k8s.io/v1beta1 v1.10.0 v1.22.0 apiregistration.k8s.io/v1 v1.10.0 k8s +TokenReview authentication.k8s.io/v1beta1 v1.6.0 v1.22.0 authentication.k8s.io/v1 v1.6.0 k8s +CertificateSigningRequest certificates.k8s.io/v1beta1 v1.19.0 v1.22.0 certificates.k8s.io/v1 v1.19.0 k8s +Lease coordination.k8s.io/v1beta1 v1.14.0 v1.22.0 coordination.k8s.io/v1 v1.14.0 k8s +Event events.k8s.io/v1beta1 v1.19.0 v1.25.0 events.k8s.io/v1 v1.19.0 k8s +EndpointSlice discovery.k8s.io/v1beta1 v1.21.0 v1.25.0 discovery.k8s.io/v1 v1.21.0 k8s +FlowControl flowcontrol.apiserver.k8s.io/v1beta1 v1.23.0 v1.26.0 flowcontrol.apiserver.k8s.io/v1beta2 n/a k8s +AuthorizationPolicies rbac.istio.io v1.4.0 v1.4.0 security.istio.io/v1beta1 n/a istio + authentication.istio.io/v1alpha1 v1.5.0 v1.6.0 security.istio.io/v1beta1 n/a istio +Certificate certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Issuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +ClusterIssuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +CertificateRequest certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Order certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Challenge certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Certificate cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +FlowSchema flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +FLowSchema flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +AnotherCRD someother/v1beta1 v1.9.0 v1.16.0 apps/v1 n/a other +Sep 5 12:24:31.779 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable venom.outputdir: +Sep 5 12:24:31.779 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable __Type__: Map +Sep 5 12:24:31.779 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-additional-file-duplicate.result.systemerrjson: +Sep 5 12:24:31.779 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-ojson.result.systemerrjson: +Sep 5 12:24:31.779 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-additional-file.result.__len__: 7 +Sep 5 12:24:31.779 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-ojson.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:31.779 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable venom.testsuite.filename: 03-cli-validation.yaml +Sep 5 12:24:31.779 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable venom.testsuite.filepath: tests/03-cli-validation.yaml +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-additional-file.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-additional-file-duplicate.result.err: +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-column-list-to-custom.result.systemoutjson: +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-semver-with-no-v.result.timeseconds: 0.138676 +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Custom-output-with-no-columns-flag.result.systemerrjson: +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-semver-starting-with-v.result.code: 1 +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-semver-with-no-v.result.systemoutjson: +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-additional-file-duplicate.result.code: 1 +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-ojson.result.__len__: 7 +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-additional-file-duplicate.result.__len__: 7 +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-additional-file-duplicate.result.timeseconds: 0.112379083 +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-column-list-to-markdown.result.__len__: 7 +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Custom-output-with-no-columns-flag.result.__len__: 7 +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-column-list-to-custom.result.code: 1 +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemoutjson: +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Custom-output-with-no-columns-flag.result.systemoutjson: +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-column-list-to-custom.result.timeseconds: 0.113336333 +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-semver-starting-with-v.result.__len__: 7 +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-semver-starting-with-v.__type__: Result +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-ojson.result.systemoutjson: +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-semver-with-no-v.result.systemerrjson: +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-column-list-to-custom.result.systemout: +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable venom.datetime: 2023-09-05T12:24:22-06:00 +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-column-list-to-markdown.result.systemoutjson: +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-semver-with-no-v.result.systemerr: Error: you must use valid semver for all target versions with a leading 'v' - got foo 1.0.0 +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:30.952261 96449 root.go:471] you must use valid semver for all target versions with a leading 'v' - got foo 1.0.0 +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-column-list-to-custom.result.systemerrjson: +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-column-list-to-markdown.result.systemerrjson: +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-ojson.result.systemout: KIND NAME DEPRECATED IN REMOVED IN REPLACEMENT REPL AVAIL IN COMPONENT +Deployment extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +NetworkPolicy extensions/v1beta1 v1.9.0 v1.16.0 networking.k8s.io/v1 v1.8.0 k8s +Ingress extensions/v1beta1 v1.14.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +Ingress networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +IngressClass networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +DaemonSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +DaemonSet extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +PodSecurityPolicy extensions/v1beta1 v1.10.0 v1.16.0 policy/v1beta1 v1.10.0 k8s +PodSecurityPolicy policy/v1beta1 v1.21.0 v1.25.0 n/a n/a k8s +ReplicaSet extensions/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta2 n/a v1.16.0 apps/v1 v1.9.0 k8s +PriorityClass scheduling.k8s.io/v1beta1 v1.14.0 v1.22.0 scheduling.k8s.io/v1 v1.14.0 k8s +PriorityClass scheduling.k8s.io/v1alpha1 v1.14.0 v1.17.0 scheduling.k8s.io/v1 n/a k8s +CustomResourceDefinition apiextensions.k8s.io/v1beta1 v1.16.0 v1.22.0 apiextensions.k8s.io/v1 v1.16.0 k8s +MutatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ValidatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRole rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRole rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RuntimeClass node.k8s.io/v1beta1 v1.22.0 v1.25.0 node.k8s.io/v1 v1.20.0 k8s +PodDisruptionBudget policy/v1beta1 v1.21.0 v1.25.0 policy/v1 v1.21.0 k8s +PodDisruptionBudgetList policy/v1beta1 v1.21.0 v1.25.0 policy/v1 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 v1.23.0 k8s +HorizontalPodAutoscalerList autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscalerList autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +CronJob batch/v1beta1 v1.21.0 v1.25.0 batch/v1 v1.21.0 k8s +CronJobList batch/v1beta1 v1.21.0 v1.25.0 batch/v1 n/a k8s +CSINode storage.k8s.io/v1beta1 v1.17.0 v1.22.0 storage.k8s.io/v1 v1.17.0 k8s +CSIDriver storage.k8s.io/v1beta1 v1.19.0 v1.22.0 storage.k8s.io/v1 v1.19.0 k8s +CSIStorageCapacity storage.k8s.io/v1beta1 v1.24.0 v1.27.0 storage.k8s.io/v1 v1.24.0 k8s +StorageClass storage.k8s.io/v1beta1 v1.6.0 v1.22.0 storage.k8s.io/v1 v1.6.0 k8s +VolumeAttachment storage.k8s.io/v1beta1 v1.13.0 v1.22.0 storage.k8s.io/v1 v1.13.0 k8s +APIService apiregistration.k8s.io/v1beta1 v1.10.0 v1.22.0 apiregistration.k8s.io/v1 v1.10.0 k8s +TokenReview authentication.k8s.io/v1beta1 v1.6.0 v1.22.0 authentication.k8s.io/v1 v1.6.0 k8s +CertificateSigningRequest certificates.k8s.io/v1beta1 v1.19.0 v1.22.0 certificates.k8s.io/v1 v1.19.0 k8s +Lease coordination.k8s.io/v1beta1 v1.14.0 v1.22.0 coordination.k8s.io/v1 v1.14.0 k8s +Event events.k8s.io/v1beta1 v1.19.0 v1.25.0 events.k8s.io/v1 v1.19.0 k8s +EndpointSlice discovery.k8s.io/v1beta1 v1.21.0 v1.25.0 discovery.k8s.io/v1 v1.21.0 k8s +FlowControl flowcontrol.apiserver.k8s.io/v1beta1 v1.23.0 v1.26.0 flowcontrol.apiserver.k8s.io/v1beta2 n/a k8s +AuthorizationPolicies rbac.istio.io v1.4.0 v1.4.0 security.istio.io/v1beta1 n/a istio + authentication.istio.io/v1alpha1 v1.5.0 v1.6.0 security.istio.io/v1beta1 n/a istio +Certificate certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Issuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +ClusterIssuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +CertificateRequest certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Order certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Challenge certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Certificate cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +FlowSchema flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +FLowSchema flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemerr: Error: you must use valid semver for all target versions with a leading 'v' - got foo vfoo +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:31.066794 96589 root.go:471] you must use valid semver for all target versions with a leading 'v' - got foo vfoo +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-column-list-to-markdown.result.code: 1 +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-additional-file.__type__: Result +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-semver-with-no-v.result.__len__: 7 +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemerrjson: +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-additional-file-duplicate.result.systemerr: Error: duplicate cannot be added to defaults: Deployment extensions/v1beta1 +Usage: + pluto list-versions [flags] + +Flags: + -h, --help help for list-versions + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:31.295047 96865 root.go:471] duplicate cannot be added to defaults: Deployment extensions/v1beta1 +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Custom-output-with-no-columns-flag.result.err: +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-ojson.result.timeseconds: 0.114045333 +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Custom-output-with-no-columns-flag.result.systemout: +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-column-list-to-custom.result.err: +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-additional-file.result.systemoutjson: +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Custom-output-with-no-columns-flag.result.systemerr: Error: when --output=custom you must specify --columns +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:31.778479 97417 root.go:471] when --output=custom you must specify --columns +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-additional-file.result.err: +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-additional-file.result.code: 0 +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-semver-with-no-v.result.code: 1 +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable venom.testsuite.name: CLI Validation +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable venom.timestamp: 1693938262 +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-ojson.result.code: 0 +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-additional-file-duplicate.result.systemoutjson: +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-column-list-to-markdown.result.systemerr: Error: invalid custom column option FOO - must be one of [NAME FILEPATH NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN COMPONENT REPL AVAIL REPL AVAIL IN] +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:31.637459 97279 root.go:471] invalid custom column option FOO - must be one of [NAME FILEPATH NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN COMPONENT REPL AVAIL REPL AVAIL IN] +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable venom.testsuite.shortName: 03-cli-validation +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-column-list-to-custom.__type__: Result +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-ojson.result.err: +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Custom-output-with-no-columns-flag.result.code: 1 +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-ojson.__type__: Result +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-semver-with-no-v.__type__: Result +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable venom.testsuite: CLI Validation +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-semver-with-no-v.result.err: +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-semver-with-no-v.result.systemout: +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-column-list-to-custom.result.__len__: 7 +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable venom.testcase: no-output-due-to-bad-components-list +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-column-list-to-markdown.result.systemout: +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemout: +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-column-list-to-markdown.result.timeseconds: 0.11196625 +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable venom.libdir: +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Custom-output-with-no-columns-flag.result.timeseconds: 0.13978925 +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-semver-starting-with-v.result.err: +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-additional-file.result.systemerrjson: +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable __Len__: 8 +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-column-list-to-custom.result.systemerr: Error: invalid custom column option FOO - must be one of [NAME FILEPATH NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN COMPONENT REPL AVAIL REPL AVAIL IN] +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:31.524547 97141 root.go:471] invalid custom column option FOO - must be one of [NAME FILEPATH NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN COMPONENT REPL AVAIL REPL AVAIL IN] +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-column-list-to-markdown.__type__: Result +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Custom-output-with-no-columns-flag.__type__: Result +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-semver-starting-with-v.result.timeseconds: 0.113788667 +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-additional-file.result.timeseconds: 0.114097 +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-column-list-to-markdown.result.err: +Sep 5 12:24:31.780 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-additional-file-duplicate.result.systemout: +Sep 5 12:24:31.780 [INFO] [CLI Validation] [no-output-due-to-bad-components-list] Step #0 content is: {"assertions":["result.code ShouldEqual 1","result.systemerr ShouldContainSubstring \"cannot find deprecations for zero components\""],"script":"pluto detect-files -d assets/ --components=foo"} +Sep 5 12:24:31.781 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-2080691575 +Sep 5 12:24:31.781 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-2080691575' +Sep 5 12:24:31.896 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] Error: cannot find deprecations for zero components + +Sep 5 12:24:31.896 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] Usage: + +Sep 5 12:24:31.896 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] pluto detect-files [flags] + +Sep 5 12:24:31.896 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] + +Sep 5 12:24:31.896 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] Flags: + +Sep 5 12:24:31.896 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] -d, --directory string The directory to scan. If blank, defaults to current working dir. + +Sep 5 12:24:31.896 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] -h, --help help for detect-files + +Sep 5 12:24:31.896 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] + +Sep 5 12:24:31.896 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] Global Flags: + +Sep 5 12:24:31.896 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + +Sep 5 12:24:31.896 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + +Sep 5 12:24:31.896 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] --components strings A list of components to run checks for. If nil, will check for all found in versions. + +Sep 5 12:24:31.896 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + +Sep 5 12:24:31.896 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + +Sep 5 12:24:31.896 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + +Sep 5 12:24:31.896 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] --no-footer Disable footer output + +Sep 5 12:24:31.896 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + +Sep 5 12:24:31.896 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + +Sep 5 12:24:31.896 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + +Sep 5 12:24:31.896 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + +Sep 5 12:24:31.896 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] -v, --v Level number for the log level verbosity + +Sep 5 12:24:31.896 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] + +Sep 5 12:24:31.896 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] E0905 12:24:31.896785 97555 root.go:471] cannot find deprecations for zero components + +Sep 5 12:24:31.897 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] result of runTestStepExecutor: {Systemout: SystemoutJSON: Systemerr:Error: cannot find deprecations for zero components +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:31.896785 97555 root.go:471] cannot find deprecations for zero components SystemerrJSON: Err: Code:1 TimeSeconds:0.116291125} +Sep 5 12:24:31.897 [INFO] [CLI Validation] [no-output-due-to-bad-components-list] Ending testcase +Sep 5 12:24:31.897 [INFO] [CLI Validation] Ending testsuite +Sep 5 12:24:31.897 [DEBU] final status: FAIL diff --git a/e2e/venom.1.log b/e2e/venom.1.log new file mode 100644 index 00000000..d16e91e5 --- /dev/null +++ b/e2e/venom.1.log @@ -0,0 +1,4903 @@ +Sep 5 12:25:11.915 [INFO] Reading tests/00_static_files.yaml +Sep 5 12:25:11.917 [INFO] Reading tests/01_helm-detect-3.yaml +Sep 5 12:25:11.918 [INFO] Reading tests/03-cli-validation.yaml +Sep 5 12:25:11.918 [INFO] Parsing testsuite tests/00_static_files.yaml : map[venom.datetime:2023-09-05T12:25:11-06:00 venom.testsuite:Static Code Files (including helm) venom.testsuite.filename:00_static_files.yaml venom.testsuite.filepath:tests/00_static_files.yaml venom.testsuite.name:Static Code Files (including helm) venom.testsuite.shortName:00_static_files venom.testsuite.workdir:/Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests venom.timestamp:1693938311] +Sep 5 12:25:11.923 [DEBU] Testsuite (tests/00_static_files.yaml) variables: map[venom.datetime:2023-09-05T12:25:11-06:00 venom.testsuite:Static Code Files (including helm) venom.testsuite.filename:00_static_files.yaml venom.testsuite.filepath:tests/00_static_files.yaml venom.testsuite.name:Static Code Files (including helm) venom.testsuite.shortName:00_static_files venom.testsuite.workdir:/Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests venom.timestamp:1693938311] +Sep 5 12:25:11.923 [INFO] Parsing testsuite tests/01_helm-detect-3.yaml : map[venom.datetime:2023-09-05T12:25:11-06:00 venom.testsuite:Static Code Files (including helm) venom.testsuite.filename:01_helm-detect-3.yaml venom.testsuite.filepath:tests/01_helm-detect-3.yaml venom.testsuite.name:Static Code Files (including helm) venom.testsuite.shortName:01_helm-detect-3 venom.testsuite.workdir:/Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests venom.timestamp:1693938311] +Sep 5 12:25:11.923 [DEBU] Testsuite (tests/01_helm-detect-3.yaml) variables: map[venom.datetime:2023-09-05T12:25:11-06:00 venom.testsuite:Static Code Files (including helm) venom.testsuite.filename:01_helm-detect-3.yaml venom.testsuite.filepath:tests/01_helm-detect-3.yaml venom.testsuite.name:Static Code Files (including helm) venom.testsuite.shortName:01_helm-detect-3 venom.testsuite.workdir:/Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests venom.timestamp:1693938311] +Sep 5 12:25:11.923 [INFO] Parsing testsuite tests/03-cli-validation.yaml : map[venom.datetime:2023-09-05T12:25:11-06:00 venom.testsuite:CLI Validation venom.testsuite.filename:03-cli-validation.yaml venom.testsuite.filepath:tests/03-cli-validation.yaml venom.testsuite.name:CLI Validation venom.testsuite.shortName:03-cli-validation venom.testsuite.workdir:/Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests venom.timestamp:1693938311] +Sep 5 12:25:11.924 [DEBU] Testsuite (tests/03-cli-validation.yaml) variables: map[venom.datetime:2023-09-05T12:25:11-06:00 venom.testsuite:CLI Validation venom.testsuite.filename:03-cli-validation.yaml venom.testsuite.filepath:tests/03-cli-validation.yaml venom.testsuite.name:CLI Validation venom.testsuite.shortName:03-cli-validation venom.testsuite.workdir:/Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests venom.timestamp:1693938311] +Sep 5 12:25:11.924 [DEBU] nb testsuites: 3 +Sep 5 12:25:11.924 [INFO] [Static Code Files (including helm)] Starting testsuite +Sep 5 12:25:11.924 [INFO] [Static Code Files (including helm)] [static-files] Starting testcase +Sep 5 12:25:11.924 [DEBU] [Static Code Files (including helm)] [static-files] Running testcase with variable __Len__: 8 +Sep 5 12:25:11.924 [DEBU] [Static Code Files (including helm)] [static-files] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:25:11.924 [DEBU] [Static Code Files (including helm)] [static-files] Running testcase with variable venom.testsuite.name: Static Code Files (including helm) +Sep 5 12:25:11.924 [DEBU] [Static Code Files (including helm)] [static-files] Running testcase with variable venom.testsuite.filename: 00_static_files.yaml +Sep 5 12:25:11.924 [DEBU] [Static Code Files (including helm)] [static-files] Running testcase with variable venom.libdir: +Sep 5 12:25:11.924 [DEBU] [Static Code Files (including helm)] [static-files] Running testcase with variable __Type__: Map +Sep 5 12:25:11.924 [DEBU] [Static Code Files (including helm)] [static-files] Running testcase with variable venom.outputdir: +Sep 5 12:25:11.924 [DEBU] [Static Code Files (including helm)] [static-files] Running testcase with variable venom.testsuite.filepath: tests/00_static_files.yaml +Sep 5 12:25:11.924 [DEBU] [Static Code Files (including helm)] [static-files] Running testcase with variable venom.testsuite: Static Code Files (including helm) +Sep 5 12:25:11.924 [DEBU] [Static Code Files (including helm)] [static-files] Running testcase with variable venom.datetime: 2023-09-05T12:25:11-06:00 +Sep 5 12:25:11.924 [DEBU] [Static Code Files (including helm)] [static-files] Running testcase with variable venom.timestamp: 1693938311 +Sep 5 12:25:11.924 [DEBU] [Static Code Files (including helm)] [static-files] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:25:11.924 [DEBU] [Static Code Files (including helm)] [static-files] Running testcase with variable venom.testcase: static-files +Sep 5 12:25:11.924 [DEBU] [Static Code Files (including helm)] [static-files] Running testcase with variable venom.testsuite.shortName: 00_static_files +Sep 5 12:25:11.924 [INFO] [Static Code Files (including helm)] [static-files] Step #0 content is: {"assertions":["result.code ShouldEqual 2","result.systemout ShouldContainSubstring \"NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED\"","result.systemout ShouldContainSubstring \"utilities Deployment extensions/v1beta1 apps/v1 false true\"","result.systemout ShouldNotContainSubstring \"utilities Deployment apps/v1 false false\""],"script":"pluto detect-files -d assets/ --target-versions k8s=v1.15.0"} +Sep 5 12:25:11.925 [DEBU] [Static Code Files (including helm)] [static-files] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-2425679328 +Sep 5 12:25:11.925 [DEBU] [Static Code Files (including helm)] [static-files] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-2425679328' +Sep 5 12:25:12.294 [DEBU] [Static Code Files (including helm)] [static-files] [exec] NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL + +Sep 5 12:25:12.294 [DEBU] [Static Code Files (including helm)] [static-files] [exec] utilities Deployment extensions/v1beta1 apps/v1 false true true + +Sep 5 12:25:12.294 [DEBU] [Static Code Files (including helm)] [static-files] [exec] + +Sep 5 12:25:12.294 [DEBU] [Static Code Files (including helm)] [static-files] [exec] + +Sep 5 12:25:12.294 [DEBU] [Static Code Files (including helm)] [static-files] [exec] Want more? Automate Pluto for free with Fairwinds Insights! + +Sep 5 12:25:12.294 [DEBU] [Static Code Files (including helm)] [static-files] [exec] utilities Deployment extensions/v1beta1 apps/v1 false true true + +Sep 5 12:25:12.294 [DEBU] [Static Code Files (including helm)] [static-files] [exec] + +Sep 5 12:25:12.294 [DEBU] [Static Code Files (including helm)] [static-files] [exec] 🚀 https://fairwinds.com/insights-signup/pluto 🚀 + +Sep 5 12:25:12.295 [DEBU] [Static Code Files (including helm)] [static-files] [exec] result of runTestStepExecutor: {Systemout:NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +utilities Deployment extensions/v1beta1 apps/v1 false true true +utilities Deployment extensions/v1beta1 apps/v1 false true true SystemoutJSON: Systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 SystemerrJSON: Err: Code:2 TimeSeconds:0.370380042} +Sep 5 12:25:12.296 [INFO] [Static Code Files (including helm)] [static-files] Ending testcase +Sep 5 12:25:12.296 [INFO] [Static Code Files (including helm)] [static-files-only-show-removed] Starting testcase +Sep 5 12:25:12.296 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable __Type__: Map +Sep 5 12:25:12.296 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable venom.outputdir: +Sep 5 12:25:12.296 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable venom.testsuite.filepath: tests/00_static_files.yaml +Sep 5 12:25:12.296 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable venom.libdir: +Sep 5 12:25:12.296 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable static-files.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:12.296 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable static-files.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +utilities Deployment extensions/v1beta1 apps/v1 false true true +utilities Deployment extensions/v1beta1 apps/v1 false true true +Sep 5 12:25:12.296 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:25:12.296 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable venom.testsuite.shortName: 00_static_files +Sep 5 12:25:12.296 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable static-files.result.code: 2 +Sep 5 12:25:12.296 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable static-files.__type__: Result +Sep 5 12:25:12.296 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable venom.datetime: 2023-09-05T12:25:11-06:00 +Sep 5 12:25:12.296 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable venom.timestamp: 1693938311 +Sep 5 12:25:12.296 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:25:12.296 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable venom.testsuite.name: Static Code Files (including helm) +Sep 5 12:25:12.296 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable static-files.result.err: +Sep 5 12:25:12.296 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable static-files.result.systemerrjson: +Sep 5 12:25:12.296 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable static-files.result.timeseconds: 0.370380042 +Sep 5 12:25:12.296 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable venom.testsuite: Static Code Files (including helm) +Sep 5 12:25:12.296 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable venom.testsuite.filename: 00_static_files.yaml +Sep 5 12:25:12.296 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable __Len__: 8 +Sep 5 12:25:12.296 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable venom.testcase: static-files-only-show-removed +Sep 5 12:25:12.296 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable static-files.result.systemoutjson: +Sep 5 12:25:12.296 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable static-files.result.__len__: 7 +Sep 5 12:25:12.296 [INFO] [Static Code Files (including helm)] [static-files-only-show-removed] Step #0 content is: {"assertions":["result.code ShouldEqual 0","result.systemout ShouldEqual \"No output to display\""],"script":"pluto detect-files -d assets/ --target-versions k8s=v1.15.0 -r"} +Sep 5 12:25:12.296 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-2838074574 +Sep 5 12:25:12.296 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-2838074574' +Sep 5 12:25:12.318 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] [exec] No output to display + +Sep 5 12:25:12.318 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] [exec] + +Sep 5 12:25:12.318 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] [exec] + +Sep 5 12:25:12.318 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] [exec] Want more? Automate Pluto for free with Fairwinds Insights! + +Sep 5 12:25:12.318 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] [exec] 🚀 https://fairwinds.com/insights-signup/pluto 🚀 + +Sep 5 12:25:12.319 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] [exec] result of runTestStepExecutor: {Systemout:No output to display SystemoutJSON: Systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 SystemerrJSON: Err: Code:0 TimeSeconds:0.022610167} +Sep 5 12:25:12.319 [INFO] [Static Code Files (including helm)] [static-files-only-show-removed] Ending testcase +Sep 5 12:25:12.319 [INFO] [Static Code Files (including helm)] [helm-template] Starting testcase +Sep 5 12:25:12.319 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable __Type__: Map +Sep 5 12:25:12.319 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable venom.testsuite.filename: 00_static_files.yaml +Sep 5 12:25:12.319 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable static-files-only-show-removed.result.systemout: No output to display +Sep 5 12:25:12.319 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable venom.testsuite.filepath: tests/00_static_files.yaml +Sep 5 12:25:12.319 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable venom.testsuite.name: Static Code Files (including helm) +Sep 5 12:25:12.319 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable static-files-only-show-removed.result.code: 0 +Sep 5 12:25:12.319 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable static-files.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +utilities Deployment extensions/v1beta1 apps/v1 false true true +utilities Deployment extensions/v1beta1 apps/v1 false true true +Sep 5 12:25:12.319 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable static-files-only-show-removed.result.systemerrjson: +Sep 5 12:25:12.319 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable static-files-only-show-removed.result.err: +Sep 5 12:25:12.319 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable venom.datetime: 2023-09-05T12:25:11-06:00 +Sep 5 12:25:12.319 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable __Len__: 8 +Sep 5 12:25:12.319 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable static-files.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:12.319 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable static-files.result.systemoutjson: +Sep 5 12:25:12.319 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable static-files-only-show-removed.result.systemoutjson: +Sep 5 12:25:12.319 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable venom.libdir: +Sep 5 12:25:12.319 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:25:12.319 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable static-files-only-show-removed.result.__len__: 7 +Sep 5 12:25:12.319 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable venom.testsuite: Static Code Files (including helm) +Sep 5 12:25:12.319 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:25:12.319 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable venom.outputdir: +Sep 5 12:25:12.319 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable static-files.result.err: +Sep 5 12:25:12.319 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable static-files.result.systemerrjson: +Sep 5 12:25:12.319 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable venom.testcase: helm-template +Sep 5 12:25:12.319 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable static-files.result.timeseconds: 0.370380042 +Sep 5 12:25:12.319 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable static-files-only-show-removed.__type__: Result +Sep 5 12:25:12.319 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable venom.testsuite.shortName: 00_static_files +Sep 5 12:25:12.319 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable static-files-only-show-removed.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:12.319 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable static-files.__type__: Result +Sep 5 12:25:12.319 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable static-files.result.__len__: 7 +Sep 5 12:25:12.319 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable venom.timestamp: 1693938311 +Sep 5 12:25:12.319 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable static-files.result.code: 2 +Sep 5 12:25:12.319 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable static-files-only-show-removed.result.timeseconds: 0.022610167 +Sep 5 12:25:12.319 [INFO] [Static Code Files (including helm)] [helm-template] Step #0 content is: {"assertions":["result.systemout ShouldContainSubstring \"NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED\"","result.systemout ShouldContainSubstring \"release-name-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true\"","result.systemout ShouldNotContainSubstring \"release-name-helm3chart Deployment apps/v1 false false\""],"script":"helm template assets/chart | pluto detect -"} +Sep 5 12:25:12.320 [DEBU] [Static Code Files (including helm)] [helm-template] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-3544531658 +Sep 5 12:25:12.320 [DEBU] [Static Code Files (including helm)] [helm-template] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-3544531658' +Sep 5 12:25:12.568 [DEBU] [Static Code Files (including helm)] [helm-template] [exec] NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL + +Sep 5 12:25:12.568 [DEBU] [Static Code Files (including helm)] [helm-template] [exec] + +Sep 5 12:25:12.568 [DEBU] [Static Code Files (including helm)] [helm-template] [exec] + +Sep 5 12:25:12.568 [DEBU] [Static Code Files (including helm)] [helm-template] [exec] release-name-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true + +Sep 5 12:25:12.569 [DEBU] [Static Code Files (including helm)] [helm-template] [exec] + +Sep 5 12:25:12.569 [DEBU] [Static Code Files (including helm)] [helm-template] [exec] Want more? Automate Pluto for free with Fairwinds Insights! + +Sep 5 12:25:12.569 [DEBU] [Static Code Files (including helm)] [helm-template] [exec] 🚀 https://fairwinds.com/insights-signup/pluto 🚀 + +Sep 5 12:25:12.569 [DEBU] [Static Code Files (including helm)] [helm-template] [exec] result of runTestStepExecutor: {Systemout:NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +release-name-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true SystemoutJSON: Systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 SystemerrJSON: Err: Code:3 TimeSeconds:0.249293417} +Sep 5 12:25:12.569 [INFO] [Static Code Files (including helm)] [helm-template] Ending testcase +Sep 5 12:25:12.569 [INFO] [Static Code Files (including helm)] [static-files-no-deprecated] Starting testcase +Sep 5 12:25:12.569 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable venom.datetime: 2023-09-05T12:25:11-06:00 +Sep 5 12:25:12.569 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable helm-template.result.__len__: 7 +Sep 5 12:25:12.569 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable static-files.result.timeseconds: 0.370380042 +Sep 5 12:25:12.569 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable static-files-only-show-removed.result.systemoutjson: +Sep 5 12:25:12.569 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable helm-template.result.timeseconds: 0.249293417 +Sep 5 12:25:12.569 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable static-files-only-show-removed.result.timeseconds: 0.022610167 +Sep 5 12:25:12.569 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable helm-template.result.systemerrjson: +Sep 5 12:25:12.569 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:25:12.569 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable static-files.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:12.569 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable static-files.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +utilities Deployment extensions/v1beta1 apps/v1 false true true +utilities Deployment extensions/v1beta1 apps/v1 false true true +Sep 5 12:25:12.569 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable static-files-only-show-removed.result.systemout: No output to display +Sep 5 12:25:12.569 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable static-files.result.err: +Sep 5 12:25:12.569 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable static-files-only-show-removed.result.systemerrjson: +Sep 5 12:25:12.569 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable helm-template.__type__: Result +Sep 5 12:25:12.569 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable venom.testsuite: Static Code Files (including helm) +Sep 5 12:25:12.569 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable helm-template.result.err: +Sep 5 12:25:12.569 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable static-files-only-show-removed.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:12.569 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable static-files.result.systemerrjson: +Sep 5 12:25:12.569 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable static-files.__type__: Result +Sep 5 12:25:12.569 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable static-files-only-show-removed.result.__len__: 7 +Sep 5 12:25:12.570 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable helm-template.result.code: 3 +Sep 5 12:25:12.570 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable static-files.result.systemoutjson: +Sep 5 12:25:12.570 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable venom.timestamp: 1693938311 +Sep 5 12:25:12.570 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable venom.libdir: +Sep 5 12:25:12.570 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:25:12.570 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable helm-template.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:12.570 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable static-files.result.code: 2 +Sep 5 12:25:12.570 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable helm-template.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +release-name-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:25:12.570 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable helm-template.result.systemoutjson: +Sep 5 12:25:12.570 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable __Len__: 8 +Sep 5 12:25:12.570 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable venom.testsuite.filename: 00_static_files.yaml +Sep 5 12:25:12.570 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable venom.testsuite.shortName: 00_static_files +Sep 5 12:25:12.570 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable venom.testsuite.filepath: tests/00_static_files.yaml +Sep 5 12:25:12.570 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable venom.testcase: static-files-no-deprecated +Sep 5 12:25:12.570 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable static-files.result.__len__: 7 +Sep 5 12:25:12.570 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable static-files-only-show-removed.result.err: +Sep 5 12:25:12.570 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable static-files-only-show-removed.__type__: Result +Sep 5 12:25:12.570 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable venom.testsuite.name: Static Code Files (including helm) +Sep 5 12:25:12.570 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable __Type__: Map +Sep 5 12:25:12.570 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable venom.outputdir: +Sep 5 12:25:12.570 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable static-files-only-show-removed.result.code: 0 +Sep 5 12:25:12.570 [INFO] [Static Code Files (including helm)] [static-files-no-deprecated] Step #0 content is: {"assertions":["result.code ShouldEqual 0","result.systemout ShouldContainSubstring \"There were no resources found with known deprecated apiVersions.\""],"script":"pluto detect-files -d assets/non-deprecated --target-versions k8s=v1.16.0"} +Sep 5 12:25:12.570 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-1387556699 +Sep 5 12:25:12.570 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-1387556699' +Sep 5 12:25:12.583 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] [exec] + +Sep 5 12:25:12.583 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] [exec] + +Sep 5 12:25:12.583 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] [exec] Want more? Automate Pluto for free with Fairwinds Insights! + +Sep 5 12:25:12.583 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] [exec] 🚀 https://fairwinds.com/insights-signup/pluto 🚀 + +Sep 5 12:25:12.583 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] [exec] There were no resources found with known deprecated apiVersions. + +Sep 5 12:25:12.584 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] [exec] result of runTestStepExecutor: {Systemout:There were no resources found with known deprecated apiVersions. SystemoutJSON: Systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 SystemerrJSON: Err: Code:0 TimeSeconds:0.013603917} +Sep 5 12:25:12.584 [INFO] [Static Code Files (including helm)] [static-files-no-deprecated] Ending testcase +Sep 5 12:25:12.584 [INFO] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Starting testcase +Sep 5 12:25:12.584 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files-only-show-removed.result.__len__: 7 +Sep 5 12:25:12.584 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files.result.timeseconds: 0.370380042 +Sep 5 12:25:12.584 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable helm-template.result.systemerrjson: +Sep 5 12:25:12.584 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files-no-deprecated.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:12.584 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable venom.testsuite: Static Code Files (including helm) +Sep 5 12:25:12.584 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files-no-deprecated.__type__: Result +Sep 5 12:25:12.584 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files-no-deprecated.result.__len__: 7 +Sep 5 12:25:12.584 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files.__type__: Result +Sep 5 12:25:12.584 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files-no-deprecated.result.timeseconds: 0.013603917 +Sep 5 12:25:12.584 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files-only-show-removed.__type__: Result +Sep 5 12:25:12.584 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files-only-show-removed.result.systemout: No output to display +Sep 5 12:25:12.584 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:25:12.584 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable venom.timestamp: 1693938311 +Sep 5 12:25:12.584 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable venom.datetime: 2023-09-05T12:25:11-06:00 +Sep 5 12:25:12.584 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files-no-deprecated.result.err: +Sep 5 12:25:12.584 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:25:12.584 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files-no-deprecated.result.systemerrjson: +Sep 5 12:25:12.584 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files.result.systemerrjson: +Sep 5 12:25:12.584 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable helm-template.result.systemoutjson: +Sep 5 12:25:12.584 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable helm-template.result.__len__: 7 +Sep 5 12:25:12.584 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable helm-template.result.err: +Sep 5 12:25:12.584 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +utilities Deployment extensions/v1beta1 apps/v1 false true true +utilities Deployment extensions/v1beta1 apps/v1 false true true +Sep 5 12:25:12.584 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files-only-show-removed.result.err: +Sep 5 12:25:12.584 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable venom.testsuite.shortName: 00_static_files +Sep 5 12:25:12.584 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable venom.testsuite.filepath: tests/00_static_files.yaml +Sep 5 12:25:12.584 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable __Type__: Map +Sep 5 12:25:12.584 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable venom.libdir: +Sep 5 12:25:12.584 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable helm-template.result.timeseconds: 0.249293417 +Sep 5 12:25:12.584 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files.result.err: +Sep 5 12:25:12.584 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files.result.__len__: 7 +Sep 5 12:25:12.584 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files-only-show-removed.result.code: 0 +Sep 5 12:25:12.584 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable helm-template.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:12.584 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable helm-template.__type__: Result +Sep 5 12:25:12.584 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable __Len__: 8 +Sep 5 12:25:12.584 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable venom.testcase: static-files-target-v1-8-0-not-removed-or-deprecated +Sep 5 12:25:12.584 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files-only-show-removed.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:12.584 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files-no-deprecated.result.systemoutjson: +Sep 5 12:25:12.584 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:12.584 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable venom.testsuite.filename: 00_static_files.yaml +Sep 5 12:25:12.584 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files-no-deprecated.result.systemout: There were no resources found with known deprecated apiVersions. +Sep 5 12:25:12.584 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files.result.systemoutjson: +Sep 5 12:25:12.584 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files-only-show-removed.result.systemoutjson: +Sep 5 12:25:12.584 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files.result.code: 2 +Sep 5 12:25:12.584 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files-only-show-removed.result.systemerrjson: +Sep 5 12:25:12.584 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable venom.outputdir: +Sep 5 12:25:12.584 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable helm-template.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +release-name-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:25:12.584 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable helm-template.result.code: 3 +Sep 5 12:25:12.584 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files-no-deprecated.result.code: 0 +Sep 5 12:25:12.584 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable venom.testsuite.name: Static Code Files (including helm) +Sep 5 12:25:12.584 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files-only-show-removed.result.timeseconds: 0.022610167 +Sep 5 12:25:12.584 [INFO] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Step #0 content is: {"assertions":["result.code ShouldEqual 0","result.systemout ShouldContainSubstring \"No output to display\""],"script":"pluto detect-files -d assets/deprecated116 --target-versions k8s=v1.8.0"} +Sep 5 12:25:12.584 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-710636800 +Sep 5 12:25:12.584 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-710636800' +Sep 5 12:25:12.597 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] [exec] + +Sep 5 12:25:12.597 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] [exec] + +Sep 5 12:25:12.597 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] [exec] Want more? Automate Pluto for free with Fairwinds Insights! + +Sep 5 12:25:12.597 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] [exec] 🚀 https://fairwinds.com/insights-signup/pluto 🚀 + +Sep 5 12:25:12.597 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] [exec] No output to display + +Sep 5 12:25:12.598 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] [exec] result of runTestStepExecutor: {Systemout:No output to display SystemoutJSON: Systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 SystemerrJSON: Err: Code:0 TimeSeconds:0.013563958} +Sep 5 12:25:12.598 [INFO] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Ending testcase +Sep 5 12:25:12.598 [INFO] [Static Code Files (including helm)] [static-files-wide] Starting testcase +Sep 5 12:25:12.598 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable venom.testsuite.filepath: tests/00_static_files.yaml +Sep 5 12:25:12.598 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-only-show-removed.result.systemerrjson: +Sep 5 12:25:12.598 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable helm-template.result.__len__: 7 +Sep 5 12:25:12.598 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable helm-template.result.err: +Sep 5 12:25:12.598 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-only-show-removed.result.systemout: No output to display +Sep 5 12:25:12.598 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.err: +Sep 5 12:25:12.598 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-no-deprecated.result.systemoutjson: +Sep 5 12:25:12.598 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable helm-template.__type__: Result +Sep 5 12:25:12.598 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable venom.timestamp: 1693938311 +Sep 5 12:25:12.598 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.__type__: Result +Sep 5 12:25:12.598 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-no-deprecated.result.code: 0 +Sep 5 12:25:12.598 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable venom.testsuite.shortName: 00_static_files +Sep 5 12:25:12.598 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable __Len__: 8 +Sep 5 12:25:12.598 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:25:12.598 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-no-deprecated.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:12.598 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-no-deprecated.__type__: Result +Sep 5 12:25:12.598 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-only-show-removed.result.timeseconds: 0.022610167 +Sep 5 12:25:12.598 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable helm-template.result.timeseconds: 0.249293417 +Sep 5 12:25:12.598 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable venom.testsuite: Static Code Files (including helm) +Sep 5 12:25:12.598 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:25:12.598 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable venom.testsuite.filename: 00_static_files.yaml +Sep 5 12:25:12.598 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-only-show-removed.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:12.598 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +utilities Deployment extensions/v1beta1 apps/v1 false true true +utilities Deployment extensions/v1beta1 apps/v1 false true true +Sep 5 12:25:12.598 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-only-show-removed.result.__len__: 7 +Sep 5 12:25:12.598 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable helm-template.result.systemoutjson: +Sep 5 12:25:12.598 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable venom.testsuite.name: Static Code Files (including helm) +Sep 5 12:25:12.598 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files.result.systemoutjson: +Sep 5 12:25:12.598 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable venom.libdir: +Sep 5 12:25:12.598 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable venom.datetime: 2023-09-05T12:25:11-06:00 +Sep 5 12:25:12.598 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-only-show-removed.result.systemoutjson: +Sep 5 12:25:12.598 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-only-show-removed.result.code: 0 +Sep 5 12:25:12.598 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable helm-template.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:12.598 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.code: 0 +Sep 5 12:25:12.598 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable __Type__: Map +Sep 5 12:25:12.598 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable helm-template.result.systemerrjson: +Sep 5 12:25:12.598 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-no-deprecated.result.systemerrjson: +Sep 5 12:25:12.598 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-only-show-removed.__type__: Result +Sep 5 12:25:12.598 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable helm-template.result.code: 3 +Sep 5 12:25:12.598 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files.result.code: 2 +Sep 5 12:25:12.598 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable venom.testcase: static-files-wide +Sep 5 12:25:12.598 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files.result.__len__: 7 +Sep 5 12:25:12.598 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files.result.systemerrjson: +Sep 5 12:25:12.598 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-no-deprecated.result.err: +Sep 5 12:25:12.598 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-only-show-removed.result.err: +Sep 5 12:25:12.598 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable helm-template.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +release-name-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:25:12.598 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files.result.err: +Sep 5 12:25:12.598 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable venom.outputdir: +Sep 5 12:25:12.598 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:12.598 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files.__type__: Result +Sep 5 12:25:12.598 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-no-deprecated.result.systemout: There were no resources found with known deprecated apiVersions. +Sep 5 12:25:12.598 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files.result.timeseconds: 0.370380042 +Sep 5 12:25:12.598 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemoutjson: +Sep 5 12:25:12.598 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:12.598 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemout: No output to display +Sep 5 12:25:12.598 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-no-deprecated.result.timeseconds: 0.013603917 +Sep 5 12:25:12.598 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-no-deprecated.result.__len__: 7 +Sep 5 12:25:12.598 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.timeseconds: 0.013563958 +Sep 5 12:25:12.598 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemerrjson: +Sep 5 12:25:12.598 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.__len__: 7 +Sep 5 12:25:12.598 [INFO] [Static Code Files (including helm)] [static-files-wide] Step #0 content is: {"assertions":["result.code ShouldEqual 3","result.systemout ShouldContainSubstring \"NAME NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN\"","result.systemout ShouldContainSubstring \"utilities \u003cUNKNOWN\u003e Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0\""],"script":"pluto detect-files -d assets/ -owide"} +Sep 5 12:25:12.599 [DEBU] [Static Code Files (including helm)] [static-files-wide] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-3973381676 +Sep 5 12:25:12.599 [DEBU] [Static Code Files (including helm)] [static-files-wide] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-3973381676' +Sep 5 12:25:12.613 [DEBU] [Static Code Files (including helm)] [static-files-wide] [exec] NAME NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN REPL AVAIL REPL AVAIL IN + +Sep 5 12:25:12.613 [DEBU] [Static Code Files (including helm)] [static-files-wide] [exec] utilities Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 + +Sep 5 12:25:12.613 [DEBU] [Static Code Files (including helm)] [static-files-wide] [exec] utilities Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 + +Sep 5 12:25:12.613 [DEBU] [Static Code Files (including helm)] [static-files-wide] [exec] + +Sep 5 12:25:12.613 [DEBU] [Static Code Files (including helm)] [static-files-wide] [exec] + +Sep 5 12:25:12.613 [DEBU] [Static Code Files (including helm)] [static-files-wide] [exec] + +Sep 5 12:25:12.613 [DEBU] [Static Code Files (including helm)] [static-files-wide] [exec] Want more? Automate Pluto for free with Fairwinds Insights! + +Sep 5 12:25:12.613 [DEBU] [Static Code Files (including helm)] [static-files-wide] [exec] 🚀 https://fairwinds.com/insights-signup/pluto 🚀 + +Sep 5 12:25:12.613 [DEBU] [Static Code Files (including helm)] [static-files-wide] [exec] result of runTestStepExecutor: {Systemout:NAME NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN REPL AVAIL REPL AVAIL IN +utilities Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 +utilities Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 SystemoutJSON: Systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 SystemerrJSON: Err: Code:3 TimeSeconds:0.014427917} +Sep 5 12:25:12.615 [INFO] [Static Code Files (including helm)] [static-files-wide] Ending testcase +Sep 5 12:25:12.615 [INFO] [Static Code Files (including helm)] [static-files-custom] Starting testcase +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable venom.testsuite.filename: 00_static_files.yaml +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable venom.datetime: 2023-09-05T12:25:11-06:00 +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files.result.code: 2 +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable helm-template.result.systemerrjson: +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +utilities Deployment extensions/v1beta1 apps/v1 false true true +utilities Deployment extensions/v1beta1 apps/v1 false true true +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-no-deprecated.result.err: +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-wide.result.code: 3 +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemerrjson: +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-only-show-removed.__type__: Result +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files.result.timeseconds: 0.370380042 +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-no-deprecated.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable helm-template.result.err: +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable venom.testsuite.name: Static Code Files (including helm) +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable venom.testsuite.filepath: tests/00_static_files.yaml +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-wide.result.systemoutjson: +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-wide.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable helm-template.result.__len__: 7 +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files.result.err: +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-no-deprecated.__type__: Result +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable helm-template.result.systemoutjson: +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.err: +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-only-show-removed.result.code: 0 +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files.__type__: Result +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemout: No output to display +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable venom.outputdir: +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable __Type__: Map +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable venom.testcase: static-files-custom +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemoutjson: +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files.result.systemoutjson: +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable venom.testsuite: Static Code Files (including helm) +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-wide.result.__len__: 7 +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-wide.result.systemout: NAME NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN REPL AVAIL REPL AVAIL IN +utilities Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 +utilities Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-no-deprecated.result.systemout: There were no resources found with known deprecated apiVersions. +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-wide.result.systemerrjson: +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable helm-template.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +release-name-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-wide.__type__: Result +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.__type__: Result +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable helm-template.result.code: 3 +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable venom.timestamp: 1693938311 +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable venom.testsuite.shortName: 00_static_files +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-only-show-removed.result.__len__: 7 +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-wide.result.err: +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-only-show-removed.result.systemoutjson: +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.code: 0 +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-only-show-removed.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable venom.libdir: +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.__len__: 7 +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable helm-template.result.timeseconds: 0.249293417 +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-no-deprecated.result.code: 0 +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-no-deprecated.result.timeseconds: 0.013603917 +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-only-show-removed.result.timeseconds: 0.022610167 +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-only-show-removed.result.err: +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable __Len__: 8 +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-wide.result.timeseconds: 0.014427917 +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files.result.systemerrjson: +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-only-show-removed.result.systemerrjson: +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files.result.__len__: 7 +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-no-deprecated.result.systemoutjson: +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-only-show-removed.result.systemout: No output to display +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable helm-template.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-no-deprecated.result.systemerrjson: +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-no-deprecated.result.__len__: 7 +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable helm-template.__type__: Result +Sep 5 12:25:12.615 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.timeseconds: 0.013563958 +Sep 5 12:25:12.615 [INFO] [Static Code Files (including helm)] [static-files-custom] Step #0 content is: {"assertions":["result.code ShouldEqual 3","result.systemout ShouldContainSubstring \"NAME NAMESPACE VERSION KIND DEPRECATED DEPRECATED IN COMPONENT\"","result.systemout ShouldContainSubstring \"utilities \u003cUNKNOWN\u003e extensions/v1beta1 Deployment true v1.9.0 k8s\""],"script":"pluto detect-files -d assets/ -o custom --columns \"NAME,NAMESPACE,VERSION,KIND,DEPRECATED,DEPRECATED IN,component\""} +Sep 5 12:25:12.616 [DEBU] [Static Code Files (including helm)] [static-files-custom] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-1911906020 +Sep 5 12:25:12.616 [DEBU] [Static Code Files (including helm)] [static-files-custom] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-1911906020' +Sep 5 12:25:12.630 [DEBU] [Static Code Files (including helm)] [static-files-custom] [exec] + +Sep 5 12:25:12.630 [DEBU] [Static Code Files (including helm)] [static-files-custom] [exec] + +Sep 5 12:25:12.630 [DEBU] [Static Code Files (including helm)] [static-files-custom] [exec] Want more? Automate Pluto for free with Fairwinds Insights! + +Sep 5 12:25:12.630 [DEBU] [Static Code Files (including helm)] [static-files-custom] [exec] 🚀 https://fairwinds.com/insights-signup/pluto 🚀 + +Sep 5 12:25:12.630 [DEBU] [Static Code Files (including helm)] [static-files-custom] [exec] NAME NAMESPACE VERSION KIND DEPRECATED DEPRECATED IN COMPONENT + +Sep 5 12:25:12.630 [DEBU] [Static Code Files (including helm)] [static-files-custom] [exec] utilities extensions/v1beta1 Deployment true v1.9.0 k8s + +Sep 5 12:25:12.630 [DEBU] [Static Code Files (including helm)] [static-files-custom] [exec] utilities extensions/v1beta1 Deployment true v1.9.0 k8s + +Sep 5 12:25:12.630 [DEBU] [Static Code Files (including helm)] [static-files-custom] [exec] + +Sep 5 12:25:12.630 [DEBU] [Static Code Files (including helm)] [static-files-custom] [exec] result of runTestStepExecutor: {Systemout:NAME NAMESPACE VERSION KIND DEPRECATED DEPRECATED IN COMPONENT +utilities extensions/v1beta1 Deployment true v1.9.0 k8s +utilities extensions/v1beta1 Deployment true v1.9.0 k8s SystemoutJSON: Systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 SystemerrJSON: Err: Code:3 TimeSeconds:0.014516958} +Sep 5 12:25:12.631 [INFO] [Static Code Files (including helm)] [static-files-custom] Ending testcase +Sep 5 12:25:12.631 [INFO] [Static Code Files (including helm)] [static-files-show-file-path] Starting testcase +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-only-show-removed.result.systemerrjson: +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files.result.systemoutjson: +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-no-deprecated.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-custom.result.systemerrjson: +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable venom.testcase: static-files-show-file-path +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files.__type__: Result +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-custom.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable venom.testsuite.name: Static Code Files (including helm) +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable helm-template.__type__: Result +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-wide.result.__len__: 7 +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files.result.timeseconds: 0.370380042 +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files.result.__len__: 7 +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-only-show-removed.result.timeseconds: 0.022610167 +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files.result.err: +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-only-show-removed.result.err: +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-no-deprecated.result.code: 0 +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.code: 0 +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-wide.result.systemoutjson: +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-custom.result.__len__: 7 +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.err: +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.__len__: 7 +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-wide.result.err: +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-wide.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-custom.result.systemoutjson: +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable venom.libdir: +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-only-show-removed.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-no-deprecated.result.__len__: 7 +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable venom.testsuite: Static Code Files (including helm) +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable helm-template.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable helm-template.result.timeseconds: 0.249293417 +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-wide.result.timeseconds: 0.014427917 +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable venom.outputdir: +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable helm-template.result.err: +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable helm-template.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +release-name-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable helm-template.result.code: 3 +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable venom.testsuite.filename: 00_static_files.yaml +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-wide.result.code: 3 +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-only-show-removed.result.code: 0 +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable helm-template.result.systemerrjson: +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-no-deprecated.result.timeseconds: 0.013603917 +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-custom.result.timeseconds: 0.014516958 +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-only-show-removed.result.systemoutjson: +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-only-show-removed.__type__: Result +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-wide.result.systemerrjson: +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable venom.testsuite.shortName: 00_static_files +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-no-deprecated.result.err: +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemout: No output to display +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable helm-template.result.__len__: 7 +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemerrjson: +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.__type__: Result +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-no-deprecated.__type__: Result +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable venom.testsuite.filepath: tests/00_static_files.yaml +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable __Type__: Map +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable venom.timestamp: 1693938311 +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-custom.result.err: +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files.result.systemerrjson: +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-no-deprecated.result.systemerrjson: +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-custom.result.systemout: NAME NAMESPACE VERSION KIND DEPRECATED DEPRECATED IN COMPONENT +utilities extensions/v1beta1 Deployment true v1.9.0 k8s +utilities extensions/v1beta1 Deployment true v1.9.0 k8s +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-only-show-removed.result.systemout: No output to display +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-wide.__type__: Result +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemoutjson: +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +utilities Deployment extensions/v1beta1 apps/v1 false true true +utilities Deployment extensions/v1beta1 apps/v1 false true true +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-custom.__type__: Result +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-no-deprecated.result.systemoutjson: +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-custom.result.code: 3 +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.timeseconds: 0.013563958 +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files.result.code: 2 +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-wide.result.systemout: NAME NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN REPL AVAIL REPL AVAIL IN +utilities Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 +utilities Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable venom.datetime: 2023-09-05T12:25:11-06:00 +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable __Len__: 8 +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-only-show-removed.result.__len__: 7 +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable helm-template.result.systemoutjson: +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-no-deprecated.result.systemout: There were no resources found with known deprecated apiVersions. +Sep 5 12:25:12.631 [INFO] [Static Code Files (including helm)] [static-files-show-file-path] Step #0 content is: {"assertions":["result.code ShouldEqual 3","result.systemout ShouldContainSubstring \"FILEPATH\"","result.systemout ShouldContainSubstring \"tests/assets/deprecated116/deployment-extensions-v1beta1.yaml\""],"script":"pluto detect-files -d assets/ -o custom --columns \"filepath\""} +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-3077176009 +Sep 5 12:25:12.631 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-3077176009' +Sep 5 12:25:12.645 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] [exec] FILEPATH + +Sep 5 12:25:12.645 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] [exec] /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests/assets/deprecated116/deployment-extensions-v1beta1.yaml + +Sep 5 12:25:12.645 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] [exec] /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests/assets/list/list-deployment-deprecated-and-non-deprecated.yaml + +Sep 5 12:25:12.645 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] [exec] + +Sep 5 12:25:12.645 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] [exec] + +Sep 5 12:25:12.645 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] [exec] + +Sep 5 12:25:12.645 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] [exec] Want more? Automate Pluto for free with Fairwinds Insights! + +Sep 5 12:25:12.645 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] [exec] 🚀 https://fairwinds.com/insights-signup/pluto 🚀 + +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] [exec] result of runTestStepExecutor: {Systemout:FILEPATH +/Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests/assets/deprecated116/deployment-extensions-v1beta1.yaml +/Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests/assets/list/list-deployment-deprecated-and-non-deprecated.yaml SystemoutJSON: Systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 SystemerrJSON: Err: Code:3 TimeSeconds:0.01446125} +Sep 5 12:25:12.646 [INFO] [Static Code Files (including helm)] [static-files-show-file-path] Ending testcase +Sep 5 12:25:12.646 [INFO] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Starting testcase +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.code: 0 +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-show-file-path.result.err: +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-custom.result.err: +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable venom.testsuite.shortName: 00_static_files +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable venom.libdir: +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-wide.result.systemerrjson: +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files.result.systemerrjson: +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-no-deprecated.result.systemoutjson: +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-only-show-removed.result.err: +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files.result.timeseconds: 0.370380042 +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable helm-template.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +release-name-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-only-show-removed.result.systemoutjson: +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-only-show-removed.result.systemout: No output to display +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-custom.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +utilities Deployment extensions/v1beta1 apps/v1 false true true +utilities Deployment extensions/v1beta1 apps/v1 false true true +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-no-deprecated.__type__: Result +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable __Type__: Map +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files.result.__len__: 7 +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable helm-template.result.__len__: 7 +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-no-deprecated.result.err: +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable helm-template.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable helm-template.result.timeseconds: 0.249293417 +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable venom.testsuite.filepath: tests/00_static_files.yaml +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-show-file-path.result.code: 3 +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-wide.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-only-show-removed.result.__len__: 7 +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable helm-template.result.systemoutjson: +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-wide.result.__len__: 7 +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-wide.result.systemout: NAME NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN REPL AVAIL REPL AVAIL IN +utilities Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 +utilities Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.timeseconds: 0.013563958 +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-no-deprecated.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-wide.result.systemoutjson: +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-only-show-removed.result.timeseconds: 0.022610167 +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-custom.result.__len__: 7 +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-wide.result.timeseconds: 0.014427917 +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-show-file-path.result.systemout: FILEPATH +/Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests/assets/deprecated116/deployment-extensions-v1beta1.yaml +/Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests/assets/list/list-deployment-deprecated-and-non-deprecated.yaml +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable venom.outputdir: +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable venom.timestamp: 1693938311 +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable venom.testsuite.name: Static Code Files (including helm) +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-show-file-path.result.systemoutjson: +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-only-show-removed.result.systemerrjson: +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-custom.__type__: Result +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.__len__: 7 +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemoutjson: +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-no-deprecated.result.systemerrjson: +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable venom.datetime: 2023-09-05T12:25:11-06:00 +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-custom.result.systemerrjson: +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable helm-template.result.err: +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files.result.err: +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-show-file-path.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-no-deprecated.result.systemout: There were no resources found with known deprecated apiVersions. +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable venom.testcase: static-files-no-output-due-to-no-matching-components +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-custom.result.systemoutjson: +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-show-file-path.__type__: Result +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemerrjson: +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable helm-template.__type__: Result +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-no-deprecated.result.__len__: 7 +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-only-show-removed.result.code: 0 +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable helm-template.result.code: 3 +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.err: +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-show-file-path.result.systemerrjson: +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.__type__: Result +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemout: No output to display +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-wide.result.err: +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable venom.testsuite: Static Code Files (including helm) +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-only-show-removed.__type__: Result +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-only-show-removed.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-wide.__type__: Result +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files.result.code: 2 +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-custom.result.systemout: NAME NAMESPACE VERSION KIND DEPRECATED DEPRECATED IN COMPONENT +utilities extensions/v1beta1 Deployment true v1.9.0 k8s +utilities extensions/v1beta1 Deployment true v1.9.0 k8s +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-wide.result.code: 3 +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-custom.result.timeseconds: 0.014516958 +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable venom.testsuite.filename: 00_static_files.yaml +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files.result.systemoutjson: +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-no-deprecated.result.code: 0 +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-no-deprecated.result.timeseconds: 0.013603917 +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files.__type__: Result +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable __Len__: 8 +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-show-file-path.result.timeseconds: 0.01446125 +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-custom.result.code: 3 +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable helm-template.result.systemerrjson: +Sep 5 12:25:12.646 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-show-file-path.result.__len__: 7 +Sep 5 12:25:12.647 [INFO] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Step #0 content is: {"assertions":["result.code ShouldEqual 0","result.systemout ShouldEqual \"No output to display\""],"script":"pluto detect-files -d assets/ --components=istio"} +Sep 5 12:25:12.647 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-1718060834 +Sep 5 12:25:12.647 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-1718060834' +Sep 5 12:25:12.661 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] [exec] No output to display + +Sep 5 12:25:12.661 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] [exec] + +Sep 5 12:25:12.661 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] [exec] + +Sep 5 12:25:12.661 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] [exec] Want more? Automate Pluto for free with Fairwinds Insights! + +Sep 5 12:25:12.661 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] [exec] 🚀 https://fairwinds.com/insights-signup/pluto 🚀 + +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] [exec] result of runTestStepExecutor: {Systemout:No output to display SystemoutJSON: Systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 SystemerrJSON: Err: Code:0 TimeSeconds:0.014431708} +Sep 5 12:25:12.662 [INFO] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Ending testcase +Sep 5 12:25:12.662 [INFO] [Static Code Files (including helm)] [static-files-in-a-List] Starting testcase +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-only-show-removed.result.systemoutjson: +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-no-deprecated.result.timeseconds: 0.013603917 +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemoutjson: +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-show-file-path.result.err: +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-show-file-path.result.systemout: FILEPATH +/Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests/assets/deprecated116/deployment-extensions-v1beta1.yaml +/Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests/assets/list/list-deployment-deprecated-and-non-deprecated.yaml +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-no-deprecated.__type__: Result +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-no-output-due-to-no-matching-components.result.code: 0 +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-only-show-removed.result.timeseconds: 0.022610167 +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.err: +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-only-show-removed.result.code: 0 +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-show-file-path.result.systemerrjson: +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable venom.testsuite: Static Code Files (including helm) +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable __Type__: Map +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-show-file-path.result.__len__: 7 +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable helm-template.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-show-file-path.result.timeseconds: 0.01446125 +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-custom.result.systemerrjson: +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-custom.__type__: Result +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable helm-template.result.systemerrjson: +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-show-file-path.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-no-deprecated.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-no-deprecated.result.systemoutjson: +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-custom.result.code: 3 +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-custom.result.timeseconds: 0.014516958 +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-wide.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-no-output-due-to-no-matching-components.result.systemoutjson: +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.__len__: 7 +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable helm-template.result.err: +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-only-show-removed.result.systemerrjson: +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemout: No output to display +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-wide.result.__len__: 7 +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable venom.testcase: static-files-in-a-List +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-wide.result.err: +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-no-deprecated.result.code: 0 +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable venom.testsuite.filename: 00_static_files.yaml +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-no-output-due-to-no-matching-components.result.timeseconds: 0.014431708 +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-no-output-due-to-no-matching-components.result.systemerrjson: +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-no-output-due-to-no-matching-components.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable venom.libdir: +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files.__type__: Result +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-custom.result.systemout: NAME NAMESPACE VERSION KIND DEPRECATED DEPRECATED IN COMPONENT +utilities extensions/v1beta1 Deployment true v1.9.0 k8s +utilities extensions/v1beta1 Deployment true v1.9.0 k8s +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable helm-template.result.systemoutjson: +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-wide.__type__: Result +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files.result.code: 2 +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-wide.result.timeseconds: 0.014427917 +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files.result.systemoutjson: +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-no-output-due-to-no-matching-components.__type__: Result +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files.result.__len__: 7 +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-show-file-path.result.code: 3 +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.timeseconds: 0.013563958 +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable helm-template.result.__len__: 7 +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable helm-template.result.timeseconds: 0.249293417 +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable venom.testsuite.name: Static Code Files (including helm) +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable venom.outputdir: +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable helm-template.result.code: 3 +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-wide.result.systemerrjson: +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-wide.result.systemoutjson: +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable helm-template.__type__: Result +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable venom.datetime: 2023-09-05T12:25:11-06:00 +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-show-file-path.result.systemoutjson: +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-no-output-due-to-no-matching-components.result.systemout: No output to display +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemerrjson: +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-no-output-due-to-no-matching-components.result.err: +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-no-deprecated.result.err: +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-only-show-removed.result.__len__: 7 +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable helm-template.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +release-name-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-only-show-removed.result.systemout: No output to display +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-no-deprecated.result.systemout: There were no resources found with known deprecated apiVersions. +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-custom.result.systemoutjson: +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.code: 0 +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-wide.result.systemout: NAME NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN REPL AVAIL REPL AVAIL IN +utilities Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 +utilities Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-no-output-due-to-no-matching-components.result.__len__: 7 +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-show-file-path.__type__: Result +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files.result.systemerrjson: +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-no-deprecated.result.__len__: 7 +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-only-show-removed.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-wide.result.code: 3 +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-custom.result.__len__: 7 +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable venom.timestamp: 1693938311 +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +utilities Deployment extensions/v1beta1 apps/v1 false true true +utilities Deployment extensions/v1beta1 apps/v1 false true true +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-only-show-removed.result.err: +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable venom.testsuite.filepath: tests/00_static_files.yaml +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-only-show-removed.__type__: Result +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files.result.timeseconds: 0.370380042 +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-custom.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files.result.err: +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable __Len__: 8 +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable venom.testsuite.shortName: 00_static_files +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.__type__: Result +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-no-deprecated.result.systemerrjson: +Sep 5 12:25:12.662 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-custom.result.err: +Sep 5 12:25:12.662 [INFO] [Static Code Files (including helm)] [static-files-in-a-List] Step #0 content is: {"assertions":["result.code ShouldEqual 2","result.systemout ShouldContainSubstring \"NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED\"","result.systemout ShouldContainSubstring \"utilities Deployment extensions/v1beta1 apps/v1 false true\"","result.systemout ShouldNotContainSubstring \"utilities Deployment apps/v1 false false\""],"script":"pluto detect-files -d assets/list --target-versions k8s=v1.15.0"} +Sep 5 12:25:12.663 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-3532233887 +Sep 5 12:25:12.663 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-3532233887' +Sep 5 12:25:12.676 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] [exec] NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL + +Sep 5 12:25:12.676 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] [exec] utilities Deployment extensions/v1beta1 apps/v1 false true true + +Sep 5 12:25:12.676 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] [exec] + +Sep 5 12:25:12.676 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] [exec] + +Sep 5 12:25:12.676 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] [exec] Want more? Automate Pluto for free with Fairwinds Insights! + +Sep 5 12:25:12.676 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] [exec] 🚀 https://fairwinds.com/insights-signup/pluto 🚀 + +Sep 5 12:25:12.676 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] [exec] + +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] [exec] result of runTestStepExecutor: {Systemout:NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +utilities Deployment extensions/v1beta1 apps/v1 false true true SystemoutJSON: Systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 SystemerrJSON: Err: Code:2 TimeSeconds:0.013655083} +Sep 5 12:25:12.677 [INFO] [Static Code Files (including helm)] [static-files-in-a-List] Ending testcase +Sep 5 12:25:12.677 [INFO] [Static Code Files (including helm)] [exit-code-three-for-single-file] Starting testcase +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-only-show-removed.result.err: +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable venom.outputdir: +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-only-show-removed.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable helm-template.result.__len__: 7 +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-only-show-removed.result.systemout: No output to display +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-no-output-due-to-no-matching-components.result.code: 0 +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files.result.__len__: 7 +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-no-output-due-to-no-matching-components.result.systemerrjson: +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable helm-template.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-no-deprecated.result.systemout: There were no resources found with known deprecated apiVersions. +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-show-file-path.result.code: 3 +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable venom.testsuite.filepath: tests/00_static_files.yaml +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable venom.testcase: exit-code-three-for-single-file +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable helm-template.result.err: +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-custom.result.systemout: NAME NAMESPACE VERSION KIND DEPRECATED DEPRECATED IN COMPONENT +utilities extensions/v1beta1 Deployment true v1.9.0 k8s +utilities extensions/v1beta1 Deployment true v1.9.0 k8s +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-custom.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files.result.timeseconds: 0.370380042 +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-custom.result.systemerrjson: +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-in-a-List.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-no-deprecated.result.err: +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-no-output-due-to-no-matching-components.result.__len__: 7 +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-show-file-path.result.systemerrjson: +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files.result.systemerrjson: +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-custom.result.code: 3 +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-only-show-removed.result.__len__: 7 +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-wide.result.err: +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-in-a-List.__type__: Result +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable __Len__: 8 +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-show-file-path.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-no-output-due-to-no-matching-components.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-wide.result.systemout: NAME NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN REPL AVAIL REPL AVAIL IN +utilities Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 +utilities Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable helm-template.result.code: 3 +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable helm-template.result.systemerrjson: +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +utilities Deployment extensions/v1beta1 apps/v1 false true true +utilities Deployment extensions/v1beta1 apps/v1 false true true +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-no-output-due-to-no-matching-components.result.systemout: No output to display +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-no-deprecated.result.code: 0 +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.timeseconds: 0.013563958 +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-custom.result.__len__: 7 +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-in-a-List.result.systemerrjson: +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable venom.libdir: +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable venom.testsuite.shortName: 00_static_files +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-no-deprecated.result.systemoutjson: +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemerrjson: +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.__len__: 7 +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files.result.code: 2 +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-in-a-List.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +utilities Deployment extensions/v1beta1 apps/v1 false true true +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-no-deprecated.result.__len__: 7 +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable helm-template.result.systemoutjson: +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-wide.__type__: Result +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-no-output-due-to-no-matching-components.result.err: +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-wide.result.timeseconds: 0.014427917 +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files.result.systemoutjson: +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-no-deprecated.result.timeseconds: 0.013603917 +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.err: +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-in-a-List.result.timeseconds: 0.013655083 +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-only-show-removed.__type__: Result +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.code: 0 +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-no-output-due-to-no-matching-components.__type__: Result +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable venom.datetime: 2023-09-05T12:25:11-06:00 +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable venom.testsuite.filename: 00_static_files.yaml +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-wide.result.systemoutjson: +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-only-show-removed.result.systemerrjson: +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-wide.result.__len__: 7 +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-only-show-removed.result.systemoutjson: +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-show-file-path.result.systemoutjson: +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-show-file-path.__type__: Result +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable venom.testsuite.name: Static Code Files (including helm) +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-only-show-removed.result.code: 0 +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-no-output-due-to-no-matching-components.result.timeseconds: 0.014431708 +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-custom.result.err: +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-show-file-path.result.__len__: 7 +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-in-a-List.result.code: 2 +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-in-a-List.result.__len__: 7 +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-in-a-List.result.systemoutjson: +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.__type__: Result +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-no-deprecated.__type__: Result +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable venom.testsuite: Static Code Files (including helm) +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-no-output-due-to-no-matching-components.result.systemoutjson: +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable helm-template.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +release-name-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-custom.result.timeseconds: 0.014516958 +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-show-file-path.result.err: +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-custom.result.systemoutjson: +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-wide.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable helm-template.result.timeseconds: 0.249293417 +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files.result.err: +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable helm-template.__type__: Result +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemout: No output to display +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-no-deprecated.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-show-file-path.result.systemout: FILEPATH +/Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests/assets/deprecated116/deployment-extensions-v1beta1.yaml +/Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests/assets/list/list-deployment-deprecated-and-non-deprecated.yaml +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-wide.result.systemerrjson: +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable venom.timestamp: 1693938311 +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-custom.__type__: Result +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files.__type__: Result +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-only-show-removed.result.timeseconds: 0.022610167 +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemoutjson: +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-show-file-path.result.timeseconds: 0.01446125 +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable __Type__: Map +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-in-a-List.result.err: +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-wide.result.code: 3 +Sep 5 12:25:12.677 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-no-deprecated.result.systemerrjson: +Sep 5 12:25:12.677 [INFO] [Static Code Files (including helm)] [exit-code-three-for-single-file] Step #0 content is: {"assertions":["result.code ShouldEqual 3","result.systemout ShouldContainSubstring \"extensions/v1beta1\""],"script":"pluto detect assets/deprecated116/deployment-extensions-v1beta1.yaml"} +Sep 5 12:25:12.678 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-3906610918 +Sep 5 12:25:12.678 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-3906610918' +Sep 5 12:25:12.691 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] [exec] + +Sep 5 12:25:12.691 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] [exec] + +Sep 5 12:25:12.691 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] [exec] NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL + +Sep 5 12:25:12.691 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] [exec] utilities Deployment extensions/v1beta1 apps/v1 true true true + +Sep 5 12:25:12.691 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] [exec] + +Sep 5 12:25:12.691 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] [exec] Want more? Automate Pluto for free with Fairwinds Insights! + +Sep 5 12:25:12.691 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] [exec] 🚀 https://fairwinds.com/insights-signup/pluto 🚀 + +Sep 5 12:25:12.691 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] [exec] result of runTestStepExecutor: {Systemout:NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +utilities Deployment extensions/v1beta1 apps/v1 true true true SystemoutJSON: Systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 SystemerrJSON: Err: Code:3 TimeSeconds:0.013390334} +Sep 5 12:25:12.691 [INFO] [Static Code Files (including helm)] [exit-code-three-for-single-file] Ending testcase +Sep 5 12:25:12.691 [INFO] [Static Code Files (including helm)] Ending testsuite +Sep 5 12:25:12.691 [INFO] [Static Code Files (including helm)] Starting testsuite +Sep 5 12:25:12.691 [INFO] [Static Code Files (including helm)] [install-helm3-assets] Starting testcase +Sep 5 12:25:12.691 [DEBU] [Static Code Files (including helm)] [install-helm3-assets] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:25:12.691 [DEBU] [Static Code Files (including helm)] [install-helm3-assets] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:25:12.691 [DEBU] [Static Code Files (including helm)] [install-helm3-assets] Running testcase with variable venom.testsuite.name: Static Code Files (including helm) +Sep 5 12:25:12.691 [DEBU] [Static Code Files (including helm)] [install-helm3-assets] Running testcase with variable __Type__: Map +Sep 5 12:25:12.691 [DEBU] [Static Code Files (including helm)] [install-helm3-assets] Running testcase with variable venom.testsuite.filepath: tests/01_helm-detect-3.yaml +Sep 5 12:25:12.691 [DEBU] [Static Code Files (including helm)] [install-helm3-assets] Running testcase with variable venom.libdir: +Sep 5 12:25:12.691 [DEBU] [Static Code Files (including helm)] [install-helm3-assets] Running testcase with variable venom.testsuite.shortName: 01_helm-detect-3 +Sep 5 12:25:12.691 [DEBU] [Static Code Files (including helm)] [install-helm3-assets] Running testcase with variable venom.datetime: 2023-09-05T12:25:11-06:00 +Sep 5 12:25:12.691 [DEBU] [Static Code Files (including helm)] [install-helm3-assets] Running testcase with variable venom.timestamp: 1693938311 +Sep 5 12:25:12.691 [DEBU] [Static Code Files (including helm)] [install-helm3-assets] Running testcase with variable venom.testcase: install-helm3-assets +Sep 5 12:25:12.691 [DEBU] [Static Code Files (including helm)] [install-helm3-assets] Running testcase with variable venom.testsuite.filename: 01_helm-detect-3.yaml +Sep 5 12:25:12.691 [DEBU] [Static Code Files (including helm)] [install-helm3-assets] Running testcase with variable venom.testsuite: Static Code Files (including helm) +Sep 5 12:25:12.691 [DEBU] [Static Code Files (including helm)] [install-helm3-assets] Running testcase with variable __Len__: 8 +Sep 5 12:25:12.692 [DEBU] [Static Code Files (including helm)] [install-helm3-assets] Running testcase with variable venom.outputdir: +Sep 5 12:25:12.692 [INFO] [Static Code Files (including helm)] [install-helm3-assets] Step #0 content is: {"assertions":["result.code ShouldEqual 0"],"script":"kubectl create ns demo2\nkubectl apply -f assets/helm3\n"} +Sep 5 12:25:12.692 [DEBU] [Static Code Files (including helm)] [install-helm3-assets] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-3604490950 +Sep 5 12:25:12.692 [DEBU] [Static Code Files (including helm)] [install-helm3-assets] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-3604490950' +Sep 5 12:25:12.926 [DEBU] [Static Code Files (including helm)] [install-helm3-assets] [exec] namespace/demo2 created + +Sep 5 12:25:13.129 [DEBU] [Static Code Files (including helm)] [install-helm3-assets] [exec] secret/sh.helm.release.v1.demo2.v1 created + +Sep 5 12:25:13.140 [DEBU] [Static Code Files (including helm)] [install-helm3-assets] [exec] secret/sh.helm.release.v1.test.v1 created + +Sep 5 12:25:13.146 [DEBU] [Static Code Files (including helm)] [install-helm3-assets] [exec] secret/sh.helm.release.v1.test.v2 created + +Sep 5 12:25:13.147 [DEBU] [Static Code Files (including helm)] [install-helm3-assets] [exec] result of runTestStepExecutor: {Systemout:namespace/demo2 created +secret/sh.helm.release.v1.demo2.v1 created +secret/sh.helm.release.v1.test.v1 created +secret/sh.helm.release.v1.test.v2 created SystemoutJSON: Systemerr: SystemerrJSON: Err: Code:0 TimeSeconds:0.455330042} +Sep 5 12:25:13.147 [INFO] [Static Code Files (including helm)] [install-helm3-assets] Ending testcase +Sep 5 12:25:13.147 [INFO] [Static Code Files (including helm)] [helm-detect-show-all] Starting testcase +Sep 5 12:25:13.147 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable venom.datetime: 2023-09-05T12:25:11-06:00 +Sep 5 12:25:13.147 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable __Type__: Map +Sep 5 12:25:13.147 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable venom.testsuite.filename: 01_helm-detect-3.yaml +Sep 5 12:25:13.147 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable install-helm3-assets.result.systemerrjson: +Sep 5 12:25:13.147 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable install-helm3-assets.result.timeseconds: 0.455330042 +Sep 5 12:25:13.147 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable install-helm3-assets.result.code: 0 +Sep 5 12:25:13.147 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable venom.testsuite: Static Code Files (including helm) +Sep 5 12:25:13.147 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable install-helm3-assets.__type__: Result +Sep 5 12:25:13.148 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable install-helm3-assets.result.__len__: 7 +Sep 5 12:25:13.148 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable __Len__: 8 +Sep 5 12:25:13.148 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable venom.outputdir: +Sep 5 12:25:13.148 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable venom.libdir: +Sep 5 12:25:13.148 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:25:13.148 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:25:13.148 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable venom.testcase: helm-detect-show-all +Sep 5 12:25:13.148 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable install-helm3-assets.result.systemoutjson: +Sep 5 12:25:13.148 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable venom.timestamp: 1693938311 +Sep 5 12:25:13.148 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable venom.testsuite.shortName: 01_helm-detect-3 +Sep 5 12:25:13.148 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable venom.testsuite.name: Static Code Files (including helm) +Sep 5 12:25:13.148 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable venom.testsuite.filepath: tests/01_helm-detect-3.yaml +Sep 5 12:25:13.148 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable install-helm3-assets.result.systemerr: +Sep 5 12:25:13.148 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable install-helm3-assets.result.err: +Sep 5 12:25:13.148 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable install-helm3-assets.result.systemout: namespace/demo2 created +secret/sh.helm.release.v1.demo2.v1 created +secret/sh.helm.release.v1.test.v1 created +secret/sh.helm.release.v1.test.v2 created +Sep 5 12:25:13.148 [INFO] [Static Code Files (including helm)] [helm-detect-show-all] Step #0 content is: {"assertions":["result.code ShouldEqual 3","result.systemout ShouldContainSubstring \"NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED\"","result.systemout ShouldContainSubstring \"test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true\""],"script":"pluto detect-helm --target-versions k8s=v1.16.0"} +Sep 5 12:25:13.148 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-1762138162 +Sep 5 12:25:13.148 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-1762138162' +Sep 5 12:25:13.179 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] [exec] NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL + +Sep 5 12:25:13.179 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] [exec] test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true + +Sep 5 12:25:13.179 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] [exec] test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true + +Sep 5 12:25:13.179 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] [exec] + +Sep 5 12:25:13.180 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] [exec] result of runTestStepExecutor: {Systemout:NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true SystemoutJSON: Systemerr: SystemerrJSON: Err: Code:3 TimeSeconds:0.031675333} +Sep 5 12:25:13.180 [INFO] [Static Code Files (including helm)] [helm-detect-show-all] Ending testcase +Sep 5 12:25:13.180 [INFO] [Static Code Files (including helm)] [helm-detect] Starting testcase +Sep 5 12:25:13.180 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable venom.testsuite.filename: 01_helm-detect-3.yaml +Sep 5 12:25:13.180 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable install-helm3-assets.result.systemoutjson: +Sep 5 12:25:13.180 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable install-helm3-assets.result.err: +Sep 5 12:25:13.180 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable venom.libdir: +Sep 5 12:25:13.180 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable helm-detect-show-all.__type__: Result +Sep 5 12:25:13.180 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable venom.testcase: helm-detect +Sep 5 12:25:13.180 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:25:13.180 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable venom.testsuite.name: Static Code Files (including helm) +Sep 5 12:25:13.180 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable venom.testsuite.filepath: tests/01_helm-detect-3.yaml +Sep 5 12:25:13.180 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable helm-detect-show-all.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:25:13.180 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable helm-detect-show-all.result.systemerr: +Sep 5 12:25:13.180 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable install-helm3-assets.result.timeseconds: 0.455330042 +Sep 5 12:25:13.180 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable venom.testsuite: Static Code Files (including helm) +Sep 5 12:25:13.180 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable helm-detect-show-all.result.timeseconds: 0.031675333 +Sep 5 12:25:13.180 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable helm-detect-show-all.result.systemoutjson: +Sep 5 12:25:13.180 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable helm-detect-show-all.result.err: +Sep 5 12:25:13.180 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable __Len__: 8 +Sep 5 12:25:13.180 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable venom.timestamp: 1693938311 +Sep 5 12:25:13.180 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable __Type__: Map +Sep 5 12:25:13.180 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable helm-detect-show-all.result.systemerrjson: +Sep 5 12:25:13.180 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable install-helm3-assets.result.__len__: 7 +Sep 5 12:25:13.180 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable venom.datetime: 2023-09-05T12:25:11-06:00 +Sep 5 12:25:13.180 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable install-helm3-assets.__type__: Result +Sep 5 12:25:13.180 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable helm-detect-show-all.result.__len__: 7 +Sep 5 12:25:13.180 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:25:13.180 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable install-helm3-assets.result.systemout: namespace/demo2 created +secret/sh.helm.release.v1.demo2.v1 created +secret/sh.helm.release.v1.test.v1 created +secret/sh.helm.release.v1.test.v2 created +Sep 5 12:25:13.180 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable install-helm3-assets.result.code: 0 +Sep 5 12:25:13.180 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable install-helm3-assets.result.systemerr: +Sep 5 12:25:13.180 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable helm-detect-show-all.result.code: 3 +Sep 5 12:25:13.180 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable venom.outputdir: +Sep 5 12:25:13.180 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable install-helm3-assets.result.systemerrjson: +Sep 5 12:25:13.180 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable venom.testsuite.shortName: 01_helm-detect-3 +Sep 5 12:25:13.180 [INFO] [Static Code Files (including helm)] [helm-detect] Step #0 content is: {"assertions":["result.code ShouldEqual 3","result.systemout ShouldContainSubstring \"NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED\"","result.systemout ShouldContainSubstring \"test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true\"","result.systemout ShouldNotContainSubstring \"test/test-helm3chart Deployment apps/v1 false false\""],"script":"pluto detect-helm --target-versions k8s=v1.16.0"} +Sep 5 12:25:13.181 [DEBU] [Static Code Files (including helm)] [helm-detect] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-1135429331 +Sep 5 12:25:13.181 [DEBU] [Static Code Files (including helm)] [helm-detect] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-1135429331' +Sep 5 12:25:13.212 [DEBU] [Static Code Files (including helm)] [helm-detect] [exec] NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL + +Sep 5 12:25:13.212 [DEBU] [Static Code Files (including helm)] [helm-detect] [exec] test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true + +Sep 5 12:25:13.212 [DEBU] [Static Code Files (including helm)] [helm-detect] [exec] test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true + +Sep 5 12:25:13.212 [DEBU] [Static Code Files (including helm)] [helm-detect] [exec] + +Sep 5 12:25:13.213 [DEBU] [Static Code Files (including helm)] [helm-detect] [exec] result of runTestStepExecutor: {Systemout:NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true SystemoutJSON: Systemerr: SystemerrJSON: Err: Code:3 TimeSeconds:0.03168675} +Sep 5 12:25:13.213 [INFO] [Static Code Files (including helm)] [helm-detect] Ending testcase +Sep 5 12:25:13.213 [INFO] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Starting testcase +Sep 5 12:25:13.213 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable venom.testsuite.filepath: tests/01_helm-detect-3.yaml +Sep 5 12:25:13.213 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable venom.timestamp: 1693938311 +Sep 5 12:25:13.213 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable install-helm3-assets.result.systemoutjson: +Sep 5 12:25:13.213 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable install-helm3-assets.result.systemout: namespace/demo2 created +secret/sh.helm.release.v1.demo2.v1 created +secret/sh.helm.release.v1.test.v1 created +secret/sh.helm.release.v1.test.v2 created +Sep 5 12:25:13.213 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable venom.testsuite.name: Static Code Files (including helm) +Sep 5 12:25:13.213 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable venom.outputdir: +Sep 5 12:25:13.213 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable helm-detect-show-all.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:25:13.213 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable helm-detect.result.systemoutjson: +Sep 5 12:25:13.213 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable install-helm3-assets.result.err: +Sep 5 12:25:13.213 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable venom.testsuite.filename: 01_helm-detect-3.yaml +Sep 5 12:25:13.213 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable install-helm3-assets.result.systemerr: +Sep 5 12:25:13.213 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable helm-detect-show-all.result.systemoutjson: +Sep 5 12:25:13.213 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable helm-detect-show-all.result.timeseconds: 0.031675333 +Sep 5 12:25:13.213 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable helm-detect.result.systemerr: +Sep 5 12:25:13.213 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable venom.libdir: +Sep 5 12:25:13.213 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable venom.datetime: 2023-09-05T12:25:11-06:00 +Sep 5 12:25:13.213 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable __Len__: 8 +Sep 5 12:25:13.213 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable __Type__: Map +Sep 5 12:25:13.213 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable helm-detect.result.code: 3 +Sep 5 12:25:13.213 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable helm-detect-show-all.result.code: 3 +Sep 5 12:25:13.213 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable install-helm3-assets.result.timeseconds: 0.455330042 +Sep 5 12:25:13.213 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable helm-detect-show-all.result.__len__: 7 +Sep 5 12:25:13.213 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable venom.testsuite.shortName: 01_helm-detect-3 +Sep 5 12:25:13.213 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable helm-detect-show-all.result.systemerr: +Sep 5 12:25:13.213 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable helm-detect-show-all.result.err: +Sep 5 12:25:13.213 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable helm-detect.result.systemerrjson: +Sep 5 12:25:13.213 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable helm-detect-show-all.result.systemerrjson: +Sep 5 12:25:13.213 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:25:13.213 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable install-helm3-assets.__type__: Result +Sep 5 12:25:13.213 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable install-helm3-assets.result.code: 0 +Sep 5 12:25:13.213 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable install-helm3-assets.result.__len__: 7 +Sep 5 12:25:13.213 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable helm-detect.__type__: Result +Sep 5 12:25:13.213 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable venom.testcase: helm-detect-ignore-deprecations +Sep 5 12:25:13.213 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable venom.testsuite: Static Code Files (including helm) +Sep 5 12:25:13.213 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable helm-detect.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:25:13.213 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable helm-detect-show-all.__type__: Result +Sep 5 12:25:13.213 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable helm-detect.result.timeseconds: 0.03168675 +Sep 5 12:25:13.213 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable install-helm3-assets.result.systemerrjson: +Sep 5 12:25:13.213 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable helm-detect.result.err: +Sep 5 12:25:13.213 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:25:13.213 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable helm-detect.result.__len__: 7 +Sep 5 12:25:13.213 [INFO] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Step #0 content is: {"assertions":["result.code ShouldEqual 0","result.systemout ShouldContainSubstring \"NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED\"","result.systemout ShouldContainSubstring \"test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 false true\"","result.systemout ShouldNotContainSubstring \"test/test-helm3chart Deployment apps/v1 false false\""],"script":"pluto detect-helm --ignore-deprecations --target-versions k8s=v1.15.0"} +Sep 5 12:25:13.213 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-1358601590 +Sep 5 12:25:13.214 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-1358601590' +Sep 5 12:25:13.240 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] [exec] NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL + +Sep 5 12:25:13.240 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] [exec] test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 false true true + +Sep 5 12:25:13.240 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] [exec] test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 false true true + +Sep 5 12:25:13.240 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] [exec] + +Sep 5 12:25:13.241 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] [exec] result of runTestStepExecutor: {Systemout:NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 false true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 false true true SystemoutJSON: Systemerr: SystemerrJSON: Err: Code:0 TimeSeconds:0.027057833} +Sep 5 12:25:13.241 [INFO] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Ending testcase +Sep 5 12:25:13.241 [INFO] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Starting testcase +Sep 5 12:25:13.241 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable install-helm3-assets.result.systemerrjson: +Sep 5 12:25:13.241 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect-show-all.result.systemerr: +Sep 5 12:25:13.241 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable venom.timestamp: 1693938311 +Sep 5 12:25:13.241 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable install-helm3-assets.result.systemoutjson: +Sep 5 12:25:13.241 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect.__type__: Result +Sep 5 12:25:13.241 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect-show-all.result.systemoutjson: +Sep 5 12:25:13.241 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable install-helm3-assets.result.timeseconds: 0.455330042 +Sep 5 12:25:13.241 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect.result.__len__: 7 +Sep 5 12:25:13.241 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect-show-all.result.systemerrjson: +Sep 5 12:25:13.241 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect-ignore-deprecations.__type__: Result +Sep 5 12:25:13.241 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:25:13.241 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable venom.testsuite: Static Code Files (including helm) +Sep 5 12:25:13.241 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable __Len__: 8 +Sep 5 12:25:13.241 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect.result.code: 3 +Sep 5 12:25:13.241 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect-ignore-deprecations.result.systemerrjson: +Sep 5 12:25:13.241 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect-show-all.__type__: Result +Sep 5 12:25:13.241 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect.result.systemoutjson: +Sep 5 12:25:13.241 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable install-helm3-assets.result.systemout: namespace/demo2 created +secret/sh.helm.release.v1.demo2.v1 created +secret/sh.helm.release.v1.test.v1 created +secret/sh.helm.release.v1.test.v2 created +Sep 5 12:25:13.241 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable venom.testsuite.name: Static Code Files (including helm) +Sep 5 12:25:13.241 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable venom.testsuite.filepath: tests/01_helm-detect-3.yaml +Sep 5 12:25:13.241 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable venom.datetime: 2023-09-05T12:25:11-06:00 +Sep 5 12:25:13.241 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect-show-all.result.err: +Sep 5 12:25:13.241 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect.result.systemerrjson: +Sep 5 12:25:13.241 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable install-helm3-assets.result.__len__: 7 +Sep 5 12:25:13.241 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect-ignore-deprecations.result.code: 0 +Sep 5 12:25:13.241 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable install-helm3-assets.__type__: Result +Sep 5 12:25:13.241 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect-ignore-deprecations.result.systemerr: +Sep 5 12:25:13.241 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect.result.err: +Sep 5 12:25:13.241 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:25:13.241 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable venom.outputdir: +Sep 5 12:25:13.241 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable venom.testsuite.shortName: 01_helm-detect-3 +Sep 5 12:25:13.241 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect-ignore-deprecations.result.__len__: 7 +Sep 5 12:25:13.241 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable install-helm3-assets.result.code: 0 +Sep 5 12:25:13.241 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect.result.timeseconds: 0.03168675 +Sep 5 12:25:13.241 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable install-helm3-assets.result.systemerr: +Sep 5 12:25:13.241 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable venom.testsuite.filename: 01_helm-detect-3.yaml +Sep 5 12:25:13.241 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:25:13.241 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable venom.testcase: helm-detect-show-all-ignore-removals +Sep 5 12:25:13.241 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect.result.systemerr: +Sep 5 12:25:13.241 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect-show-all.result.code: 3 +Sep 5 12:25:13.241 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect-show-all.result.__len__: 7 +Sep 5 12:25:13.241 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect-ignore-deprecations.result.systemoutjson: +Sep 5 12:25:13.241 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect-ignore-deprecations.result.timeseconds: 0.027057833 +Sep 5 12:25:13.241 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect-ignore-deprecations.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 false true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 false true true +Sep 5 12:25:13.241 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable __Type__: Map +Sep 5 12:25:13.241 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect-show-all.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:25:13.241 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect-ignore-deprecations.result.err: +Sep 5 12:25:13.241 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable venom.libdir: +Sep 5 12:25:13.241 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable install-helm3-assets.result.err: +Sep 5 12:25:13.241 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect-show-all.result.timeseconds: 0.031675333 +Sep 5 12:25:13.241 [INFO] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Step #0 content is: {"assertions":["result.code ShouldEqual 0","result.systemout ShouldContainSubstring \"NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED\"","result.systemout ShouldContainSubstring \"test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true\""],"script":"pluto detect-helm --ignore-removals --ignore-deprecations --target-versions k8s=v1.16.0"} +Sep 5 12:25:13.242 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-425971902 +Sep 5 12:25:13.242 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-425971902' +Sep 5 12:25:13.273 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] [exec] NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL + +Sep 5 12:25:13.273 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] [exec] test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true + +Sep 5 12:25:13.273 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] [exec] test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true + +Sep 5 12:25:13.273 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] [exec] + +Sep 5 12:25:13.274 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] [exec] result of runTestStepExecutor: {Systemout:NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true SystemoutJSON: Systemerr: SystemerrJSON: Err: Code:0 TimeSeconds:0.032012542} +Sep 5 12:25:13.274 [INFO] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Ending testcase +Sep 5 12:25:13.274 [INFO] [Static Code Files (including helm)] [helm-detect-owide] Starting testcase +Sep 5 12:25:13.274 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-ignore-deprecations.result.timeseconds: 0.027057833 +Sep 5 12:25:13.274 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-show-all-ignore-removals.result.code: 0 +Sep 5 12:25:13.274 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-show-all-ignore-removals.__type__: Result +Sep 5 12:25:13.274 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable install-helm3-assets.__type__: Result +Sep 5 12:25:13.274 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect.result.systemerrjson: +Sep 5 12:25:13.274 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-show-all.result.timeseconds: 0.031675333 +Sep 5 12:25:13.274 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect.result.err: +Sep 5 12:25:13.274 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable install-helm3-assets.result.code: 0 +Sep 5 12:25:13.274 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect.result.timeseconds: 0.03168675 +Sep 5 12:25:13.274 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable venom.libdir: +Sep 5 12:25:13.274 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-show-all.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:25:13.274 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-ignore-deprecations.result.systemerrjson: +Sep 5 12:25:13.274 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect.__type__: Result +Sep 5 12:25:13.274 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect.result.__len__: 7 +Sep 5 12:25:13.274 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-show-all.result.__len__: 7 +Sep 5 12:25:13.274 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable install-helm3-assets.result.timeseconds: 0.455330042 +Sep 5 12:25:13.274 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable install-helm3-assets.result.err: +Sep 5 12:25:13.274 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-show-all-ignore-removals.result.systemerr: +Sep 5 12:25:13.274 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-show-all-ignore-removals.result.systemoutjson: +Sep 5 12:25:13.274 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-ignore-deprecations.result.err: +Sep 5 12:25:13.274 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:25:13.274 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable __Len__: 8 +Sep 5 12:25:13.274 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable __Type__: Map +Sep 5 12:25:13.274 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable venom.testcase: helm-detect-owide +Sep 5 12:25:13.274 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-show-all.result.systemerr: +Sep 5 12:25:13.274 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect.result.systemerr: +Sep 5 12:25:13.274 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable venom.testsuite.name: Static Code Files (including helm) +Sep 5 12:25:13.274 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable venom.testsuite.filename: 01_helm-detect-3.yaml +Sep 5 12:25:13.274 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable venom.outputdir: +Sep 5 12:25:13.274 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable install-helm3-assets.result.__len__: 7 +Sep 5 12:25:13.274 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-show-all-ignore-removals.result.__len__: 7 +Sep 5 12:25:13.274 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-ignore-deprecations.result.code: 0 +Sep 5 12:25:13.274 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-show-all.result.err: +Sep 5 12:25:13.274 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect.result.systemoutjson: +Sep 5 12:25:13.274 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-ignore-deprecations.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 false true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 false true true +Sep 5 12:25:13.274 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:25:13.274 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-show-all.__type__: Result +Sep 5 12:25:13.274 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable install-helm3-assets.result.systemoutjson: +Sep 5 12:25:13.274 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:25:13.274 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-show-all-ignore-removals.result.err: +Sep 5 12:25:13.274 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-ignore-deprecations.__type__: Result +Sep 5 12:25:13.274 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable install-helm3-assets.result.systemerrjson: +Sep 5 12:25:13.274 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable install-helm3-assets.result.systemerr: +Sep 5 12:25:13.274 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable venom.testsuite.filepath: tests/01_helm-detect-3.yaml +Sep 5 12:25:13.274 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable venom.testsuite.shortName: 01_helm-detect-3 +Sep 5 12:25:13.274 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-ignore-deprecations.result.systemoutjson: +Sep 5 12:25:13.274 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-show-all-ignore-removals.result.timeseconds: 0.032012542 +Sep 5 12:25:13.274 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-show-all.result.code: 3 +Sep 5 12:25:13.274 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-show-all-ignore-removals.result.systemerrjson: +Sep 5 12:25:13.274 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable venom.datetime: 2023-09-05T12:25:11-06:00 +Sep 5 12:25:13.274 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable venom.testsuite: Static Code Files (including helm) +Sep 5 12:25:13.274 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-show-all-ignore-removals.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:25:13.274 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-show-all.result.systemoutjson: +Sep 5 12:25:13.274 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-ignore-deprecations.result.systemerr: +Sep 5 12:25:13.274 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-show-all.result.systemerrjson: +Sep 5 12:25:13.274 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-ignore-deprecations.result.__len__: 7 +Sep 5 12:25:13.274 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable install-helm3-assets.result.systemout: namespace/demo2 created +secret/sh.helm.release.v1.demo2.v1 created +secret/sh.helm.release.v1.test.v1 created +secret/sh.helm.release.v1.test.v2 created +Sep 5 12:25:13.274 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable venom.timestamp: 1693938311 +Sep 5 12:25:13.274 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect.result.code: 3 +Sep 5 12:25:13.275 [INFO] [Static Code Files (including helm)] [helm-detect-owide] Step #0 content is: {"assertions":["result.code ShouldEqual 3","result.systemout ShouldContainSubstring \"NAME NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN\"","result.systemout ShouldContainSubstring \"test/test-helm3chart-v1beta1 default Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0\"","result.systemout ShouldContainSubstring \"test/test-helm3chart-v1beta1 demo2 Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0\""],"script":"pluto detect-helm -owide --target-versions k8s=v1.16.0"} +Sep 5 12:25:13.276 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-1029866006 +Sep 5 12:25:13.276 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-1029866006' +Sep 5 12:25:13.315 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] [exec] NAME NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN REPL AVAIL REPL AVAIL IN + +Sep 5 12:25:13.315 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] [exec] test/test-helm3chart-v1beta1 default Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 + +Sep 5 12:25:13.315 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] [exec] test/test-helm3chart-v1beta1 demo2 Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 + +Sep 5 12:25:13.315 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] [exec] + +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] [exec] result of runTestStepExecutor: {Systemout:NAME NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN REPL AVAIL REPL AVAIL IN +test/test-helm3chart-v1beta1 default Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 +test/test-helm3chart-v1beta1 demo2 Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 SystemoutJSON: Systemerr: SystemerrJSON: Err: Code:3 TimeSeconds:0.039422458} +Sep 5 12:25:13.316 [INFO] [Static Code Files (including helm)] [helm-detect-owide] Ending testcase +Sep 5 12:25:13.316 [INFO] [Static Code Files (including helm)] [helm-detect-ojson] Starting testcase +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable install-helm3-assets.result.systemerrjson: +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable venom.testsuite.filename: 01_helm-detect-3.yaml +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable venom.testsuite.shortName: 01_helm-detect-3 +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-owide.result.systemoutjson: +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-show-all.result.code: 3 +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable install-helm3-assets.result.systemoutjson: +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-show-all.__type__: Result +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-owide.result.err: +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-show-all-ignore-removals.result.systemerr: +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-show-all-ignore-removals.result.code: 0 +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable venom.libdir: +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-owide.result.systemerrjson: +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable install-helm3-assets.result.systemout: namespace/demo2 created +secret/sh.helm.release.v1.demo2.v1 created +secret/sh.helm.release.v1.test.v1 created +secret/sh.helm.release.v1.test.v2 created +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable __Type__: Map +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-show-all.result.systemerr: +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect.result.systemerrjson: +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-ignore-deprecations.result.systemoutjson: +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable install-helm3-assets.result.systemerr: +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-ignore-deprecations.result.timeseconds: 0.027057833 +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-show-all-ignore-removals.__type__: Result +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect.result.err: +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-ignore-deprecations.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 false true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 false true true +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-owide.result.timeseconds: 0.039422458 +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-show-all-ignore-removals.result.systemerrjson: +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-show-all.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable venom.testsuite.filepath: tests/01_helm-detect-3.yaml +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-ignore-deprecations.result.systemerr: +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect.result.timeseconds: 0.03168675 +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-show-all-ignore-removals.result.systemoutjson: +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-owide.result.systemerr: +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable __Len__: 8 +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-owide.__type__: Result +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-ignore-deprecations.result.code: 0 +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-ignore-deprecations.__type__: Result +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-show-all.result.err: +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-owide.result.systemout: NAME NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN REPL AVAIL REPL AVAIL IN +test/test-helm3chart-v1beta1 default Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 +test/test-helm3chart-v1beta1 demo2 Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-ignore-deprecations.result.err: +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-show-all.result.timeseconds: 0.031675333 +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable venom.testcase: helm-detect-ojson +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-owide.result.__len__: 7 +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-show-all.result.systemoutjson: +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable install-helm3-assets.result.code: 0 +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-show-all.result.systemerrjson: +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable venom.timestamp: 1693938311 +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect.result.__len__: 7 +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-show-all-ignore-removals.result.timeseconds: 0.032012542 +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable install-helm3-assets.result.__len__: 7 +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-ignore-deprecations.result.__len__: 7 +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable venom.datetime: 2023-09-05T12:25:11-06:00 +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-show-all-ignore-removals.result.err: +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect.__type__: Result +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-show-all-ignore-removals.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable install-helm3-assets.__type__: Result +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable venom.testsuite.name: Static Code Files (including helm) +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect.result.code: 3 +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect.result.systemoutjson: +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable install-helm3-assets.result.err: +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-show-all-ignore-removals.result.__len__: 7 +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-owide.result.code: 3 +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable venom.testsuite: Static Code Files (including helm) +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable venom.outputdir: +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-ignore-deprecations.result.systemerrjson: +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable install-helm3-assets.result.timeseconds: 0.455330042 +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-show-all.result.__len__: 7 +Sep 5 12:25:13.316 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect.result.systemerr: +Sep 5 12:25:13.316 [INFO] [Static Code Files (including helm)] [helm-detect-ojson] Step #0 content is: {"assertions":["result.code ShouldEqual 3","result.systemout ShouldEqual {\"items\":[{\"name\":\"test/test-helm3chart-v1beta1\",\"namespace\":\"default\",\"api\":{\"version\":\"extensions/v1beta1\",\"kind\":\"Deployment\",\"deprecated-in\":\"v1.9.0\",\"removed-in\":\"v1.16.0\",\"replacement-api\":\"apps/v1\",\"replacement-available-in\":\"v1.9.0\",\"component\":\"k8s\"},\"deprecated\":true,\"removed\":true,\"replacementAvailable\":true},{\"name\":\"test/test-helm3chart-v1beta1\",\"namespace\":\"demo2\",\"api\":{\"version\":\"extensions/v1beta1\",\"kind\":\"Deployment\",\"deprecated-in\":\"v1.9.0\",\"removed-in\":\"v1.16.0\",\"replacement-api\":\"apps/v1\",\"replacement-available-in\":\"v1.9.0\",\"component\":\"k8s\"},\"deprecated\":true,\"removed\":true,\"replacementAvailable\":true}],\"target-versions\":{\"cert-manager\":\"v1.5.3\",\"istio\":\"v1.11.0\",\"k8s\":\"v1.16.0\"}}"],"script":"pluto detect-helm -ojson --target-versions k8s=v1.16.0"} +Sep 5 12:25:13.317 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-1468913440 +Sep 5 12:25:13.317 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-1468913440' +Sep 5 12:25:13.351 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] [exec] {"items":[{"name":"test/test-helm3chart-v1beta1","namespace":"default","api":{"version":"extensions/v1beta1","kind":"Deployment","deprecated-in":"v1.9.0","removed-in":"v1.16.0","replacement-api":"apps/v1","replacement-available-in":"v1.9.0","component":"k8s"},"deprecated":true,"removed":true,"replacementAvailable":true},{"name":"test/test-helm3chart-v1beta1","namespace":"demo2","api":{"version":"extensions/v1beta1","kind":"Deployment","deprecated-in":"v1.9.0","removed-in":"v1.16.0","replacement-api":"apps/v1","replacement-available-in":"v1.9.0","component":"k8s"},"deprecated":true,"removed":true,"replacementAvailable":true}],"target-versions":{"cert-manager":"v1.5.3","istio":"v1.11.0","k8s":"v1.16.0"}} + +Sep 5 12:25:13.352 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] [exec] result of runTestStepExecutor: {Systemout:{"items":[{"name":"test/test-helm3chart-v1beta1","namespace":"default","api":{"version":"extensions/v1beta1","kind":"Deployment","deprecated-in":"v1.9.0","removed-in":"v1.16.0","replacement-api":"apps/v1","replacement-available-in":"v1.9.0","component":"k8s"},"deprecated":true,"removed":true,"replacementAvailable":true},{"name":"test/test-helm3chart-v1beta1","namespace":"demo2","api":{"version":"extensions/v1beta1","kind":"Deployment","deprecated-in":"v1.9.0","removed-in":"v1.16.0","replacement-api":"apps/v1","replacement-available-in":"v1.9.0","component":"k8s"},"deprecated":true,"removed":true,"replacementAvailable":true}],"target-versions":{"cert-manager":"v1.5.3","istio":"v1.11.0","k8s":"v1.16.0"}} SystemoutJSON:map[items:[map[api:map[component:k8s deprecated-in:v1.9.0 kind:Deployment removed-in:v1.16.0 replacement-api:apps/v1 replacement-available-in:v1.9.0 version:extensions/v1beta1] deprecated:true name:test/test-helm3chart-v1beta1 namespace:default removed:true replacementAvailable:true] map[api:map[component:k8s deprecated-in:v1.9.0 kind:Deployment removed-in:v1.16.0 replacement-api:apps/v1 replacement-available-in:v1.9.0 version:extensions/v1beta1] deprecated:true name:test/test-helm3chart-v1beta1 namespace:demo2 removed:true replacementAvailable:true]] target-versions:map[cert-manager:v1.5.3 istio:v1.11.0 k8s:v1.16.0]] Systemerr: SystemerrJSON: Err: Code:3 TimeSeconds:0.034454667} +Sep 5 12:25:13.352 [INFO] [Static Code Files (including helm)] [helm-detect-ojson] Ending testcase +Sep 5 12:25:13.352 [INFO] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Starting testcase +Sep 5 12:25:13.352 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-show-all.result.systemerrjson: +Sep 5 12:25:13.352 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.api.version: extensions/v1beta1 +Sep 5 12:25:13.352 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-owide.result.systemerrjson: +Sep 5 12:25:13.352 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.api.removed-in: v1.16.0 +Sep 5 12:25:13.352 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.api.component: k8s +Sep 5 12:25:13.352 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.__type__: Map +Sep 5 12:25:13.352 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable venom.testsuite.shortName: 01_helm-detect-3 +Sep 5 12:25:13.352 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect.result.code: 3 +Sep 5 12:25:13.352 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable venom.testsuite: Static Code Files (including helm) +Sep 5 12:25:13.352 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable venom.testsuite.filename: 01_helm-detect-3.yaml +Sep 5 12:25:13.352 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.namespace: default +Sep 5 12:25:13.352 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-show-all-ignore-removals.__type__: Result +Sep 5 12:25:13.352 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.replacementavailable: true +Sep 5 12:25:13.352 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.api.kind: Deployment +Sep 5 12:25:13.352 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.code: 3 +Sep 5 12:25:13.352 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.api.__type__: Map +Sep 5 12:25:13.352 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.target-versions.k8s: v1.16.0 +Sep 5 12:25:13.352 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.deprecated: true +Sep 5 12:25:13.352 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.api.__len__: 7 +Sep 5 12:25:13.352 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.replacementavailable: true +Sep 5 12:25:13.352 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable __Type__: Map +Sep 5 12:25:13.352 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:25:13.352 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect.__type__: Result +Sep 5 12:25:13.352 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.api.replacement-api: apps/v1 +Sep 5 12:25:13.352 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable install-helm3-assets.result.systemoutjson: +Sep 5 12:25:13.352 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.api.replacement-available-in: v1.9.0 +Sep 5 12:25:13.352 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect.result.err: +Sep 5 12:25:13.352 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ignore-deprecations.result.__len__: 7 +Sep 5 12:25:13.352 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable venom.datetime: 2023-09-05T12:25:11-06:00 +Sep 5 12:25:13.352 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect.result.systemoutjson: +Sep 5 12:25:13.352 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-owide.result.systemerr: +Sep 5 12:25:13.352 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ignore-deprecations.result.systemerr: +Sep 5 12:25:13.352 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable venom.testcase: helm-detect-kube-context-doesnotexist +Sep 5 12:25:13.352 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ignore-deprecations.result.systemerrjson: +Sep 5 12:25:13.352 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-owide.result.systemout: NAME NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN REPL AVAIL REPL AVAIL IN +test/test-helm3chart-v1beta1 default Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 +test/test-helm3chart-v1beta1 demo2 Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 +Sep 5 12:25:13.352 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.deprecated: true +Sep 5 12:25:13.352 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect.result.__len__: 7 +Sep 5 12:25:13.352 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ignore-deprecations.result.systemoutjson: +Sep 5 12:25:13.352 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemerr: +Sep 5 12:25:13.352 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.name: test/test-helm3chart-v1beta1 +Sep 5 12:25:13.352 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable install-helm3-assets.result.code: 0 +Sep 5 12:25:13.352 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.api.kind: Deployment +Sep 5 12:25:13.352 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.api.deprecated-in: v1.9.0 +Sep 5 12:25:13.352 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.__len__: 2 +Sep 5 12:25:13.352 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.target-versions: map[cert-manager:v1.5.3 istio:v1.11.0 k8s:v1.16.0] +Sep 5 12:25:13.352 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.__type__: Array +Sep 5 12:25:13.352 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-owide.__type__: Result +Sep 5 12:25:13.352 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.api.__type__: Map +Sep 5 12:25:13.352 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-owide.result.__len__: 7 +Sep 5 12:25:13.352 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-show-all.result.systemerr: +Sep 5 12:25:13.352 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.__type__: Map +Sep 5 12:25:13.352 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.__type__: Map +Sep 5 12:25:13.352 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.timeseconds: 0.034454667 +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-show-all-ignore-removals.result.systemerr: +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.target-versions.istio: v1.11.0 +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.api.replacement-api: apps/v1 +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.api.component: k8s +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson: map[items:[map[api:map[component:k8s deprecated-in:v1.9.0 kind:Deployment removed-in:v1.16.0 replacement-api:apps/v1 replacement-available-in:v1.9.0 version:extensions/v1beta1] deprecated:true name:test/test-helm3chart-v1beta1 namespace:default removed:true replacementAvailable:true] map[api:map[component:k8s deprecated-in:v1.9.0 kind:Deployment removed-in:v1.16.0 replacement-api:apps/v1 replacement-available-in:v1.9.0 version:extensions/v1beta1] deprecated:true name:test/test-helm3chart-v1beta1 namespace:demo2 removed:true replacementAvailable:true]] target-versions:map[cert-manager:v1.5.3 istio:v1.11.0 k8s:v1.16.0]] +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable install-helm3-assets.result.systemerrjson: +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.api.version: extensions/v1beta1 +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable install-helm3-assets.result.__len__: 7 +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable install-helm3-assets.result.systemout: namespace/demo2 created +secret/sh.helm.release.v1.demo2.v1 created +secret/sh.helm.release.v1.test.v1 created +secret/sh.helm.release.v1.test.v2 created +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-owide.result.err: +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-show-all-ignore-removals.result.code: 0 +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemout: {"items":[{"name":"test/test-helm3chart-v1beta1","namespace":"default","api":{"version":"extensions/v1beta1","kind":"Deployment","deprecated-in":"v1.9.0","removed-in":"v1.16.0","replacement-api":"apps/v1","replacement-available-in":"v1.9.0","component":"k8s"},"deprecated":true,"removed":true,"replacementAvailable":true},{"name":"test/test-helm3chart-v1beta1","namespace":"demo2","api":{"version":"extensions/v1beta1","kind":"Deployment","deprecated-in":"v1.9.0","removed-in":"v1.16.0","replacement-api":"apps/v1","replacement-available-in":"v1.9.0","component":"k8s"},"deprecated":true,"removed":true,"replacementAvailable":true}],"target-versions":{"cert-manager":"v1.5.3","istio":"v1.11.0","k8s":"v1.16.0"}} +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable venom.timestamp: 1693938311 +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.__type__: Result +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable venom.libdir: +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable install-helm3-assets.result.timeseconds: 0.455330042 +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.namespace: demo2 +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.api: map[component:k8s deprecated-in:v1.9.0 kind:Deployment removed-in:v1.16.0 replacement-api:apps/v1 replacement-available-in:v1.9.0 version:extensions/v1beta1] +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.__len__: 6 +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ignore-deprecations.result.timeseconds: 0.027057833 +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-show-all.result.err: +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ignore-deprecations.result.err: +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.target-versions.__type__: Map +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ignore-deprecations.__type__: Result +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-show-all-ignore-removals.result.timeseconds: 0.032012542 +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemerrjson: +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-show-all-ignore-removals.result.err: +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable install-helm3-assets.result.err: +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.api: map[component:k8s deprecated-in:v1.9.0 kind:Deployment removed-in:v1.16.0 replacement-api:apps/v1 replacement-available-in:v1.9.0 version:extensions/v1beta1] +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable venom.outputdir: +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable venom.testsuite.name: Static Code Files (including helm) +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-show-all.result.systemoutjson: +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-show-all-ignore-removals.result.systemerrjson: +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.removed: true +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.name: test/test-helm3chart-v1beta1 +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items: [map[api:map[component:k8s deprecated-in:v1.9.0 kind:Deployment removed-in:v1.16.0 replacement-api:apps/v1 replacement-available-in:v1.9.0 version:extensions/v1beta1] deprecated:true name:test/test-helm3chart-v1beta1 namespace:default removed:true replacementAvailable:true] map[api:map[component:k8s deprecated-in:v1.9.0 kind:Deployment removed-in:v1.16.0 replacement-api:apps/v1 replacement-available-in:v1.9.0 version:extensions/v1beta1] deprecated:true name:test/test-helm3chart-v1beta1 namespace:demo2 removed:true replacementAvailable:true]] +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.__len__: 6 +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.__len__: 7 +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-show-all.result.__len__: 7 +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.removed: true +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-owide.result.timeseconds: 0.039422458 +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-owide.result.systemoutjson: +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable __Len__: 8 +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect.result.timeseconds: 0.03168675 +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.api.replacement-available-in: v1.9.0 +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-show-all-ignore-removals.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.err: +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable venom.testsuite.filepath: tests/01_helm-detect-3.yaml +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect.result.systemerr: +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.api.deprecated-in: v1.9.0 +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-show-all.result.timeseconds: 0.031675333 +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-show-all.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-show-all-ignore-removals.result.__len__: 7 +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1: map[api:map[component:k8s deprecated-in:v1.9.0 kind:Deployment removed-in:v1.16.0 replacement-api:apps/v1 replacement-available-in:v1.9.0 version:extensions/v1beta1] deprecated:true name:test/test-helm3chart-v1beta1 namespace:demo2 removed:true replacementAvailable:true] +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable install-helm3-assets.__type__: Result +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.api.removed-in: v1.16.0 +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-owide.result.code: 3 +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.target-versions.cert-manager: v1.5.3 +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ignore-deprecations.result.code: 0 +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ignore-deprecations.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 false true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 false true true +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-show-all-ignore-removals.result.systemoutjson: +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-show-all.result.code: 3 +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.api.__len__: 7 +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.target-versions.__len__: 3 +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-show-all.__type__: Result +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0: map[api:map[component:k8s deprecated-in:v1.9.0 kind:Deployment removed-in:v1.16.0 replacement-api:apps/v1 replacement-available-in:v1.9.0 version:extensions/v1beta1] deprecated:true name:test/test-helm3chart-v1beta1 namespace:default removed:true replacementAvailable:true] +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.__len__: 2 +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect.result.systemerrjson: +Sep 5 12:25:13.353 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable install-helm3-assets.result.systemerr: +Sep 5 12:25:13.353 [INFO] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Step #0 content is: {"assertions":["result.code ShouldEqual 1","result.systemout ShouldContainSubstring 'context \"doesnotexist\" does not exist'"],"script":"pluto detect-helm --kube-context doesnotexist"} +Sep 5 12:25:13.354 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-2378863609 +Sep 5 12:25:13.354 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-2378863609' +Sep 5 12:25:13.370 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] [exec] error getting helm configuration: context "doesnotexist" does not exist + +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] [exec] result of runTestStepExecutor: {Systemout:error getting helm configuration: context "doesnotexist" does not exist SystemoutJSON: Systemerr: SystemerrJSON: Err: Code:1 TimeSeconds:0.016536667} +Sep 5 12:25:13.371 [INFO] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Ending testcase +Sep 5 12:25:13.371 [INFO] [Static Code Files (including helm)] [cleanup] Starting testcase +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1: map[api:map[component:k8s deprecated-in:v1.9.0 kind:Deployment removed-in:v1.16.0 replacement-api:apps/v1 replacement-available-in:v1.9.0 version:extensions/v1beta1] deprecated:true name:test/test-helm3chart-v1beta1 namespace:demo2 removed:true replacementAvailable:true] +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items: [map[api:map[component:k8s deprecated-in:v1.9.0 kind:Deployment removed-in:v1.16.0 replacement-api:apps/v1 replacement-available-in:v1.9.0 version:extensions/v1beta1] deprecated:true name:test/test-helm3chart-v1beta1 namespace:default removed:true replacementAvailable:true] map[api:map[component:k8s deprecated-in:v1.9.0 kind:Deployment removed-in:v1.16.0 replacement-api:apps/v1 replacement-available-in:v1.9.0 version:extensions/v1beta1] deprecated:true name:test/test-helm3chart-v1beta1 namespace:demo2 removed:true replacementAvailable:true]] +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.name: test/test-helm3chart-v1beta1 +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect.result.err: +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ignore-deprecations.result.code: 0 +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ignore-deprecations.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 false true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 false true true +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.api.deprecated-in: v1.9.0 +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-show-all.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.target-versions.__len__: 3 +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-show-all.result.systemoutjson: +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.api.component: k8s +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-show-all.result.code: 3 +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.__type__: Map +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.__type__: Map +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ignore-deprecations.result.systemoutjson: +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-show-all-ignore-removals.result.code: 0 +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.removed: true +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-kube-context-doesnotexist.result.err: +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.__type__: Result +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.api.version: extensions/v1beta1 +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable install-helm3-assets.result.err: +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0: map[api:map[component:k8s deprecated-in:v1.9.0 kind:Deployment removed-in:v1.16.0 replacement-api:apps/v1 replacement-available-in:v1.9.0 version:extensions/v1beta1] deprecated:true name:test/test-helm3chart-v1beta1 namespace:default removed:true replacementAvailable:true] +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.code: 3 +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-owide.result.__len__: 7 +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-show-all.result.err: +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemerr: +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.replacementavailable: true +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-kube-context-doesnotexist.result.__len__: 7 +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable install-helm3-assets.result.systemerr: +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect.__type__: Result +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ignore-deprecations.result.systemerr: +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.api.kind: Deployment +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-owide.result.err: +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable install-helm3-assets.result.systemoutjson: +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable venom.libdir: +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.target-versions.istio: v1.11.0 +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.target-versions.__type__: Map +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable venom.testsuite.shortName: 01_helm-detect-3 +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-owide.result.systemoutjson: +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.__len__: 2 +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable install-helm3-assets.result.timeseconds: 0.455330042 +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-show-all-ignore-removals.__type__: Result +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable venom.testcase: cleanup +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.__len__: 2 +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.api: map[component:k8s deprecated-in:v1.9.0 kind:Deployment removed-in:v1.16.0 replacement-api:apps/v1 replacement-available-in:v1.9.0 version:extensions/v1beta1] +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.namespace: demo2 +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.name: test/test-helm3chart-v1beta1 +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-owide.result.systemout: NAME NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN REPL AVAIL REPL AVAIL IN +test/test-helm3chart-v1beta1 default Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 +test/test-helm3chart-v1beta1 demo2 Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-kube-context-doesnotexist.result.systemout: error getting helm configuration: context "doesnotexist" does not exist +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-kube-context-doesnotexist.result.systemerrjson: +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-show-all-ignore-removals.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-show-all-ignore-removals.result.systemerr: +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson: map[items:[map[api:map[component:k8s deprecated-in:v1.9.0 kind:Deployment removed-in:v1.16.0 replacement-api:apps/v1 replacement-available-in:v1.9.0 version:extensions/v1beta1] deprecated:true name:test/test-helm3chart-v1beta1 namespace:default removed:true replacementAvailable:true] map[api:map[component:k8s deprecated-in:v1.9.0 kind:Deployment removed-in:v1.16.0 replacement-api:apps/v1 replacement-available-in:v1.9.0 version:extensions/v1beta1] deprecated:true name:test/test-helm3chart-v1beta1 namespace:demo2 removed:true replacementAvailable:true]] target-versions:map[cert-manager:v1.5.3 istio:v1.11.0 k8s:v1.16.0]] +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-owide.result.timeseconds: 0.039422458 +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-kube-context-doesnotexist.__type__: Result +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.target-versions: map[cert-manager:v1.5.3 istio:v1.11.0 k8s:v1.16.0] +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect.result.__len__: 7 +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-owide.result.systemerrjson: +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable install-helm3-assets.result.code: 0 +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.__type__: Map +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-show-all.result.systemerrjson: +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.namespace: default +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.target-versions.cert-manager: v1.5.3 +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable install-helm3-assets.result.__len__: 7 +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-kube-context-doesnotexist.result.timeseconds: 0.016536667 +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-owide.result.systemerr: +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.__type__: Array +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-owide.__type__: Result +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.deprecated: true +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-show-all-ignore-removals.result.timeseconds: 0.032012542 +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.api.replacement-available-in: v1.9.0 +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable venom.testsuite.filepath: tests/01_helm-detect-3.yaml +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.timeseconds: 0.034454667 +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-show-all-ignore-removals.result.systemerrjson: +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-show-all.__type__: Result +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable install-helm3-assets.result.systemout: namespace/demo2 created +secret/sh.helm.release.v1.demo2.v1 created +secret/sh.helm.release.v1.test.v1 created +secret/sh.helm.release.v1.test.v2 created +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-owide.result.code: 3 +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.deprecated: true +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.api.removed-in: v1.16.0 +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable venom.outputdir: +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable venom.timestamp: 1693938311 +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.__len__: 7 +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable venom.testsuite.filename: 01_helm-detect-3.yaml +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-show-all.result.__len__: 7 +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-show-all-ignore-removals.result.err: +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.removed: true +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-show-all-ignore-removals.result.__len__: 7 +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.api.deprecated-in: v1.9.0 +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.api.__type__: Map +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-show-all.result.systemerr: +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.api.__len__: 7 +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.api.replacement-available-in: v1.9.0 +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable __Len__: 8 +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.api.version: extensions/v1beta1 +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ignore-deprecations.__type__: Result +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.replacementavailable: true +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ignore-deprecations.result.__len__: 7 +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-kube-context-doesnotexist.result.code: 1 +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect.result.timeseconds: 0.03168675 +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-kube-context-doesnotexist.result.systemoutjson: +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-kube-context-doesnotexist.result.systemerr: +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.api.kind: Deployment +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable install-helm3-assets.result.systemerrjson: +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.api.__len__: 7 +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-show-all-ignore-removals.result.systemoutjson: +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ignore-deprecations.result.systemerrjson: +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.api.__type__: Map +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.api.replacement-api: apps/v1 +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ignore-deprecations.result.timeseconds: 0.027057833 +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable venom.testsuite: Static Code Files (including helm) +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.target-versions.k8s: v1.16.0 +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemerrjson: +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.api.replacement-api: apps/v1 +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable venom.testsuite.name: Static Code Files (including helm) +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.__len__: 6 +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.api.removed-in: v1.16.0 +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable __Type__: Map +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect.result.systemerrjson: +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.__len__: 6 +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemout: {"items":[{"name":"test/test-helm3chart-v1beta1","namespace":"default","api":{"version":"extensions/v1beta1","kind":"Deployment","deprecated-in":"v1.9.0","removed-in":"v1.16.0","replacement-api":"apps/v1","replacement-available-in":"v1.9.0","component":"k8s"},"deprecated":true,"removed":true,"replacementAvailable":true},{"name":"test/test-helm3chart-v1beta1","namespace":"demo2","api":{"version":"extensions/v1beta1","kind":"Deployment","deprecated-in":"v1.9.0","removed-in":"v1.16.0","replacement-api":"apps/v1","replacement-available-in":"v1.9.0","component":"k8s"},"deprecated":true,"removed":true,"replacementAvailable":true}],"target-versions":{"cert-manager":"v1.5.3","istio":"v1.11.0","k8s":"v1.16.0"}} +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect.result.code: 3 +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.err: +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.api: map[component:k8s deprecated-in:v1.9.0 kind:Deployment removed-in:v1.16.0 replacement-api:apps/v1 replacement-available-in:v1.9.0 version:extensions/v1beta1] +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable venom.datetime: 2023-09-05T12:25:11-06:00 +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-show-all.result.timeseconds: 0.031675333 +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable install-helm3-assets.__type__: Result +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect.result.systemoutjson: +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.api.component: k8s +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect.result.systemerr: +Sep 5 12:25:13.371 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ignore-deprecations.result.err: +Sep 5 12:25:13.372 [INFO] [Static Code Files (including helm)] [cleanup] Step #0 content is: {"script":"kubectl delete -f assets/helm3\nkubectl delete ns demo2\n"} +Sep 5 12:25:13.372 [DEBU] [Static Code Files (including helm)] [cleanup] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-3103867869 +Sep 5 12:25:13.373 [DEBU] [Static Code Files (including helm)] [cleanup] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-3103867869' +Sep 5 12:25:13.522 [DEBU] [Static Code Files (including helm)] [cleanup] [exec] secret "sh.helm.release.v1.demo2.v1" deleted + +Sep 5 12:25:13.527 [DEBU] [Static Code Files (including helm)] [cleanup] [exec] secret "sh.helm.release.v1.test.v1" deleted + +Sep 5 12:25:13.531 [DEBU] [Static Code Files (including helm)] [cleanup] [exec] secret "sh.helm.release.v1.test.v2" deleted + +Sep 5 12:25:13.685 [DEBU] [Static Code Files (including helm)] [cleanup] [exec] namespace "demo2" deleted + +Sep 5 12:25:18.785 [DEBU] [Static Code Files (including helm)] [cleanup] [exec] result of runTestStepExecutor: {Systemout:secret "sh.helm.release.v1.demo2.v1" deleted +secret "sh.helm.release.v1.test.v1" deleted +secret "sh.helm.release.v1.test.v2" deleted +namespace "demo2" deleted SystemoutJSON: Systemerr: SystemerrJSON: Err: Code:0 TimeSeconds:5.412021041} +Sep 5 12:25:18.785 [INFO] [Static Code Files (including helm)] [cleanup] Ending testcase +Sep 5 12:25:18.785 [INFO] [Static Code Files (including helm)] Ending testsuite +Sep 5 12:25:18.785 [INFO] [CLI Validation] Starting testsuite +Sep 5 12:25:18.785 [INFO] [CLI Validation] [Pass-bad-semver-with-no-v] Starting testcase +Sep 5 12:25:18.785 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] Running testcase with variable venom.testsuite.filename: 03-cli-validation.yaml +Sep 5 12:25:18.785 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] Running testcase with variable venom.datetime: 2023-09-05T12:25:11-06:00 +Sep 5 12:25:18.785 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] Running testcase with variable venom.timestamp: 1693938311 +Sep 5 12:25:18.785 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] Running testcase with variable __Type__: Map +Sep 5 12:25:18.785 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] Running testcase with variable venom.outputdir: +Sep 5 12:25:18.785 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] Running testcase with variable venom.testsuite.shortName: 03-cli-validation +Sep 5 12:25:18.785 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] Running testcase with variable venom.testcase: Pass-bad-semver-with-no-v +Sep 5 12:25:18.785 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] Running testcase with variable venom.testsuite.name: CLI Validation +Sep 5 12:25:18.785 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] Running testcase with variable __Len__: 8 +Sep 5 12:25:18.785 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] Running testcase with variable venom.testsuite.filepath: tests/03-cli-validation.yaml +Sep 5 12:25:18.785 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] Running testcase with variable venom.testsuite: CLI Validation +Sep 5 12:25:18.785 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:25:18.785 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:25:18.785 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] Running testcase with variable venom.libdir: +Sep 5 12:25:18.786 [INFO] [CLI Validation] [Pass-bad-semver-with-no-v] Step #0 content is: {"assertions":["result.code ShouldEqual 1","result.systemerr ShouldContainSubstring \"you must use valid semver for all target versions with a leading 'v' - got foo 1.0.0\""],"script":"pluto detect-files -d assets/deprecated116 --target-versions foo=1.0.0"} +Sep 5 12:25:18.786 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-59009125 +Sep 5 12:25:18.786 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-59009125' +Sep 5 12:25:18.803 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] Error: you must use valid semver for all target versions with a leading 'v' - got foo 1.0.0 + +Sep 5 12:25:18.804 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] Usage: + +Sep 5 12:25:18.804 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] pluto detect-files [flags] + +Sep 5 12:25:18.804 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] + +Sep 5 12:25:18.804 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] Flags: + +Sep 5 12:25:18.804 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] -d, --directory string The directory to scan. If blank, defaults to current working dir. + +Sep 5 12:25:18.804 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] -h, --help help for detect-files + +Sep 5 12:25:18.804 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] + +Sep 5 12:25:18.804 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] Global Flags: + +Sep 5 12:25:18.804 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + +Sep 5 12:25:18.804 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + +Sep 5 12:25:18.804 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] --components strings A list of components to run checks for. If nil, will check for all found in versions. + +Sep 5 12:25:18.804 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + +Sep 5 12:25:18.804 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + +Sep 5 12:25:18.804 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + +Sep 5 12:25:18.804 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] --no-footer Disable footer output + +Sep 5 12:25:18.804 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + +Sep 5 12:25:18.804 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + +Sep 5 12:25:18.804 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + +Sep 5 12:25:18.804 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + +Sep 5 12:25:18.804 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] -v, --v Level number for the log level verbosity + +Sep 5 12:25:18.804 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] + +Sep 5 12:25:18.804 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] E0905 12:25:18.803810 871 root.go:474] you must use valid semver for all target versions with a leading 'v' - got foo 1.0.0 + +Sep 5 12:25:18.804 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] result of runTestStepExecutor: {Systemout: SystemoutJSON: Systemerr:Error: you must use valid semver for all target versions with a leading 'v' - got foo 1.0.0 +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:25:18.803810 871 root.go:474] you must use valid semver for all target versions with a leading 'v' - got foo 1.0.0 SystemerrJSON: Err: Code:1 TimeSeconds:0.017677125} +Sep 5 12:25:18.805 [INFO] [CLI Validation] [Pass-bad-semver-with-no-v] Ending testcase +Sep 5 12:25:18.805 [INFO] [CLI Validation] [Pass-bad-semver-starting-with-v] Starting testcase +Sep 5 12:25:18.805 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable Pass-bad-semver-with-no-v.result.systemoutjson: +Sep 5 12:25:18.805 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable Pass-bad-semver-with-no-v.__type__: Result +Sep 5 12:25:18.805 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable __Len__: 8 +Sep 5 12:25:18.805 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable __Type__: Map +Sep 5 12:25:18.805 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable venom.outputdir: +Sep 5 12:25:18.805 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable venom.testcase: Pass-bad-semver-starting-with-v +Sep 5 12:25:18.805 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable Pass-bad-semver-with-no-v.result.systemout: +Sep 5 12:25:18.805 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable venom.libdir: +Sep 5 12:25:18.805 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable venom.testsuite.filepath: tests/03-cli-validation.yaml +Sep 5 12:25:18.805 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable venom.testsuite: CLI Validation +Sep 5 12:25:18.805 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:25:18.805 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable venom.timestamp: 1693938311 +Sep 5 12:25:18.805 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:25:18.805 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable Pass-bad-semver-with-no-v.result.systemerrjson: +Sep 5 12:25:18.805 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable Pass-bad-semver-with-no-v.result.code: 1 +Sep 5 12:25:18.805 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable Pass-bad-semver-with-no-v.result.__len__: 7 +Sep 5 12:25:18.805 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable Pass-bad-semver-with-no-v.result.err: +Sep 5 12:25:18.805 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable Pass-bad-semver-with-no-v.result.systemerr: Error: you must use valid semver for all target versions with a leading 'v' - got foo 1.0.0 +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:25:18.803810 871 root.go:474] you must use valid semver for all target versions with a leading 'v' - got foo 1.0.0 +Sep 5 12:25:18.805 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable venom.testsuite.name: CLI Validation +Sep 5 12:25:18.805 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable venom.testsuite.shortName: 03-cli-validation +Sep 5 12:25:18.805 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable venom.testsuite.filename: 03-cli-validation.yaml +Sep 5 12:25:18.805 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable venom.datetime: 2023-09-05T12:25:11-06:00 +Sep 5 12:25:18.805 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable Pass-bad-semver-with-no-v.result.timeseconds: 0.017677125 +Sep 5 12:25:18.805 [INFO] [CLI Validation] [Pass-bad-semver-starting-with-v] Step #0 content is: {"assertions":["result.code ShouldEqual 1","result.systemerr ShouldContainSubstring \"you must use valid semver for all target versions with a leading 'v' - got foo vfoo\""],"script":"pluto detect-files -d assets/deprecated116 --target-versions foo=vfoo"} +Sep 5 12:25:18.805 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-3781517714 +Sep 5 12:25:18.806 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-3781517714' +Sep 5 12:25:18.820 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] Error: you must use valid semver for all target versions with a leading 'v' - got foo vfoo + +Sep 5 12:25:18.820 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] Usage: + +Sep 5 12:25:18.820 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] pluto detect-files [flags] + +Sep 5 12:25:18.820 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] + +Sep 5 12:25:18.820 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] Flags: + +Sep 5 12:25:18.820 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] -d, --directory string The directory to scan. If blank, defaults to current working dir. + +Sep 5 12:25:18.820 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] -h, --help help for detect-files + +Sep 5 12:25:18.820 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] + +Sep 5 12:25:18.820 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] Global Flags: + +Sep 5 12:25:18.820 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + +Sep 5 12:25:18.821 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + +Sep 5 12:25:18.821 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] --components strings A list of components to run checks for. If nil, will check for all found in versions. + +Sep 5 12:25:18.821 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + +Sep 5 12:25:18.821 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + +Sep 5 12:25:18.821 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + +Sep 5 12:25:18.821 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] --no-footer Disable footer output + +Sep 5 12:25:18.821 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + +Sep 5 12:25:18.821 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + +Sep 5 12:25:18.821 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + +Sep 5 12:25:18.821 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + +Sep 5 12:25:18.821 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] -v, --v Level number for the log level verbosity + +Sep 5 12:25:18.821 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] + +Sep 5 12:25:18.821 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] E0905 12:25:18.820905 873 root.go:474] you must use valid semver for all target versions with a leading 'v' - got foo vfoo + +Sep 5 12:25:18.821 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] result of runTestStepExecutor: {Systemout: SystemoutJSON: Systemerr:Error: you must use valid semver for all target versions with a leading 'v' - got foo vfoo +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:25:18.820905 873 root.go:474] you must use valid semver for all target versions with a leading 'v' - got foo vfoo SystemerrJSON: Err: Code:1 TimeSeconds:0.015382625} +Sep 5 12:25:18.822 [INFO] [CLI Validation] [Pass-bad-semver-starting-with-v] Ending testcase +Sep 5 12:25:18.822 [INFO] [CLI Validation] [list-versions-ojson] Starting testcase +Sep 5 12:25:18.822 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable venom.testsuite.name: CLI Validation +Sep 5 12:25:18.822 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemoutjson: +Sep 5 12:25:18.822 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable Pass-bad-semver-with-no-v.__type__: Result +Sep 5 12:25:18.822 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable __Type__: Map +Sep 5 12:25:18.822 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:25:18.822 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable Pass-bad-semver-starting-with-v.result.code: 1 +Sep 5 12:25:18.822 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable venom.testsuite.filename: 03-cli-validation.yaml +Sep 5 12:25:18.822 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemerrjson: +Sep 5 12:25:18.822 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable Pass-bad-semver-starting-with-v.__type__: Result +Sep 5 12:25:18.822 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable Pass-bad-semver-starting-with-v.result.timeseconds: 0.015382625 +Sep 5 12:25:18.822 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable venom.testsuite.shortName: 03-cli-validation +Sep 5 12:25:18.822 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable venom.testsuite.filepath: tests/03-cli-validation.yaml +Sep 5 12:25:18.822 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable venom.libdir: +Sep 5 12:25:18.822 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable Pass-bad-semver-with-no-v.result.systemerr: Error: you must use valid semver for all target versions with a leading 'v' - got foo 1.0.0 +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:25:18.803810 871 root.go:474] you must use valid semver for all target versions with a leading 'v' - got foo 1.0.0 +Sep 5 12:25:18.822 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable Pass-bad-semver-with-no-v.result.code: 1 +Sep 5 12:25:18.822 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable Pass-bad-semver-starting-with-v.result.__len__: 7 +Sep 5 12:25:18.822 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable Pass-bad-semver-with-no-v.result.systemoutjson: +Sep 5 12:25:18.822 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable Pass-bad-semver-with-no-v.result.systemerrjson: +Sep 5 12:25:18.822 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemout: +Sep 5 12:25:18.822 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable venom.timestamp: 1693938311 +Sep 5 12:25:18.822 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:25:18.822 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable Pass-bad-semver-with-no-v.result.systemout: +Sep 5 12:25:18.822 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable venom.datetime: 2023-09-05T12:25:11-06:00 +Sep 5 12:25:18.822 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable Pass-bad-semver-starting-with-v.result.err: +Sep 5 12:25:18.822 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable Pass-bad-semver-with-no-v.result.err: +Sep 5 12:25:18.822 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable venom.outputdir: +Sep 5 12:25:18.822 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable venom.testsuite: CLI Validation +Sep 5 12:25:18.822 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable __Len__: 8 +Sep 5 12:25:18.822 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable venom.testcase: list-versions-ojson +Sep 5 12:25:18.822 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable Pass-bad-semver-with-no-v.result.__len__: 7 +Sep 5 12:25:18.822 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemerr: Error: you must use valid semver for all target versions with a leading 'v' - got foo vfoo +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:25:18.820905 873 root.go:474] you must use valid semver for all target versions with a leading 'v' - got foo vfoo +Sep 5 12:25:18.822 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable Pass-bad-semver-with-no-v.result.timeseconds: 0.017677125 +Sep 5 12:25:18.822 [INFO] [CLI Validation] [list-versions-ojson] Step #0 content is: {"assertions":["result.code ShouldEqual 0"],"script":"pluto list-versions"} +Sep 5 12:25:18.822 [DEBU] [CLI Validation] [list-versions-ojson] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-1418705418 +Sep 5 12:25:18.822 [DEBU] [CLI Validation] [list-versions-ojson] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-1418705418' +Sep 5 12:25:18.838 [DEBU] [CLI Validation] [list-versions-ojson] [exec] KIND NAME DEPRECATED IN REMOVED IN REPLACEMENT REPL AVAIL IN COMPONENT + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Deployment extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Deployment apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Deployment apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] StatefulSet apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] StatefulSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] NetworkPolicy extensions/v1beta1 v1.9.0 v1.16.0 networking.k8s.io/v1 v1.8.0 k8s + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Ingress extensions/v1beta1 v1.14.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Ingress networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] IngressClass networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] DaemonSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] DaemonSet extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] PodSecurityPolicy extensions/v1beta1 v1.10.0 v1.16.0 policy/v1beta1 v1.10.0 k8s + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] PodSecurityPolicy policy/v1beta1 v1.21.0 v1.25.0 n/a n/a k8s + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] ReplicaSet extensions/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] ReplicaSet apps/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] ReplicaSet apps/v1beta2 n/a v1.16.0 apps/v1 v1.9.0 k8s + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] PriorityClass scheduling.k8s.io/v1beta1 v1.14.0 v1.22.0 scheduling.k8s.io/v1 v1.14.0 k8s + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] PriorityClass scheduling.k8s.io/v1alpha1 v1.14.0 v1.17.0 scheduling.k8s.io/v1 n/a k8s + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] CustomResourceDefinition apiextensions.k8s.io/v1beta1 v1.16.0 v1.22.0 apiextensions.k8s.io/v1 v1.16.0 k8s + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] MutatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] ValidatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] ClusterRoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] ClusterRole rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] ClusterRoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] ClusterRoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Role rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] RoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] RoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] RoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] ClusterRoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] ClusterRole rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] ClusterRoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] ClusterRoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Role rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] RoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] RoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] RoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] RuntimeClass node.k8s.io/v1beta1 v1.22.0 v1.25.0 node.k8s.io/v1 v1.20.0 k8s + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] PodDisruptionBudget policy/v1beta1 v1.21.0 v1.25.0 policy/v1 v1.21.0 k8s + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] PodDisruptionBudgetList policy/v1beta1 v1.21.0 v1.25.0 policy/v1 n/a k8s + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] HorizontalPodAutoscaler autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 v1.23.0 k8s + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] HorizontalPodAutoscalerList autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 n/a k8s + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] HorizontalPodAutoscaler autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] HorizontalPodAutoscalerList autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] CronJob batch/v1beta1 v1.21.0 v1.25.0 batch/v1 v1.21.0 k8s + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] CronJobList batch/v1beta1 v1.21.0 v1.25.0 batch/v1 n/a k8s + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] CSINode storage.k8s.io/v1beta1 v1.17.0 v1.22.0 storage.k8s.io/v1 v1.17.0 k8s + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] CSIDriver storage.k8s.io/v1beta1 v1.19.0 v1.22.0 storage.k8s.io/v1 v1.19.0 k8s + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] CSIStorageCapacity storage.k8s.io/v1beta1 v1.24.0 v1.27.0 storage.k8s.io/v1 v1.24.0 k8s + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] StorageClass storage.k8s.io/v1beta1 v1.6.0 v1.22.0 storage.k8s.io/v1 v1.6.0 k8s + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] VolumeAttachment storage.k8s.io/v1beta1 v1.13.0 v1.22.0 storage.k8s.io/v1 v1.13.0 k8s + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] APIService apiregistration.k8s.io/v1beta1 v1.10.0 v1.22.0 apiregistration.k8s.io/v1 v1.10.0 k8s + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] TokenReview authentication.k8s.io/v1beta1 v1.6.0 v1.22.0 authentication.k8s.io/v1 v1.6.0 k8s + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] CertificateSigningRequest certificates.k8s.io/v1beta1 v1.19.0 v1.22.0 certificates.k8s.io/v1 v1.19.0 k8s + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Lease coordination.k8s.io/v1beta1 v1.14.0 v1.22.0 coordination.k8s.io/v1 v1.14.0 k8s + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Event events.k8s.io/v1beta1 v1.19.0 v1.25.0 events.k8s.io/v1 v1.19.0 k8s + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] EndpointSlice discovery.k8s.io/v1beta1 v1.21.0 v1.25.0 discovery.k8s.io/v1 v1.21.0 k8s + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] FlowControl flowcontrol.apiserver.k8s.io/v1beta1 v1.23.0 v1.26.0 flowcontrol.apiserver.k8s.io/v1beta2 n/a k8s + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] AuthorizationPolicies rbac.istio.io v1.4.0 v1.4.0 security.istio.io/v1beta1 n/a istio + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] authentication.istio.io/v1alpha1 v1.5.0 v1.6.0 security.istio.io/v1beta1 n/a istio + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Certificate certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Issuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] ClusterIssuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] CertificateRequest certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Order certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Challenge certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Certificate cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Certificate cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Certificate cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:25:18.839 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Issuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:25:18.840 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Issuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:25:18.840 [DEBU] [CLI Validation] [list-versions-ojson] [exec] + +Sep 5 12:25:18.840 [DEBU] [CLI Validation] [list-versions-ojson] [exec] + +Sep 5 12:25:18.840 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Want more? Automate Pluto for free with Fairwinds Insights! + +Sep 5 12:25:18.840 [DEBU] [CLI Validation] [list-versions-ojson] [exec] 🚀 https://fairwinds.com/insights-signup/pluto 🚀 + +Sep 5 12:25:18.840 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Issuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:25:18.840 [DEBU] [CLI Validation] [list-versions-ojson] [exec] ClusterIssuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:25:18.840 [DEBU] [CLI Validation] [list-versions-ojson] [exec] ClusterIssuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:25:18.840 [DEBU] [CLI Validation] [list-versions-ojson] [exec] ClusterIssuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:25:18.840 [DEBU] [CLI Validation] [list-versions-ojson] [exec] CertificateRequest cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:25:18.840 [DEBU] [CLI Validation] [list-versions-ojson] [exec] CertificateRequest cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:25:18.840 [DEBU] [CLI Validation] [list-versions-ojson] [exec] CertificateRequest cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:25:18.840 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Order acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:25:18.840 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Order acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:25:18.840 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Order acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:25:18.840 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Challenge acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:25:18.840 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Challenge acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:25:18.840 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Challenge acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:25:18.840 [DEBU] [CLI Validation] [list-versions-ojson] [exec] FlowSchema flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s + +Sep 5 12:25:18.840 [DEBU] [CLI Validation] [list-versions-ojson] [exec] PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s + +Sep 5 12:25:18.840 [DEBU] [CLI Validation] [list-versions-ojson] [exec] PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s + +Sep 5 12:25:18.840 [DEBU] [CLI Validation] [list-versions-ojson] [exec] FLowSchema flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s + +Sep 5 12:25:18.841 [DEBU] [CLI Validation] [list-versions-ojson] [exec] result of runTestStepExecutor: {Systemout:KIND NAME DEPRECATED IN REMOVED IN REPLACEMENT REPL AVAIL IN COMPONENT +Deployment extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +NetworkPolicy extensions/v1beta1 v1.9.0 v1.16.0 networking.k8s.io/v1 v1.8.0 k8s +Ingress extensions/v1beta1 v1.14.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +Ingress networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +IngressClass networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +DaemonSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +DaemonSet extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +PodSecurityPolicy extensions/v1beta1 v1.10.0 v1.16.0 policy/v1beta1 v1.10.0 k8s +PodSecurityPolicy policy/v1beta1 v1.21.0 v1.25.0 n/a n/a k8s +ReplicaSet extensions/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta2 n/a v1.16.0 apps/v1 v1.9.0 k8s +PriorityClass scheduling.k8s.io/v1beta1 v1.14.0 v1.22.0 scheduling.k8s.io/v1 v1.14.0 k8s +PriorityClass scheduling.k8s.io/v1alpha1 v1.14.0 v1.17.0 scheduling.k8s.io/v1 n/a k8s +CustomResourceDefinition apiextensions.k8s.io/v1beta1 v1.16.0 v1.22.0 apiextensions.k8s.io/v1 v1.16.0 k8s +MutatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ValidatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRole rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRole rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RuntimeClass node.k8s.io/v1beta1 v1.22.0 v1.25.0 node.k8s.io/v1 v1.20.0 k8s +PodDisruptionBudget policy/v1beta1 v1.21.0 v1.25.0 policy/v1 v1.21.0 k8s +PodDisruptionBudgetList policy/v1beta1 v1.21.0 v1.25.0 policy/v1 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 v1.23.0 k8s +HorizontalPodAutoscalerList autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscalerList autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +CronJob batch/v1beta1 v1.21.0 v1.25.0 batch/v1 v1.21.0 k8s +CronJobList batch/v1beta1 v1.21.0 v1.25.0 batch/v1 n/a k8s +CSINode storage.k8s.io/v1beta1 v1.17.0 v1.22.0 storage.k8s.io/v1 v1.17.0 k8s +CSIDriver storage.k8s.io/v1beta1 v1.19.0 v1.22.0 storage.k8s.io/v1 v1.19.0 k8s +CSIStorageCapacity storage.k8s.io/v1beta1 v1.24.0 v1.27.0 storage.k8s.io/v1 v1.24.0 k8s +StorageClass storage.k8s.io/v1beta1 v1.6.0 v1.22.0 storage.k8s.io/v1 v1.6.0 k8s +VolumeAttachment storage.k8s.io/v1beta1 v1.13.0 v1.22.0 storage.k8s.io/v1 v1.13.0 k8s +APIService apiregistration.k8s.io/v1beta1 v1.10.0 v1.22.0 apiregistration.k8s.io/v1 v1.10.0 k8s +TokenReview authentication.k8s.io/v1beta1 v1.6.0 v1.22.0 authentication.k8s.io/v1 v1.6.0 k8s +CertificateSigningRequest certificates.k8s.io/v1beta1 v1.19.0 v1.22.0 certificates.k8s.io/v1 v1.19.0 k8s +Lease coordination.k8s.io/v1beta1 v1.14.0 v1.22.0 coordination.k8s.io/v1 v1.14.0 k8s +Event events.k8s.io/v1beta1 v1.19.0 v1.25.0 events.k8s.io/v1 v1.19.0 k8s +EndpointSlice discovery.k8s.io/v1beta1 v1.21.0 v1.25.0 discovery.k8s.io/v1 v1.21.0 k8s +FlowControl flowcontrol.apiserver.k8s.io/v1beta1 v1.23.0 v1.26.0 flowcontrol.apiserver.k8s.io/v1beta2 n/a k8s +AuthorizationPolicies rbac.istio.io v1.4.0 v1.4.0 security.istio.io/v1beta1 n/a istio + authentication.istio.io/v1alpha1 v1.5.0 v1.6.0 security.istio.io/v1beta1 n/a istio +Certificate certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Issuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +ClusterIssuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +CertificateRequest certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Order certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Challenge certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Certificate cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +FlowSchema flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +FLowSchema flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s SystemoutJSON: Systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 SystemerrJSON: Err: Code:0 TimeSeconds:0.018252541} +Sep 5 12:25:18.841 [INFO] [CLI Validation] [list-versions-ojson] Ending testcase +Sep 5 12:25:18.841 [INFO] [CLI Validation] [list-versions-additional-file-duplicate] Starting testcase +Sep 5 12:25:18.841 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemerr: Error: you must use valid semver for all target versions with a leading 'v' - got foo vfoo +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:25:18.820905 873 root.go:474] you must use valid semver for all target versions with a leading 'v' - got foo vfoo +Sep 5 12:25:18.841 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable list-versions-ojson.result.code: 0 +Sep 5 12:25:18.841 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable Pass-bad-semver-with-no-v.result.systemoutjson: +Sep 5 12:25:18.841 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable Pass-bad-semver-starting-with-v.result.err: +Sep 5 12:25:18.841 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable venom.datetime: 2023-09-05T12:25:11-06:00 +Sep 5 12:25:18.841 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemout: +Sep 5 12:25:18.841 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable Pass-bad-semver-with-no-v.result.systemerr: Error: you must use valid semver for all target versions with a leading 'v' - got foo 1.0.0 +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:25:18.803810 871 root.go:474] you must use valid semver for all target versions with a leading 'v' - got foo 1.0.0 +Sep 5 12:25:18.841 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable Pass-bad-semver-starting-with-v.result.timeseconds: 0.015382625 +Sep 5 12:25:18.841 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable Pass-bad-semver-starting-with-v.result.__len__: 7 +Sep 5 12:25:18.841 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable venom.testsuite.filepath: tests/03-cli-validation.yaml +Sep 5 12:25:18.841 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable venom.testsuite.filename: 03-cli-validation.yaml +Sep 5 12:25:18.841 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable venom.testsuite.name: CLI Validation +Sep 5 12:25:18.841 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable venom.testcase: list-versions-additional-file-duplicate +Sep 5 12:25:18.841 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable Pass-bad-semver-starting-with-v.result.code: 1 +Sep 5 12:25:18.841 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable Pass-bad-semver-with-no-v.__type__: Result +Sep 5 12:25:18.841 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable list-versions-ojson.result.timeseconds: 0.018252541 +Sep 5 12:25:18.841 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable list-versions-ojson.result.systemout: KIND NAME DEPRECATED IN REMOVED IN REPLACEMENT REPL AVAIL IN COMPONENT +Deployment extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +NetworkPolicy extensions/v1beta1 v1.9.0 v1.16.0 networking.k8s.io/v1 v1.8.0 k8s +Ingress extensions/v1beta1 v1.14.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +Ingress networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +IngressClass networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +DaemonSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +DaemonSet extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +PodSecurityPolicy extensions/v1beta1 v1.10.0 v1.16.0 policy/v1beta1 v1.10.0 k8s +PodSecurityPolicy policy/v1beta1 v1.21.0 v1.25.0 n/a n/a k8s +ReplicaSet extensions/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta2 n/a v1.16.0 apps/v1 v1.9.0 k8s +PriorityClass scheduling.k8s.io/v1beta1 v1.14.0 v1.22.0 scheduling.k8s.io/v1 v1.14.0 k8s +PriorityClass scheduling.k8s.io/v1alpha1 v1.14.0 v1.17.0 scheduling.k8s.io/v1 n/a k8s +CustomResourceDefinition apiextensions.k8s.io/v1beta1 v1.16.0 v1.22.0 apiextensions.k8s.io/v1 v1.16.0 k8s +MutatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ValidatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRole rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRole rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RuntimeClass node.k8s.io/v1beta1 v1.22.0 v1.25.0 node.k8s.io/v1 v1.20.0 k8s +PodDisruptionBudget policy/v1beta1 v1.21.0 v1.25.0 policy/v1 v1.21.0 k8s +PodDisruptionBudgetList policy/v1beta1 v1.21.0 v1.25.0 policy/v1 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 v1.23.0 k8s +HorizontalPodAutoscalerList autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscalerList autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +CronJob batch/v1beta1 v1.21.0 v1.25.0 batch/v1 v1.21.0 k8s +CronJobList batch/v1beta1 v1.21.0 v1.25.0 batch/v1 n/a k8s +CSINode storage.k8s.io/v1beta1 v1.17.0 v1.22.0 storage.k8s.io/v1 v1.17.0 k8s +CSIDriver storage.k8s.io/v1beta1 v1.19.0 v1.22.0 storage.k8s.io/v1 v1.19.0 k8s +CSIStorageCapacity storage.k8s.io/v1beta1 v1.24.0 v1.27.0 storage.k8s.io/v1 v1.24.0 k8s +StorageClass storage.k8s.io/v1beta1 v1.6.0 v1.22.0 storage.k8s.io/v1 v1.6.0 k8s +VolumeAttachment storage.k8s.io/v1beta1 v1.13.0 v1.22.0 storage.k8s.io/v1 v1.13.0 k8s +APIService apiregistration.k8s.io/v1beta1 v1.10.0 v1.22.0 apiregistration.k8s.io/v1 v1.10.0 k8s +TokenReview authentication.k8s.io/v1beta1 v1.6.0 v1.22.0 authentication.k8s.io/v1 v1.6.0 k8s +CertificateSigningRequest certificates.k8s.io/v1beta1 v1.19.0 v1.22.0 certificates.k8s.io/v1 v1.19.0 k8s +Lease coordination.k8s.io/v1beta1 v1.14.0 v1.22.0 coordination.k8s.io/v1 v1.14.0 k8s +Event events.k8s.io/v1beta1 v1.19.0 v1.25.0 events.k8s.io/v1 v1.19.0 k8s +EndpointSlice discovery.k8s.io/v1beta1 v1.21.0 v1.25.0 discovery.k8s.io/v1 v1.21.0 k8s +FlowControl flowcontrol.apiserver.k8s.io/v1beta1 v1.23.0 v1.26.0 flowcontrol.apiserver.k8s.io/v1beta2 n/a k8s +AuthorizationPolicies rbac.istio.io v1.4.0 v1.4.0 security.istio.io/v1beta1 n/a istio + authentication.istio.io/v1alpha1 v1.5.0 v1.6.0 security.istio.io/v1beta1 n/a istio +Certificate certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Issuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +ClusterIssuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +CertificateRequest certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Order certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Challenge certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Certificate cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +FlowSchema flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +FLowSchema flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +Sep 5 12:25:18.841 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable venom.testsuite.shortName: 03-cli-validation +Sep 5 12:25:18.841 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable __Len__: 8 +Sep 5 12:25:18.841 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable list-versions-ojson.result.systemoutjson: +Sep 5 12:25:18.841 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemerrjson: +Sep 5 12:25:18.841 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable Pass-bad-semver-starting-with-v.__type__: Result +Sep 5 12:25:18.841 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:25:18.841 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable Pass-bad-semver-with-no-v.result.systemout: +Sep 5 12:25:18.841 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable Pass-bad-semver-with-no-v.result.code: 1 +Sep 5 12:25:18.841 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable list-versions-ojson.__type__: Result +Sep 5 12:25:18.841 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable list-versions-ojson.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:18.841 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable venom.outputdir: +Sep 5 12:25:18.841 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable Pass-bad-semver-with-no-v.result.systemerrjson: +Sep 5 12:25:18.841 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemoutjson: +Sep 5 12:25:18.841 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable list-versions-ojson.result.__len__: 7 +Sep 5 12:25:18.841 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable Pass-bad-semver-with-no-v.result.err: +Sep 5 12:25:18.841 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable __Type__: Map +Sep 5 12:25:18.841 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable venom.libdir: +Sep 5 12:25:18.841 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable Pass-bad-semver-with-no-v.result.timeseconds: 0.017677125 +Sep 5 12:25:18.841 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable list-versions-ojson.result.err: +Sep 5 12:25:18.841 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable list-versions-ojson.result.systemerrjson: +Sep 5 12:25:18.841 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable venom.timestamp: 1693938311 +Sep 5 12:25:18.841 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable venom.testsuite: CLI Validation +Sep 5 12:25:18.841 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable Pass-bad-semver-with-no-v.result.__len__: 7 +Sep 5 12:25:18.841 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:25:18.841 [INFO] [CLI Validation] [list-versions-additional-file-duplicate] Step #0 content is: {"assertions":["result.code ShouldEqual 1","result.systemerr ShouldContainSubstring 'duplicate cannot be added to defaults'","result.systemerr ShouldContainSubstring 'extensions/v1beta1'"],"script":"pluto list-versions -f assets/additional-versions/duplicate.yaml"} +Sep 5 12:25:18.842 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-583262186 +Sep 5 12:25:18.842 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-583262186' +Sep 5 12:25:18.858 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] Error: duplicate cannot be added to defaults: Deployment extensions/v1beta1 + +Sep 5 12:25:18.858 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] Usage: + +Sep 5 12:25:18.858 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] pluto list-versions [flags] + +Sep 5 12:25:18.858 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] + +Sep 5 12:25:18.858 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] Flags: + +Sep 5 12:25:18.858 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] -h, --help help for list-versions + +Sep 5 12:25:18.858 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] + +Sep 5 12:25:18.858 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] Global Flags: + +Sep 5 12:25:18.858 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + +Sep 5 12:25:18.858 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + +Sep 5 12:25:18.858 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] --components strings A list of components to run checks for. If nil, will check for all found in versions. + +Sep 5 12:25:18.858 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + +Sep 5 12:25:18.858 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + +Sep 5 12:25:18.858 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + +Sep 5 12:25:18.858 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] --no-footer Disable footer output + +Sep 5 12:25:18.858 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + +Sep 5 12:25:18.858 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + +Sep 5 12:25:18.858 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + +Sep 5 12:25:18.858 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + +Sep 5 12:25:18.858 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] -v, --v Level number for the log level verbosity + +Sep 5 12:25:18.858 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] + +Sep 5 12:25:18.858 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] E0905 12:25:18.858651 877 root.go:474] duplicate cannot be added to defaults: Deployment extensions/v1beta1 + +Sep 5 12:25:18.859 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] result of runTestStepExecutor: {Systemout: SystemoutJSON: Systemerr:Error: duplicate cannot be added to defaults: Deployment extensions/v1beta1 +Usage: + pluto list-versions [flags] + +Flags: + -h, --help help for list-versions + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:25:18.858651 877 root.go:474] duplicate cannot be added to defaults: Deployment extensions/v1beta1 SystemerrJSON: Err: Code:1 TimeSeconds:0.016889042} +Sep 5 12:25:18.859 [INFO] [CLI Validation] [list-versions-additional-file-duplicate] Ending testcase +Sep 5 12:25:18.859 [INFO] [CLI Validation] [list-versions-additional-file] Starting testcase +Sep 5 12:25:18.859 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable list-versions-ojson.__type__: Result +Sep 5 12:25:18.859 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable venom.testsuite.filepath: tests/03-cli-validation.yaml +Sep 5 12:25:18.859 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable venom.testsuite: CLI Validation +Sep 5 12:25:18.859 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:25:18.859 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable venom.outputdir: +Sep 5 12:25:18.859 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable list-versions-ojson.result.timeseconds: 0.018252541 +Sep 5 12:25:18.859 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable list-versions-ojson.result.err: +Sep 5 12:25:18.859 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable list-versions-additional-file-duplicate.result.systemoutjson: +Sep 5 12:25:18.859 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable Pass-bad-semver-starting-with-v.result.timeseconds: 0.015382625 +Sep 5 12:25:18.859 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable venom.testcase: list-versions-additional-file +Sep 5 12:25:18.859 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable list-versions-ojson.result.systemoutjson: +Sep 5 12:25:18.859 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable Pass-bad-semver-with-no-v.result.err: +Sep 5 12:25:18.859 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable list-versions-ojson.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:18.859 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable list-versions-additional-file-duplicate.result.code: 1 +Sep 5 12:25:18.859 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemout: +Sep 5 12:25:18.859 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable Pass-bad-semver-with-no-v.result.timeseconds: 0.017677125 +Sep 5 12:25:18.859 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable Pass-bad-semver-with-no-v.result.code: 1 +Sep 5 12:25:18.859 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable list-versions-additional-file-duplicate.result.systemerr: Error: duplicate cannot be added to defaults: Deployment extensions/v1beta1 +Usage: + pluto list-versions [flags] + +Flags: + -h, --help help for list-versions + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:25:18.858651 877 root.go:474] duplicate cannot be added to defaults: Deployment extensions/v1beta1 +Sep 5 12:25:18.859 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable list-versions-additional-file-duplicate.result.timeseconds: 0.016889042 +Sep 5 12:25:18.859 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:25:18.859 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable venom.testsuite.filename: 03-cli-validation.yaml +Sep 5 12:25:18.859 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable Pass-bad-semver-with-no-v.result.systemerrjson: +Sep 5 12:25:18.859 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable list-versions-ojson.result.__len__: 7 +Sep 5 12:25:18.859 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable Pass-bad-semver-with-no-v.result.systemout: +Sep 5 12:25:18.859 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable list-versions-ojson.result.systemout: KIND NAME DEPRECATED IN REMOVED IN REPLACEMENT REPL AVAIL IN COMPONENT +Deployment extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +NetworkPolicy extensions/v1beta1 v1.9.0 v1.16.0 networking.k8s.io/v1 v1.8.0 k8s +Ingress extensions/v1beta1 v1.14.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +Ingress networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +IngressClass networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +DaemonSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +DaemonSet extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +PodSecurityPolicy extensions/v1beta1 v1.10.0 v1.16.0 policy/v1beta1 v1.10.0 k8s +PodSecurityPolicy policy/v1beta1 v1.21.0 v1.25.0 n/a n/a k8s +ReplicaSet extensions/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta2 n/a v1.16.0 apps/v1 v1.9.0 k8s +PriorityClass scheduling.k8s.io/v1beta1 v1.14.0 v1.22.0 scheduling.k8s.io/v1 v1.14.0 k8s +PriorityClass scheduling.k8s.io/v1alpha1 v1.14.0 v1.17.0 scheduling.k8s.io/v1 n/a k8s +CustomResourceDefinition apiextensions.k8s.io/v1beta1 v1.16.0 v1.22.0 apiextensions.k8s.io/v1 v1.16.0 k8s +MutatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ValidatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRole rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRole rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RuntimeClass node.k8s.io/v1beta1 v1.22.0 v1.25.0 node.k8s.io/v1 v1.20.0 k8s +PodDisruptionBudget policy/v1beta1 v1.21.0 v1.25.0 policy/v1 v1.21.0 k8s +PodDisruptionBudgetList policy/v1beta1 v1.21.0 v1.25.0 policy/v1 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 v1.23.0 k8s +HorizontalPodAutoscalerList autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscalerList autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +CronJob batch/v1beta1 v1.21.0 v1.25.0 batch/v1 v1.21.0 k8s +CronJobList batch/v1beta1 v1.21.0 v1.25.0 batch/v1 n/a k8s +CSINode storage.k8s.io/v1beta1 v1.17.0 v1.22.0 storage.k8s.io/v1 v1.17.0 k8s +CSIDriver storage.k8s.io/v1beta1 v1.19.0 v1.22.0 storage.k8s.io/v1 v1.19.0 k8s +CSIStorageCapacity storage.k8s.io/v1beta1 v1.24.0 v1.27.0 storage.k8s.io/v1 v1.24.0 k8s +StorageClass storage.k8s.io/v1beta1 v1.6.0 v1.22.0 storage.k8s.io/v1 v1.6.0 k8s +VolumeAttachment storage.k8s.io/v1beta1 v1.13.0 v1.22.0 storage.k8s.io/v1 v1.13.0 k8s +APIService apiregistration.k8s.io/v1beta1 v1.10.0 v1.22.0 apiregistration.k8s.io/v1 v1.10.0 k8s +TokenReview authentication.k8s.io/v1beta1 v1.6.0 v1.22.0 authentication.k8s.io/v1 v1.6.0 k8s +CertificateSigningRequest certificates.k8s.io/v1beta1 v1.19.0 v1.22.0 certificates.k8s.io/v1 v1.19.0 k8s +Lease coordination.k8s.io/v1beta1 v1.14.0 v1.22.0 coordination.k8s.io/v1 v1.14.0 k8s +Event events.k8s.io/v1beta1 v1.19.0 v1.25.0 events.k8s.io/v1 v1.19.0 k8s +EndpointSlice discovery.k8s.io/v1beta1 v1.21.0 v1.25.0 discovery.k8s.io/v1 v1.21.0 k8s +FlowControl flowcontrol.apiserver.k8s.io/v1beta1 v1.23.0 v1.26.0 flowcontrol.apiserver.k8s.io/v1beta2 n/a k8s +AuthorizationPolicies rbac.istio.io v1.4.0 v1.4.0 security.istio.io/v1beta1 n/a istio + authentication.istio.io/v1alpha1 v1.5.0 v1.6.0 security.istio.io/v1beta1 n/a istio +Certificate certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Issuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +ClusterIssuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +CertificateRequest certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Order certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Challenge certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Certificate cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +FlowSchema flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +FLowSchema flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +Sep 5 12:25:18.859 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable Pass-bad-semver-with-no-v.result.systemerr: Error: you must use valid semver for all target versions with a leading 'v' - got foo 1.0.0 +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:25:18.803810 871 root.go:474] you must use valid semver for all target versions with a leading 'v' - got foo 1.0.0 +Sep 5 12:25:18.859 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable __Len__: 8 +Sep 5 12:25:18.859 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable venom.libdir: +Sep 5 12:25:18.859 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable venom.testsuite.name: CLI Validation +Sep 5 12:25:18.859 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable venom.timestamp: 1693938311 +Sep 5 12:25:18.859 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable __Type__: Map +Sep 5 12:25:18.859 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable venom.datetime: 2023-09-05T12:25:11-06:00 +Sep 5 12:25:18.859 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable list-versions-ojson.result.systemerrjson: +Sep 5 12:25:18.859 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable Pass-bad-semver-starting-with-v.__type__: Result +Sep 5 12:25:18.859 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable Pass-bad-semver-starting-with-v.result.code: 1 +Sep 5 12:25:18.859 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable Pass-bad-semver-with-no-v.result.systemoutjson: +Sep 5 12:25:18.859 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable list-versions-additional-file-duplicate.result.err: +Sep 5 12:25:18.859 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable Pass-bad-semver-with-no-v.result.__len__: 7 +Sep 5 12:25:18.859 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemoutjson: +Sep 5 12:25:18.859 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable Pass-bad-semver-starting-with-v.result.err: +Sep 5 12:25:18.859 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable Pass-bad-semver-starting-with-v.result.__len__: 7 +Sep 5 12:25:18.859 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemerr: Error: you must use valid semver for all target versions with a leading 'v' - got foo vfoo +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:25:18.820905 873 root.go:474] you must use valid semver for all target versions with a leading 'v' - got foo vfoo +Sep 5 12:25:18.859 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable list-versions-additional-file-duplicate.result.systemerrjson: +Sep 5 12:25:18.859 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable Pass-bad-semver-with-no-v.__type__: Result +Sep 5 12:25:18.859 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable list-versions-additional-file-duplicate.result.__len__: 7 +Sep 5 12:25:18.859 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable venom.testsuite.shortName: 03-cli-validation +Sep 5 12:25:18.859 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemerrjson: +Sep 5 12:25:18.859 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable list-versions-ojson.result.code: 0 +Sep 5 12:25:18.859 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable list-versions-additional-file-duplicate.result.systemout: +Sep 5 12:25:18.859 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable list-versions-additional-file-duplicate.__type__: Result +Sep 5 12:25:18.859 [INFO] [CLI Validation] [list-versions-additional-file] Step #0 content is: {"assertions":["result.code ShouldEqual 0","result.systemout ShouldContainSubstring \"AnotherCRD someother/v1beta1 v1.9.0 v1.16.0 apps/v1\""],"script":"pluto list-versions -f assets/additional-versions/new.yaml"} +Sep 5 12:25:18.860 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-1414449669 +Sep 5 12:25:18.860 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-1414449669' +Sep 5 12:25:18.874 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] KIND NAME DEPRECATED IN REMOVED IN REPLACEMENT REPL AVAIL IN COMPONENT + +Sep 5 12:25:18.874 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Deployment extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s + +Sep 5 12:25:18.874 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Deployment apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s + +Sep 5 12:25:18.874 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Deployment apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s + +Sep 5 12:25:18.874 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] StatefulSet apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s + +Sep 5 12:25:18.874 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] StatefulSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s + +Sep 5 12:25:18.874 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] NetworkPolicy extensions/v1beta1 v1.9.0 v1.16.0 networking.k8s.io/v1 v1.8.0 k8s + +Sep 5 12:25:18.874 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Ingress extensions/v1beta1 v1.14.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s + +Sep 5 12:25:18.874 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Ingress networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] IngressClass networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] DaemonSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] DaemonSet extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] PodSecurityPolicy extensions/v1beta1 v1.10.0 v1.16.0 policy/v1beta1 v1.10.0 k8s + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] PodSecurityPolicy policy/v1beta1 v1.21.0 v1.25.0 n/a n/a k8s + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] ReplicaSet extensions/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] ReplicaSet apps/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] ReplicaSet apps/v1beta2 n/a v1.16.0 apps/v1 v1.9.0 k8s + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] PriorityClass scheduling.k8s.io/v1beta1 v1.14.0 v1.22.0 scheduling.k8s.io/v1 v1.14.0 k8s + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] PriorityClass scheduling.k8s.io/v1alpha1 v1.14.0 v1.17.0 scheduling.k8s.io/v1 n/a k8s + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] CustomResourceDefinition apiextensions.k8s.io/v1beta1 v1.16.0 v1.22.0 apiextensions.k8s.io/v1 v1.16.0 k8s + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] MutatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] ValidatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] ClusterRoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] ClusterRole rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] ClusterRoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] ClusterRoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Role rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] RoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] RoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] RoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] ClusterRoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] ClusterRole rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] ClusterRoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] ClusterRoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Role rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] RoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] RoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] RoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] RuntimeClass node.k8s.io/v1beta1 v1.22.0 v1.25.0 node.k8s.io/v1 v1.20.0 k8s + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] PodDisruptionBudget policy/v1beta1 v1.21.0 v1.25.0 policy/v1 v1.21.0 k8s + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] PodDisruptionBudgetList policy/v1beta1 v1.21.0 v1.25.0 policy/v1 n/a k8s + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] HorizontalPodAutoscaler autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 v1.23.0 k8s + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] HorizontalPodAutoscalerList autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 n/a k8s + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] HorizontalPodAutoscaler autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] HorizontalPodAutoscalerList autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] CronJob batch/v1beta1 v1.21.0 v1.25.0 batch/v1 v1.21.0 k8s + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] CronJobList batch/v1beta1 v1.21.0 v1.25.0 batch/v1 n/a k8s + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] CSINode storage.k8s.io/v1beta1 v1.17.0 v1.22.0 storage.k8s.io/v1 v1.17.0 k8s + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] CSIDriver storage.k8s.io/v1beta1 v1.19.0 v1.22.0 storage.k8s.io/v1 v1.19.0 k8s + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] CSIStorageCapacity storage.k8s.io/v1beta1 v1.24.0 v1.27.0 storage.k8s.io/v1 v1.24.0 k8s + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] StorageClass storage.k8s.io/v1beta1 v1.6.0 v1.22.0 storage.k8s.io/v1 v1.6.0 k8s + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] VolumeAttachment storage.k8s.io/v1beta1 v1.13.0 v1.22.0 storage.k8s.io/v1 v1.13.0 k8s + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] APIService apiregistration.k8s.io/v1beta1 v1.10.0 v1.22.0 apiregistration.k8s.io/v1 v1.10.0 k8s + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] TokenReview authentication.k8s.io/v1beta1 v1.6.0 v1.22.0 authentication.k8s.io/v1 v1.6.0 k8s + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] CertificateSigningRequest certificates.k8s.io/v1beta1 v1.19.0 v1.22.0 certificates.k8s.io/v1 v1.19.0 k8s + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Lease coordination.k8s.io/v1beta1 v1.14.0 v1.22.0 coordination.k8s.io/v1 v1.14.0 k8s + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Event events.k8s.io/v1beta1 v1.19.0 v1.25.0 events.k8s.io/v1 v1.19.0 k8s + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] EndpointSlice discovery.k8s.io/v1beta1 v1.21.0 v1.25.0 discovery.k8s.io/v1 v1.21.0 k8s + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] FlowControl flowcontrol.apiserver.k8s.io/v1beta1 v1.23.0 v1.26.0 flowcontrol.apiserver.k8s.io/v1beta2 n/a k8s + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] AuthorizationPolicies rbac.istio.io v1.4.0 v1.4.0 security.istio.io/v1beta1 n/a istio + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] authentication.istio.io/v1alpha1 v1.5.0 v1.6.0 security.istio.io/v1beta1 n/a istio + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Certificate certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Issuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] ClusterIssuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] CertificateRequest certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Order certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Challenge certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Certificate cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Certificate cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Certificate cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Issuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Issuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Issuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] ClusterIssuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] ClusterIssuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] ClusterIssuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] CertificateRequest cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] CertificateRequest cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] CertificateRequest cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Order acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Order acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Order acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Challenge acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Challenge acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Challenge acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] FlowSchema flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] FLowSchema flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] AnotherCRD someother/v1beta1 v1.9.0 v1.16.0 apps/v1 n/a other + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Want more? Automate Pluto for free with Fairwinds Insights! + +Sep 5 12:25:18.875 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] 🚀 https://fairwinds.com/insights-signup/pluto 🚀 + +Sep 5 12:25:18.876 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] result of runTestStepExecutor: {Systemout:KIND NAME DEPRECATED IN REMOVED IN REPLACEMENT REPL AVAIL IN COMPONENT +Deployment extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +NetworkPolicy extensions/v1beta1 v1.9.0 v1.16.0 networking.k8s.io/v1 v1.8.0 k8s +Ingress extensions/v1beta1 v1.14.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +Ingress networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +IngressClass networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +DaemonSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +DaemonSet extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +PodSecurityPolicy extensions/v1beta1 v1.10.0 v1.16.0 policy/v1beta1 v1.10.0 k8s +PodSecurityPolicy policy/v1beta1 v1.21.0 v1.25.0 n/a n/a k8s +ReplicaSet extensions/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta2 n/a v1.16.0 apps/v1 v1.9.0 k8s +PriorityClass scheduling.k8s.io/v1beta1 v1.14.0 v1.22.0 scheduling.k8s.io/v1 v1.14.0 k8s +PriorityClass scheduling.k8s.io/v1alpha1 v1.14.0 v1.17.0 scheduling.k8s.io/v1 n/a k8s +CustomResourceDefinition apiextensions.k8s.io/v1beta1 v1.16.0 v1.22.0 apiextensions.k8s.io/v1 v1.16.0 k8s +MutatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ValidatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRole rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRole rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RuntimeClass node.k8s.io/v1beta1 v1.22.0 v1.25.0 node.k8s.io/v1 v1.20.0 k8s +PodDisruptionBudget policy/v1beta1 v1.21.0 v1.25.0 policy/v1 v1.21.0 k8s +PodDisruptionBudgetList policy/v1beta1 v1.21.0 v1.25.0 policy/v1 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 v1.23.0 k8s +HorizontalPodAutoscalerList autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscalerList autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +CronJob batch/v1beta1 v1.21.0 v1.25.0 batch/v1 v1.21.0 k8s +CronJobList batch/v1beta1 v1.21.0 v1.25.0 batch/v1 n/a k8s +CSINode storage.k8s.io/v1beta1 v1.17.0 v1.22.0 storage.k8s.io/v1 v1.17.0 k8s +CSIDriver storage.k8s.io/v1beta1 v1.19.0 v1.22.0 storage.k8s.io/v1 v1.19.0 k8s +CSIStorageCapacity storage.k8s.io/v1beta1 v1.24.0 v1.27.0 storage.k8s.io/v1 v1.24.0 k8s +StorageClass storage.k8s.io/v1beta1 v1.6.0 v1.22.0 storage.k8s.io/v1 v1.6.0 k8s +VolumeAttachment storage.k8s.io/v1beta1 v1.13.0 v1.22.0 storage.k8s.io/v1 v1.13.0 k8s +APIService apiregistration.k8s.io/v1beta1 v1.10.0 v1.22.0 apiregistration.k8s.io/v1 v1.10.0 k8s +TokenReview authentication.k8s.io/v1beta1 v1.6.0 v1.22.0 authentication.k8s.io/v1 v1.6.0 k8s +CertificateSigningRequest certificates.k8s.io/v1beta1 v1.19.0 v1.22.0 certificates.k8s.io/v1 v1.19.0 k8s +Lease coordination.k8s.io/v1beta1 v1.14.0 v1.22.0 coordination.k8s.io/v1 v1.14.0 k8s +Event events.k8s.io/v1beta1 v1.19.0 v1.25.0 events.k8s.io/v1 v1.19.0 k8s +EndpointSlice discovery.k8s.io/v1beta1 v1.21.0 v1.25.0 discovery.k8s.io/v1 v1.21.0 k8s +FlowControl flowcontrol.apiserver.k8s.io/v1beta1 v1.23.0 v1.26.0 flowcontrol.apiserver.k8s.io/v1beta2 n/a k8s +AuthorizationPolicies rbac.istio.io v1.4.0 v1.4.0 security.istio.io/v1beta1 n/a istio + authentication.istio.io/v1alpha1 v1.5.0 v1.6.0 security.istio.io/v1beta1 n/a istio +Certificate certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Issuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +ClusterIssuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +CertificateRequest certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Order certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Challenge certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Certificate cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +FlowSchema flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +FLowSchema flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +AnotherCRD someother/v1beta1 v1.9.0 v1.16.0 apps/v1 n/a other SystemoutJSON: Systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 SystemerrJSON: Err: Code:0 TimeSeconds:0.016162916} +Sep 5 12:25:18.876 [INFO] [CLI Validation] [list-versions-additional-file] Ending testcase +Sep 5 12:25:18.876 [INFO] [CLI Validation] [Pass-bad-column-list-to-custom] Starting testcase +Sep 5 12:25:18.876 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable venom.testsuite: CLI Validation +Sep 5 12:25:18.876 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable venom.datetime: 2023-09-05T12:25:11-06:00 +Sep 5 12:25:18.876 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemerr: Error: you must use valid semver for all target versions with a leading 'v' - got foo vfoo +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:25:18.820905 873 root.go:474] you must use valid semver for all target versions with a leading 'v' - got foo vfoo +Sep 5 12:25:18.876 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable Pass-bad-semver-with-no-v.result.systemerrjson: +Sep 5 12:25:18.876 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable __Type__: Map +Sep 5 12:25:18.876 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemout: +Sep 5 12:25:18.876 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable Pass-bad-semver-with-no-v.result.code: 1 +Sep 5 12:25:18.876 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-additional-file-duplicate.result.err: +Sep 5 12:25:18.876 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-additional-file-duplicate.__type__: Result +Sep 5 12:25:18.876 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemoutjson: +Sep 5 12:25:18.876 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemerrjson: +Sep 5 12:25:18.876 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-ojson.result.__len__: 7 +Sep 5 12:25:18.876 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable Pass-bad-semver-starting-with-v.result.code: 1 +Sep 5 12:25:18.876 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-additional-file-duplicate.result.systemoutjson: +Sep 5 12:25:18.876 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-additional-file.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:18.876 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable Pass-bad-semver-with-no-v.result.systemerr: Error: you must use valid semver for all target versions with a leading 'v' - got foo 1.0.0 +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:25:18.803810 871 root.go:474] you must use valid semver for all target versions with a leading 'v' - got foo 1.0.0 +Sep 5 12:25:18.876 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-additional-file-duplicate.result.__len__: 7 +Sep 5 12:25:18.876 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-additional-file-duplicate.result.timeseconds: 0.016889042 +Sep 5 12:25:18.876 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-additional-file.result.systemout: KIND NAME DEPRECATED IN REMOVED IN REPLACEMENT REPL AVAIL IN COMPONENT +Deployment extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +NetworkPolicy extensions/v1beta1 v1.9.0 v1.16.0 networking.k8s.io/v1 v1.8.0 k8s +Ingress extensions/v1beta1 v1.14.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +Ingress networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +IngressClass networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +DaemonSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +DaemonSet extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +PodSecurityPolicy extensions/v1beta1 v1.10.0 v1.16.0 policy/v1beta1 v1.10.0 k8s +PodSecurityPolicy policy/v1beta1 v1.21.0 v1.25.0 n/a n/a k8s +ReplicaSet extensions/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta2 n/a v1.16.0 apps/v1 v1.9.0 k8s +PriorityClass scheduling.k8s.io/v1beta1 v1.14.0 v1.22.0 scheduling.k8s.io/v1 v1.14.0 k8s +PriorityClass scheduling.k8s.io/v1alpha1 v1.14.0 v1.17.0 scheduling.k8s.io/v1 n/a k8s +CustomResourceDefinition apiextensions.k8s.io/v1beta1 v1.16.0 v1.22.0 apiextensions.k8s.io/v1 v1.16.0 k8s +MutatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ValidatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRole rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRole rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RuntimeClass node.k8s.io/v1beta1 v1.22.0 v1.25.0 node.k8s.io/v1 v1.20.0 k8s +PodDisruptionBudget policy/v1beta1 v1.21.0 v1.25.0 policy/v1 v1.21.0 k8s +PodDisruptionBudgetList policy/v1beta1 v1.21.0 v1.25.0 policy/v1 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 v1.23.0 k8s +HorizontalPodAutoscalerList autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscalerList autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +CronJob batch/v1beta1 v1.21.0 v1.25.0 batch/v1 v1.21.0 k8s +CronJobList batch/v1beta1 v1.21.0 v1.25.0 batch/v1 n/a k8s +CSINode storage.k8s.io/v1beta1 v1.17.0 v1.22.0 storage.k8s.io/v1 v1.17.0 k8s +CSIDriver storage.k8s.io/v1beta1 v1.19.0 v1.22.0 storage.k8s.io/v1 v1.19.0 k8s +CSIStorageCapacity storage.k8s.io/v1beta1 v1.24.0 v1.27.0 storage.k8s.io/v1 v1.24.0 k8s +StorageClass storage.k8s.io/v1beta1 v1.6.0 v1.22.0 storage.k8s.io/v1 v1.6.0 k8s +VolumeAttachment storage.k8s.io/v1beta1 v1.13.0 v1.22.0 storage.k8s.io/v1 v1.13.0 k8s +APIService apiregistration.k8s.io/v1beta1 v1.10.0 v1.22.0 apiregistration.k8s.io/v1 v1.10.0 k8s +TokenReview authentication.k8s.io/v1beta1 v1.6.0 v1.22.0 authentication.k8s.io/v1 v1.6.0 k8s +CertificateSigningRequest certificates.k8s.io/v1beta1 v1.19.0 v1.22.0 certificates.k8s.io/v1 v1.19.0 k8s +Lease coordination.k8s.io/v1beta1 v1.14.0 v1.22.0 coordination.k8s.io/v1 v1.14.0 k8s +Event events.k8s.io/v1beta1 v1.19.0 v1.25.0 events.k8s.io/v1 v1.19.0 k8s +EndpointSlice discovery.k8s.io/v1beta1 v1.21.0 v1.25.0 discovery.k8s.io/v1 v1.21.0 k8s +FlowControl flowcontrol.apiserver.k8s.io/v1beta1 v1.23.0 v1.26.0 flowcontrol.apiserver.k8s.io/v1beta2 n/a k8s +AuthorizationPolicies rbac.istio.io v1.4.0 v1.4.0 security.istio.io/v1beta1 n/a istio + authentication.istio.io/v1alpha1 v1.5.0 v1.6.0 security.istio.io/v1beta1 n/a istio +Certificate certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Issuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +ClusterIssuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +CertificateRequest certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Order certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Challenge certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Certificate cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +FlowSchema flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +FLowSchema flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +AnotherCRD someother/v1beta1 v1.9.0 v1.16.0 apps/v1 n/a other +Sep 5 12:25:18.876 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-ojson.result.err: +Sep 5 12:25:18.876 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-ojson.result.systemoutjson: +Sep 5 12:25:18.876 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable venom.testsuite.shortName: 03-cli-validation +Sep 5 12:25:18.876 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-ojson.result.systemout: KIND NAME DEPRECATED IN REMOVED IN REPLACEMENT REPL AVAIL IN COMPONENT +Deployment extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +NetworkPolicy extensions/v1beta1 v1.9.0 v1.16.0 networking.k8s.io/v1 v1.8.0 k8s +Ingress extensions/v1beta1 v1.14.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +Ingress networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +IngressClass networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +DaemonSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +DaemonSet extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +PodSecurityPolicy extensions/v1beta1 v1.10.0 v1.16.0 policy/v1beta1 v1.10.0 k8s +PodSecurityPolicy policy/v1beta1 v1.21.0 v1.25.0 n/a n/a k8s +ReplicaSet extensions/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta2 n/a v1.16.0 apps/v1 v1.9.0 k8s +PriorityClass scheduling.k8s.io/v1beta1 v1.14.0 v1.22.0 scheduling.k8s.io/v1 v1.14.0 k8s +PriorityClass scheduling.k8s.io/v1alpha1 v1.14.0 v1.17.0 scheduling.k8s.io/v1 n/a k8s +CustomResourceDefinition apiextensions.k8s.io/v1beta1 v1.16.0 v1.22.0 apiextensions.k8s.io/v1 v1.16.0 k8s +MutatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ValidatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRole rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRole rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RuntimeClass node.k8s.io/v1beta1 v1.22.0 v1.25.0 node.k8s.io/v1 v1.20.0 k8s +PodDisruptionBudget policy/v1beta1 v1.21.0 v1.25.0 policy/v1 v1.21.0 k8s +PodDisruptionBudgetList policy/v1beta1 v1.21.0 v1.25.0 policy/v1 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 v1.23.0 k8s +HorizontalPodAutoscalerList autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscalerList autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +CronJob batch/v1beta1 v1.21.0 v1.25.0 batch/v1 v1.21.0 k8s +CronJobList batch/v1beta1 v1.21.0 v1.25.0 batch/v1 n/a k8s +CSINode storage.k8s.io/v1beta1 v1.17.0 v1.22.0 storage.k8s.io/v1 v1.17.0 k8s +CSIDriver storage.k8s.io/v1beta1 v1.19.0 v1.22.0 storage.k8s.io/v1 v1.19.0 k8s +CSIStorageCapacity storage.k8s.io/v1beta1 v1.24.0 v1.27.0 storage.k8s.io/v1 v1.24.0 k8s +StorageClass storage.k8s.io/v1beta1 v1.6.0 v1.22.0 storage.k8s.io/v1 v1.6.0 k8s +VolumeAttachment storage.k8s.io/v1beta1 v1.13.0 v1.22.0 storage.k8s.io/v1 v1.13.0 k8s +APIService apiregistration.k8s.io/v1beta1 v1.10.0 v1.22.0 apiregistration.k8s.io/v1 v1.10.0 k8s +TokenReview authentication.k8s.io/v1beta1 v1.6.0 v1.22.0 authentication.k8s.io/v1 v1.6.0 k8s +CertificateSigningRequest certificates.k8s.io/v1beta1 v1.19.0 v1.22.0 certificates.k8s.io/v1 v1.19.0 k8s +Lease coordination.k8s.io/v1beta1 v1.14.0 v1.22.0 coordination.k8s.io/v1 v1.14.0 k8s +Event events.k8s.io/v1beta1 v1.19.0 v1.25.0 events.k8s.io/v1 v1.19.0 k8s +EndpointSlice discovery.k8s.io/v1beta1 v1.21.0 v1.25.0 discovery.k8s.io/v1 v1.21.0 k8s +FlowControl flowcontrol.apiserver.k8s.io/v1beta1 v1.23.0 v1.26.0 flowcontrol.apiserver.k8s.io/v1beta2 n/a k8s +AuthorizationPolicies rbac.istio.io v1.4.0 v1.4.0 security.istio.io/v1beta1 n/a istio + authentication.istio.io/v1alpha1 v1.5.0 v1.6.0 security.istio.io/v1beta1 n/a istio +Certificate certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Issuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +ClusterIssuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +CertificateRequest certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Order certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Challenge certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Certificate cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +FlowSchema flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +FLowSchema flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +Sep 5 12:25:18.876 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-ojson.result.code: 0 +Sep 5 12:25:18.876 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable Pass-bad-semver-with-no-v.result.err: +Sep 5 12:25:18.876 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable Pass-bad-semver-starting-with-v.result.__len__: 7 +Sep 5 12:25:18.876 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable venom.libdir: +Sep 5 12:25:18.876 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable Pass-bad-semver-with-no-v.result.systemout: +Sep 5 12:25:18.876 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-ojson.__type__: Result +Sep 5 12:25:18.876 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable Pass-bad-semver-with-no-v.result.systemoutjson: +Sep 5 12:25:18.876 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable Pass-bad-semver-starting-with-v.__type__: Result +Sep 5 12:25:18.876 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable Pass-bad-semver-starting-with-v.result.err: +Sep 5 12:25:18.876 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-ojson.result.timeseconds: 0.018252541 +Sep 5 12:25:18.876 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-additional-file.result.err: +Sep 5 12:25:18.876 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-additional-file.__type__: Result +Sep 5 12:25:18.876 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-additional-file-duplicate.result.systemout: +Sep 5 12:25:18.876 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable venom.testsuite.filepath: tests/03-cli-validation.yaml +Sep 5 12:25:18.876 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-additional-file-duplicate.result.code: 1 +Sep 5 12:25:18.876 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable Pass-bad-semver-with-no-v.result.timeseconds: 0.017677125 +Sep 5 12:25:18.876 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable venom.testcase: Pass-bad-column-list-to-custom +Sep 5 12:25:18.876 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:25:18.876 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable Pass-bad-semver-with-no-v.result.__len__: 7 +Sep 5 12:25:18.877 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-additional-file.result.timeseconds: 0.016162916 +Sep 5 12:25:18.877 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable Pass-bad-semver-with-no-v.__type__: Result +Sep 5 12:25:18.877 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable Pass-bad-semver-starting-with-v.result.timeseconds: 0.015382625 +Sep 5 12:25:18.877 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-additional-file.result.__len__: 7 +Sep 5 12:25:18.877 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-ojson.result.systemerrjson: +Sep 5 12:25:18.877 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-additional-file.result.systemoutjson: +Sep 5 12:25:18.877 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable __Len__: 8 +Sep 5 12:25:18.877 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable venom.outputdir: +Sep 5 12:25:18.877 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable venom.testsuite.filename: 03-cli-validation.yaml +Sep 5 12:25:18.877 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-additional-file-duplicate.result.systemerr: Error: duplicate cannot be added to defaults: Deployment extensions/v1beta1 +Usage: + pluto list-versions [flags] + +Flags: + -h, --help help for list-versions + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:25:18.858651 877 root.go:474] duplicate cannot be added to defaults: Deployment extensions/v1beta1 +Sep 5 12:25:18.877 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable venom.testsuite.name: CLI Validation +Sep 5 12:25:18.877 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable venom.timestamp: 1693938311 +Sep 5 12:25:18.877 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-additional-file-duplicate.result.systemerrjson: +Sep 5 12:25:18.877 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-ojson.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:18.877 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:25:18.877 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-additional-file.result.code: 0 +Sep 5 12:25:18.877 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-additional-file.result.systemerrjson: +Sep 5 12:25:18.877 [INFO] [CLI Validation] [Pass-bad-column-list-to-custom] Step #0 content is: {"assertions":["result.code ShouldEqual 1","result.systemerr ShouldContainSubstring \"invalid custom column option FOO\""],"script":"pluto detect-files -d assets/deprecated116 --target-versions foo=vfoo -o custom --columns \"FOO\""} +Sep 5 12:25:18.877 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-3107495646 +Sep 5 12:25:18.877 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-3107495646' +Sep 5 12:25:18.890 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] Error: invalid custom column option FOO - must be one of [NAME FILEPATH NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN COMPONENT REPL AVAIL REPL AVAIL IN] + +Sep 5 12:25:18.890 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] Usage: + +Sep 5 12:25:18.890 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] pluto detect-files [flags] + +Sep 5 12:25:18.890 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] + +Sep 5 12:25:18.890 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] Flags: + +Sep 5 12:25:18.890 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] -d, --directory string The directory to scan. If blank, defaults to current working dir. + +Sep 5 12:25:18.890 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] -h, --help help for detect-files + +Sep 5 12:25:18.890 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] + +Sep 5 12:25:18.890 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] Global Flags: + +Sep 5 12:25:18.890 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + +Sep 5 12:25:18.890 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + +Sep 5 12:25:18.890 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] --components strings A list of components to run checks for. If nil, will check for all found in versions. + +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] --no-footer Disable footer output + +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] -v, --v Level number for the log level verbosity + +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] + +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] E0905 12:25:18.890894 881 root.go:474] invalid custom column option FOO - must be one of [NAME FILEPATH NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN COMPONENT REPL AVAIL REPL AVAIL IN] + +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] result of runTestStepExecutor: {Systemout: SystemoutJSON: Systemerr:Error: invalid custom column option FOO - must be one of [NAME FILEPATH NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN COMPONENT REPL AVAIL REPL AVAIL IN] +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:25:18.890894 881 root.go:474] invalid custom column option FOO - must be one of [NAME FILEPATH NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN COMPONENT REPL AVAIL REPL AVAIL IN] SystemerrJSON: Err: Code:1 TimeSeconds:0.014003} +Sep 5 12:25:18.891 [INFO] [CLI Validation] [Pass-bad-column-list-to-custom] Ending testcase +Sep 5 12:25:18.891 [INFO] [CLI Validation] [Pass-bad-column-list-to-markdown] Starting testcase +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-ojson.result.code: 0 +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-ojson.__type__: Result +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable venom.testcase: Pass-bad-column-list-to-markdown +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-ojson.result.systemoutjson: +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-semver-starting-with-v.result.err: +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable venom.testsuite.filepath: tests/03-cli-validation.yaml +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable __Type__: Map +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-column-list-to-custom.result.systemerr: Error: invalid custom column option FOO - must be one of [NAME FILEPATH NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN COMPONENT REPL AVAIL REPL AVAIL IN] +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:25:18.890894 881 root.go:474] invalid custom column option FOO - must be one of [NAME FILEPATH NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN COMPONENT REPL AVAIL REPL AVAIL IN] +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-ojson.result.systemout: KIND NAME DEPRECATED IN REMOVED IN REPLACEMENT REPL AVAIL IN COMPONENT +Deployment extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +NetworkPolicy extensions/v1beta1 v1.9.0 v1.16.0 networking.k8s.io/v1 v1.8.0 k8s +Ingress extensions/v1beta1 v1.14.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +Ingress networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +IngressClass networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +DaemonSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +DaemonSet extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +PodSecurityPolicy extensions/v1beta1 v1.10.0 v1.16.0 policy/v1beta1 v1.10.0 k8s +PodSecurityPolicy policy/v1beta1 v1.21.0 v1.25.0 n/a n/a k8s +ReplicaSet extensions/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta2 n/a v1.16.0 apps/v1 v1.9.0 k8s +PriorityClass scheduling.k8s.io/v1beta1 v1.14.0 v1.22.0 scheduling.k8s.io/v1 v1.14.0 k8s +PriorityClass scheduling.k8s.io/v1alpha1 v1.14.0 v1.17.0 scheduling.k8s.io/v1 n/a k8s +CustomResourceDefinition apiextensions.k8s.io/v1beta1 v1.16.0 v1.22.0 apiextensions.k8s.io/v1 v1.16.0 k8s +MutatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ValidatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRole rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRole rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RuntimeClass node.k8s.io/v1beta1 v1.22.0 v1.25.0 node.k8s.io/v1 v1.20.0 k8s +PodDisruptionBudget policy/v1beta1 v1.21.0 v1.25.0 policy/v1 v1.21.0 k8s +PodDisruptionBudgetList policy/v1beta1 v1.21.0 v1.25.0 policy/v1 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 v1.23.0 k8s +HorizontalPodAutoscalerList autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscalerList autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +CronJob batch/v1beta1 v1.21.0 v1.25.0 batch/v1 v1.21.0 k8s +CronJobList batch/v1beta1 v1.21.0 v1.25.0 batch/v1 n/a k8s +CSINode storage.k8s.io/v1beta1 v1.17.0 v1.22.0 storage.k8s.io/v1 v1.17.0 k8s +CSIDriver storage.k8s.io/v1beta1 v1.19.0 v1.22.0 storage.k8s.io/v1 v1.19.0 k8s +CSIStorageCapacity storage.k8s.io/v1beta1 v1.24.0 v1.27.0 storage.k8s.io/v1 v1.24.0 k8s +StorageClass storage.k8s.io/v1beta1 v1.6.0 v1.22.0 storage.k8s.io/v1 v1.6.0 k8s +VolumeAttachment storage.k8s.io/v1beta1 v1.13.0 v1.22.0 storage.k8s.io/v1 v1.13.0 k8s +APIService apiregistration.k8s.io/v1beta1 v1.10.0 v1.22.0 apiregistration.k8s.io/v1 v1.10.0 k8s +TokenReview authentication.k8s.io/v1beta1 v1.6.0 v1.22.0 authentication.k8s.io/v1 v1.6.0 k8s +CertificateSigningRequest certificates.k8s.io/v1beta1 v1.19.0 v1.22.0 certificates.k8s.io/v1 v1.19.0 k8s +Lease coordination.k8s.io/v1beta1 v1.14.0 v1.22.0 coordination.k8s.io/v1 v1.14.0 k8s +Event events.k8s.io/v1beta1 v1.19.0 v1.25.0 events.k8s.io/v1 v1.19.0 k8s +EndpointSlice discovery.k8s.io/v1beta1 v1.21.0 v1.25.0 discovery.k8s.io/v1 v1.21.0 k8s +FlowControl flowcontrol.apiserver.k8s.io/v1beta1 v1.23.0 v1.26.0 flowcontrol.apiserver.k8s.io/v1beta2 n/a k8s +AuthorizationPolicies rbac.istio.io v1.4.0 v1.4.0 security.istio.io/v1beta1 n/a istio + authentication.istio.io/v1alpha1 v1.5.0 v1.6.0 security.istio.io/v1beta1 n/a istio +Certificate certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Issuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +ClusterIssuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +CertificateRequest certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Order certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Challenge certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Certificate cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +FlowSchema flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +FLowSchema flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-additional-file-duplicate.result.systemerr: Error: duplicate cannot be added to defaults: Deployment extensions/v1beta1 +Usage: + pluto list-versions [flags] + +Flags: + -h, --help help for list-versions + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:25:18.858651 877 root.go:474] duplicate cannot be added to defaults: Deployment extensions/v1beta1 +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-column-list-to-custom.result.systemout: +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-additional-file-duplicate.result.timeseconds: 0.016889042 +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-column-list-to-custom.result.err: +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable venom.outputdir: +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable venom.datetime: 2023-09-05T12:25:11-06:00 +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-additional-file-duplicate.result.__len__: 7 +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-column-list-to-custom.__type__: Result +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-semver-with-no-v.result.systemoutjson: +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-semver-with-no-v.result.code: 1 +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-semver-with-no-v.__type__: Result +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-ojson.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-additional-file-duplicate.result.err: +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-ojson.result.timeseconds: 0.018252541 +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable venom.libdir: +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-additional-file-duplicate.result.code: 1 +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-semver-with-no-v.result.systemerr: Error: you must use valid semver for all target versions with a leading 'v' - got foo 1.0.0 +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:25:18.803810 871 root.go:474] you must use valid semver for all target versions with a leading 'v' - got foo 1.0.0 +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-additional-file.result.__len__: 7 +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-semver-starting-with-v.result.code: 1 +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable venom.testsuite.shortName: 03-cli-validation +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-additional-file-duplicate.result.systemout: +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-additional-file-duplicate.result.systemerrjson: +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemout: +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable __Len__: 8 +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemerrjson: +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-additional-file.__type__: Result +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-ojson.result.err: +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-column-list-to-custom.result.systemoutjson: +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-ojson.result.systemerrjson: +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-semver-starting-with-v.result.__len__: 7 +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-ojson.result.__len__: 7 +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-additional-file.result.systemout: KIND NAME DEPRECATED IN REMOVED IN REPLACEMENT REPL AVAIL IN COMPONENT +Deployment extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +NetworkPolicy extensions/v1beta1 v1.9.0 v1.16.0 networking.k8s.io/v1 v1.8.0 k8s +Ingress extensions/v1beta1 v1.14.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +Ingress networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +IngressClass networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +DaemonSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +DaemonSet extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +PodSecurityPolicy extensions/v1beta1 v1.10.0 v1.16.0 policy/v1beta1 v1.10.0 k8s +PodSecurityPolicy policy/v1beta1 v1.21.0 v1.25.0 n/a n/a k8s +ReplicaSet extensions/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta2 n/a v1.16.0 apps/v1 v1.9.0 k8s +PriorityClass scheduling.k8s.io/v1beta1 v1.14.0 v1.22.0 scheduling.k8s.io/v1 v1.14.0 k8s +PriorityClass scheduling.k8s.io/v1alpha1 v1.14.0 v1.17.0 scheduling.k8s.io/v1 n/a k8s +CustomResourceDefinition apiextensions.k8s.io/v1beta1 v1.16.0 v1.22.0 apiextensions.k8s.io/v1 v1.16.0 k8s +MutatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ValidatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRole rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRole rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RuntimeClass node.k8s.io/v1beta1 v1.22.0 v1.25.0 node.k8s.io/v1 v1.20.0 k8s +PodDisruptionBudget policy/v1beta1 v1.21.0 v1.25.0 policy/v1 v1.21.0 k8s +PodDisruptionBudgetList policy/v1beta1 v1.21.0 v1.25.0 policy/v1 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 v1.23.0 k8s +HorizontalPodAutoscalerList autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscalerList autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +CronJob batch/v1beta1 v1.21.0 v1.25.0 batch/v1 v1.21.0 k8s +CronJobList batch/v1beta1 v1.21.0 v1.25.0 batch/v1 n/a k8s +CSINode storage.k8s.io/v1beta1 v1.17.0 v1.22.0 storage.k8s.io/v1 v1.17.0 k8s +CSIDriver storage.k8s.io/v1beta1 v1.19.0 v1.22.0 storage.k8s.io/v1 v1.19.0 k8s +CSIStorageCapacity storage.k8s.io/v1beta1 v1.24.0 v1.27.0 storage.k8s.io/v1 v1.24.0 k8s +StorageClass storage.k8s.io/v1beta1 v1.6.0 v1.22.0 storage.k8s.io/v1 v1.6.0 k8s +VolumeAttachment storage.k8s.io/v1beta1 v1.13.0 v1.22.0 storage.k8s.io/v1 v1.13.0 k8s +APIService apiregistration.k8s.io/v1beta1 v1.10.0 v1.22.0 apiregistration.k8s.io/v1 v1.10.0 k8s +TokenReview authentication.k8s.io/v1beta1 v1.6.0 v1.22.0 authentication.k8s.io/v1 v1.6.0 k8s +CertificateSigningRequest certificates.k8s.io/v1beta1 v1.19.0 v1.22.0 certificates.k8s.io/v1 v1.19.0 k8s +Lease coordination.k8s.io/v1beta1 v1.14.0 v1.22.0 coordination.k8s.io/v1 v1.14.0 k8s +Event events.k8s.io/v1beta1 v1.19.0 v1.25.0 events.k8s.io/v1 v1.19.0 k8s +EndpointSlice discovery.k8s.io/v1beta1 v1.21.0 v1.25.0 discovery.k8s.io/v1 v1.21.0 k8s +FlowControl flowcontrol.apiserver.k8s.io/v1beta1 v1.23.0 v1.26.0 flowcontrol.apiserver.k8s.io/v1beta2 n/a k8s +AuthorizationPolicies rbac.istio.io v1.4.0 v1.4.0 security.istio.io/v1beta1 n/a istio + authentication.istio.io/v1alpha1 v1.5.0 v1.6.0 security.istio.io/v1beta1 n/a istio +Certificate certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Issuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +ClusterIssuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +CertificateRequest certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Order certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Challenge certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Certificate cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +FlowSchema flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +FLowSchema flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +AnotherCRD someother/v1beta1 v1.9.0 v1.16.0 apps/v1 n/a other +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemoutjson: +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-column-list-to-custom.result.systemerrjson: +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-column-list-to-custom.result.__len__: 7 +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable venom.testsuite.filename: 03-cli-validation.yaml +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-additional-file.result.err: +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-additional-file-duplicate.result.systemoutjson: +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-column-list-to-custom.result.code: 1 +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-additional-file.result.timeseconds: 0.016162916 +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable venom.testsuite.name: CLI Validation +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable venom.testsuite: CLI Validation +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable venom.timestamp: 1693938311 +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-semver-with-no-v.result.__len__: 7 +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-additional-file.result.systemoutjson: +Sep 5 12:25:18.891 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-column-list-to-custom.result.timeseconds: 0.014003 +Sep 5 12:25:18.892 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-additional-file.result.systemerrjson: +Sep 5 12:25:18.892 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-semver-with-no-v.result.timeseconds: 0.017677125 +Sep 5 12:25:18.892 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-semver-starting-with-v.result.timeseconds: 0.015382625 +Sep 5 12:25:18.892 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-additional-file.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:18.892 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemerr: Error: you must use valid semver for all target versions with a leading 'v' - got foo vfoo +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:25:18.820905 873 root.go:474] you must use valid semver for all target versions with a leading 'v' - got foo vfoo +Sep 5 12:25:18.892 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-semver-starting-with-v.__type__: Result +Sep 5 12:25:18.892 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-semver-with-no-v.result.systemout: +Sep 5 12:25:18.892 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-additional-file.result.code: 0 +Sep 5 12:25:18.892 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-semver-with-no-v.result.err: +Sep 5 12:25:18.892 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-additional-file-duplicate.__type__: Result +Sep 5 12:25:18.892 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-semver-with-no-v.result.systemerrjson: +Sep 5 12:25:18.892 [INFO] [CLI Validation] [Pass-bad-column-list-to-markdown] Step #0 content is: {"assertions":["result.code ShouldEqual 1","result.systemerr ShouldContainSubstring \"invalid custom column option FOO\""],"script":"pluto detect-files -d assets/deprecated116 --target-versions foo=vfoo -o markdown --columns \"FOO\""} +Sep 5 12:25:18.892 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-1913800470 +Sep 5 12:25:18.892 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-1913800470' +Sep 5 12:25:18.905 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] Error: invalid custom column option FOO - must be one of [NAME FILEPATH NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN COMPONENT REPL AVAIL REPL AVAIL IN] + +Sep 5 12:25:18.905 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] Usage: + +Sep 5 12:25:18.905 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] pluto detect-files [flags] + +Sep 5 12:25:18.905 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] + +Sep 5 12:25:18.905 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] Flags: + +Sep 5 12:25:18.905 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] -d, --directory string The directory to scan. If blank, defaults to current working dir. + +Sep 5 12:25:18.905 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] -h, --help help for detect-files + +Sep 5 12:25:18.905 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] + +Sep 5 12:25:18.905 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] Global Flags: + +Sep 5 12:25:18.905 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + +Sep 5 12:25:18.905 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + +Sep 5 12:25:18.905 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] --components strings A list of components to run checks for. If nil, will check for all found in versions. + +Sep 5 12:25:18.905 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + +Sep 5 12:25:18.905 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + +Sep 5 12:25:18.905 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + +Sep 5 12:25:18.905 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] --no-footer Disable footer output + +Sep 5 12:25:18.905 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + +Sep 5 12:25:18.905 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + +Sep 5 12:25:18.905 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + +Sep 5 12:25:18.905 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + +Sep 5 12:25:18.905 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] -v, --v Level number for the log level verbosity + +Sep 5 12:25:18.905 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] + +Sep 5 12:25:18.905 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] E0905 12:25:18.905139 883 root.go:474] invalid custom column option FOO - must be one of [NAME FILEPATH NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN COMPONENT REPL AVAIL REPL AVAIL IN] + +Sep 5 12:25:18.905 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] result of runTestStepExecutor: {Systemout: SystemoutJSON: Systemerr:Error: invalid custom column option FOO - must be one of [NAME FILEPATH NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN COMPONENT REPL AVAIL REPL AVAIL IN] +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:25:18.905139 883 root.go:474] invalid custom column option FOO - must be one of [NAME FILEPATH NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN COMPONENT REPL AVAIL REPL AVAIL IN] SystemerrJSON: Err: Code:1 TimeSeconds:0.013329375} +Sep 5 12:25:18.906 [INFO] [CLI Validation] [Pass-bad-column-list-to-markdown] Ending testcase +Sep 5 12:25:18.906 [INFO] [CLI Validation] [Custom-output-with-no-columns-flag] Starting testcase +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-column-list-to-markdown.result.systemout: +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-additional-file.result.code: 0 +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable venom.testsuite.filename: 03-cli-validation.yaml +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-additional-file-duplicate.__type__: Result +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-column-list-to-custom.result.err: +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable venom.testsuite.shortName: 03-cli-validation +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-additional-file-duplicate.result.systemerr: Error: duplicate cannot be added to defaults: Deployment extensions/v1beta1 +Usage: + pluto list-versions [flags] + +Flags: + -h, --help help for list-versions + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:25:18.858651 877 root.go:474] duplicate cannot be added to defaults: Deployment extensions/v1beta1 +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-additional-file-duplicate.result.systemoutjson: +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-additional-file.__type__: Result +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-semver-with-no-v.result.err: +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-semver-with-no-v.result.systemerrjson: +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-semver-starting-with-v.result.__len__: 7 +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-additional-file.result.err: +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-semver-starting-with-v.result.timeseconds: 0.015382625 +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-additional-file.result.systemerrjson: +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-semver-starting-with-v.result.err: +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-column-list-to-custom.result.systemerr: Error: invalid custom column option FOO - must be one of [NAME FILEPATH NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN COMPONENT REPL AVAIL REPL AVAIL IN] +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:25:18.890894 881 root.go:474] invalid custom column option FOO - must be one of [NAME FILEPATH NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN COMPONENT REPL AVAIL REPL AVAIL IN] +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-additional-file.result.systemout: KIND NAME DEPRECATED IN REMOVED IN REPLACEMENT REPL AVAIL IN COMPONENT +Deployment extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +NetworkPolicy extensions/v1beta1 v1.9.0 v1.16.0 networking.k8s.io/v1 v1.8.0 k8s +Ingress extensions/v1beta1 v1.14.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +Ingress networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +IngressClass networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +DaemonSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +DaemonSet extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +PodSecurityPolicy extensions/v1beta1 v1.10.0 v1.16.0 policy/v1beta1 v1.10.0 k8s +PodSecurityPolicy policy/v1beta1 v1.21.0 v1.25.0 n/a n/a k8s +ReplicaSet extensions/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta2 n/a v1.16.0 apps/v1 v1.9.0 k8s +PriorityClass scheduling.k8s.io/v1beta1 v1.14.0 v1.22.0 scheduling.k8s.io/v1 v1.14.0 k8s +PriorityClass scheduling.k8s.io/v1alpha1 v1.14.0 v1.17.0 scheduling.k8s.io/v1 n/a k8s +CustomResourceDefinition apiextensions.k8s.io/v1beta1 v1.16.0 v1.22.0 apiextensions.k8s.io/v1 v1.16.0 k8s +MutatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ValidatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRole rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRole rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RuntimeClass node.k8s.io/v1beta1 v1.22.0 v1.25.0 node.k8s.io/v1 v1.20.0 k8s +PodDisruptionBudget policy/v1beta1 v1.21.0 v1.25.0 policy/v1 v1.21.0 k8s +PodDisruptionBudgetList policy/v1beta1 v1.21.0 v1.25.0 policy/v1 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 v1.23.0 k8s +HorizontalPodAutoscalerList autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscalerList autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +CronJob batch/v1beta1 v1.21.0 v1.25.0 batch/v1 v1.21.0 k8s +CronJobList batch/v1beta1 v1.21.0 v1.25.0 batch/v1 n/a k8s +CSINode storage.k8s.io/v1beta1 v1.17.0 v1.22.0 storage.k8s.io/v1 v1.17.0 k8s +CSIDriver storage.k8s.io/v1beta1 v1.19.0 v1.22.0 storage.k8s.io/v1 v1.19.0 k8s +CSIStorageCapacity storage.k8s.io/v1beta1 v1.24.0 v1.27.0 storage.k8s.io/v1 v1.24.0 k8s +StorageClass storage.k8s.io/v1beta1 v1.6.0 v1.22.0 storage.k8s.io/v1 v1.6.0 k8s +VolumeAttachment storage.k8s.io/v1beta1 v1.13.0 v1.22.0 storage.k8s.io/v1 v1.13.0 k8s +APIService apiregistration.k8s.io/v1beta1 v1.10.0 v1.22.0 apiregistration.k8s.io/v1 v1.10.0 k8s +TokenReview authentication.k8s.io/v1beta1 v1.6.0 v1.22.0 authentication.k8s.io/v1 v1.6.0 k8s +CertificateSigningRequest certificates.k8s.io/v1beta1 v1.19.0 v1.22.0 certificates.k8s.io/v1 v1.19.0 k8s +Lease coordination.k8s.io/v1beta1 v1.14.0 v1.22.0 coordination.k8s.io/v1 v1.14.0 k8s +Event events.k8s.io/v1beta1 v1.19.0 v1.25.0 events.k8s.io/v1 v1.19.0 k8s +EndpointSlice discovery.k8s.io/v1beta1 v1.21.0 v1.25.0 discovery.k8s.io/v1 v1.21.0 k8s +FlowControl flowcontrol.apiserver.k8s.io/v1beta1 v1.23.0 v1.26.0 flowcontrol.apiserver.k8s.io/v1beta2 n/a k8s +AuthorizationPolicies rbac.istio.io v1.4.0 v1.4.0 security.istio.io/v1beta1 n/a istio + authentication.istio.io/v1alpha1 v1.5.0 v1.6.0 security.istio.io/v1beta1 n/a istio +Certificate certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Issuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +ClusterIssuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +CertificateRequest certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Order certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Challenge certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Certificate cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +FlowSchema flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +FLowSchema flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +AnotherCRD someother/v1beta1 v1.9.0 v1.16.0 apps/v1 n/a other +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-additional-file-duplicate.result.timeseconds: 0.016889042 +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemerr: Error: you must use valid semver for all target versions with a leading 'v' - got foo vfoo +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:25:18.820905 873 root.go:474] you must use valid semver for all target versions with a leading 'v' - got foo vfoo +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-semver-with-no-v.result.code: 1 +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-additional-file.result.timeseconds: 0.016162916 +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-semver-starting-with-v.__type__: Result +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-ojson.result.systemout: KIND NAME DEPRECATED IN REMOVED IN REPLACEMENT REPL AVAIL IN COMPONENT +Deployment extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +NetworkPolicy extensions/v1beta1 v1.9.0 v1.16.0 networking.k8s.io/v1 v1.8.0 k8s +Ingress extensions/v1beta1 v1.14.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +Ingress networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +IngressClass networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +DaemonSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +DaemonSet extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +PodSecurityPolicy extensions/v1beta1 v1.10.0 v1.16.0 policy/v1beta1 v1.10.0 k8s +PodSecurityPolicy policy/v1beta1 v1.21.0 v1.25.0 n/a n/a k8s +ReplicaSet extensions/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta2 n/a v1.16.0 apps/v1 v1.9.0 k8s +PriorityClass scheduling.k8s.io/v1beta1 v1.14.0 v1.22.0 scheduling.k8s.io/v1 v1.14.0 k8s +PriorityClass scheduling.k8s.io/v1alpha1 v1.14.0 v1.17.0 scheduling.k8s.io/v1 n/a k8s +CustomResourceDefinition apiextensions.k8s.io/v1beta1 v1.16.0 v1.22.0 apiextensions.k8s.io/v1 v1.16.0 k8s +MutatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ValidatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRole rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRole rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RuntimeClass node.k8s.io/v1beta1 v1.22.0 v1.25.0 node.k8s.io/v1 v1.20.0 k8s +PodDisruptionBudget policy/v1beta1 v1.21.0 v1.25.0 policy/v1 v1.21.0 k8s +PodDisruptionBudgetList policy/v1beta1 v1.21.0 v1.25.0 policy/v1 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 v1.23.0 k8s +HorizontalPodAutoscalerList autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscalerList autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +CronJob batch/v1beta1 v1.21.0 v1.25.0 batch/v1 v1.21.0 k8s +CronJobList batch/v1beta1 v1.21.0 v1.25.0 batch/v1 n/a k8s +CSINode storage.k8s.io/v1beta1 v1.17.0 v1.22.0 storage.k8s.io/v1 v1.17.0 k8s +CSIDriver storage.k8s.io/v1beta1 v1.19.0 v1.22.0 storage.k8s.io/v1 v1.19.0 k8s +CSIStorageCapacity storage.k8s.io/v1beta1 v1.24.0 v1.27.0 storage.k8s.io/v1 v1.24.0 k8s +StorageClass storage.k8s.io/v1beta1 v1.6.0 v1.22.0 storage.k8s.io/v1 v1.6.0 k8s +VolumeAttachment storage.k8s.io/v1beta1 v1.13.0 v1.22.0 storage.k8s.io/v1 v1.13.0 k8s +APIService apiregistration.k8s.io/v1beta1 v1.10.0 v1.22.0 apiregistration.k8s.io/v1 v1.10.0 k8s +TokenReview authentication.k8s.io/v1beta1 v1.6.0 v1.22.0 authentication.k8s.io/v1 v1.6.0 k8s +CertificateSigningRequest certificates.k8s.io/v1beta1 v1.19.0 v1.22.0 certificates.k8s.io/v1 v1.19.0 k8s +Lease coordination.k8s.io/v1beta1 v1.14.0 v1.22.0 coordination.k8s.io/v1 v1.14.0 k8s +Event events.k8s.io/v1beta1 v1.19.0 v1.25.0 events.k8s.io/v1 v1.19.0 k8s +EndpointSlice discovery.k8s.io/v1beta1 v1.21.0 v1.25.0 discovery.k8s.io/v1 v1.21.0 k8s +FlowControl flowcontrol.apiserver.k8s.io/v1beta1 v1.23.0 v1.26.0 flowcontrol.apiserver.k8s.io/v1beta2 n/a k8s +AuthorizationPolicies rbac.istio.io v1.4.0 v1.4.0 security.istio.io/v1beta1 n/a istio + authentication.istio.io/v1alpha1 v1.5.0 v1.6.0 security.istio.io/v1beta1 n/a istio +Certificate certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Issuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +ClusterIssuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +CertificateRequest certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Order certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Challenge certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Certificate cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +FlowSchema flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +FLowSchema flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-column-list-to-markdown.result.systemoutjson: +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable venom.timestamp: 1693938311 +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-additional-file-duplicate.result.code: 1 +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-semver-with-no-v.result.__len__: 7 +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-additional-file-duplicate.result.err: +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-ojson.result.__len__: 7 +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-additional-file-duplicate.result.systemerrjson: +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-additional-file.result.__len__: 7 +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-additional-file-duplicate.result.systemout: +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-ojson.result.code: 0 +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-column-list-to-markdown.result.systemerrjson: +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-semver-with-no-v.result.timeseconds: 0.017677125 +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-semver-with-no-v.result.systemoutjson: +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-semver-with-no-v.__type__: Result +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-ojson.result.systemoutjson: +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-additional-file.result.systemoutjson: +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable venom.outputdir: +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable __Type__: Map +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-column-list-to-custom.result.systemout: +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-column-list-to-markdown.result.err: +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-ojson.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-ojson.result.err: +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-column-list-to-markdown.result.__len__: 7 +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-ojson.result.timeseconds: 0.018252541 +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-additional-file.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemerrjson: +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-column-list-to-markdown.__type__: Result +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable __Len__: 8 +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable venom.datetime: 2023-09-05T12:25:11-06:00 +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-column-list-to-custom.result.timeseconds: 0.014003 +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-column-list-to-custom.result.systemerrjson: +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemout: +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-semver-starting-with-v.result.code: 1 +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-column-list-to-custom.result.code: 1 +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable venom.testsuite.filepath: tests/03-cli-validation.yaml +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-additional-file-duplicate.result.__len__: 7 +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-column-list-to-custom.__type__: Result +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-column-list-to-custom.result.systemoutjson: +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable venom.testsuite.name: CLI Validation +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable venom.libdir: +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-ojson.__type__: Result +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-semver-with-no-v.result.systemout: +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable venom.testsuite: CLI Validation +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable venom.testcase: Custom-output-with-no-columns-flag +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-column-list-to-markdown.result.code: 1 +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemoutjson: +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-column-list-to-custom.result.__len__: 7 +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-ojson.result.systemerrjson: +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-column-list-to-markdown.result.systemerr: Error: invalid custom column option FOO - must be one of [NAME FILEPATH NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN COMPONENT REPL AVAIL REPL AVAIL IN] +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:25:18.905139 883 root.go:474] invalid custom column option FOO - must be one of [NAME FILEPATH NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN COMPONENT REPL AVAIL REPL AVAIL IN] +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-semver-with-no-v.result.systemerr: Error: you must use valid semver for all target versions with a leading 'v' - got foo 1.0.0 +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:25:18.803810 871 root.go:474] you must use valid semver for all target versions with a leading 'v' - got foo 1.0.0 +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-column-list-to-markdown.result.timeseconds: 0.013329375 +Sep 5 12:25:18.906 [INFO] [CLI Validation] [Custom-output-with-no-columns-flag] Step #0 content is: {"assertions":["result.code ShouldEqual 1","result.systemerr ShouldContainSubstring \"when --output=custom you must specify --columns\""],"script":"pluto detect-files -d assets/deprecated116 --target-versions foo=vfoo -o custom"} +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-785295704 +Sep 5 12:25:18.906 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-785295704' +Sep 5 12:25:18.920 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] Error: when --output=custom you must specify --columns + +Sep 5 12:25:18.920 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] Usage: + +Sep 5 12:25:18.920 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] pluto detect-files [flags] + +Sep 5 12:25:18.920 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] + +Sep 5 12:25:18.920 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] Flags: + +Sep 5 12:25:18.921 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] -d, --directory string The directory to scan. If blank, defaults to current working dir. + +Sep 5 12:25:18.921 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] -h, --help help for detect-files + +Sep 5 12:25:18.921 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] + +Sep 5 12:25:18.921 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] Global Flags: + +Sep 5 12:25:18.921 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + +Sep 5 12:25:18.921 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + +Sep 5 12:25:18.921 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] --components strings A list of components to run checks for. If nil, will check for all found in versions. + +Sep 5 12:25:18.921 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + +Sep 5 12:25:18.921 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + +Sep 5 12:25:18.921 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + +Sep 5 12:25:18.921 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] --no-footer Disable footer output + +Sep 5 12:25:18.921 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + +Sep 5 12:25:18.921 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + +Sep 5 12:25:18.921 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + +Sep 5 12:25:18.921 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + +Sep 5 12:25:18.921 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] -v, --v Level number for the log level verbosity + +Sep 5 12:25:18.921 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] + +Sep 5 12:25:18.921 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] E0905 12:25:18.920952 885 root.go:474] when --output=custom you must specify --columns + +Sep 5 12:25:18.921 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] result of runTestStepExecutor: {Systemout: SystemoutJSON: Systemerr:Error: when --output=custom you must specify --columns +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:25:18.920952 885 root.go:474] when --output=custom you must specify --columns SystemerrJSON: Err: Code:1 TimeSeconds:0.014720125} +Sep 5 12:25:18.921 [INFO] [CLI Validation] [Custom-output-with-no-columns-flag] Ending testcase +Sep 5 12:25:18.922 [INFO] [CLI Validation] [no-output-due-to-bad-components-list] Starting testcase +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Custom-output-with-no-columns-flag.__type__: Result +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-ojson.result.code: 0 +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-semver-with-no-v.result.systemerrjson: +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-additional-file.result.systemerrjson: +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable venom.testsuite.name: CLI Validation +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable venom.outputdir: +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-column-list-to-custom.result.__len__: 7 +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-column-list-to-custom.result.systemerr: Error: invalid custom column option FOO - must be one of [NAME FILEPATH NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN COMPONENT REPL AVAIL REPL AVAIL IN] +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:25:18.890894 881 root.go:474] invalid custom column option FOO - must be one of [NAME FILEPATH NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN COMPONENT REPL AVAIL REPL AVAIL IN] +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Custom-output-with-no-columns-flag.result.systemerrjson: +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-semver-with-no-v.result.systemout: +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-additional-file-duplicate.result.systemoutjson: +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-ojson.result.systemoutjson: +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-column-list-to-markdown.result.code: 1 +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-column-list-to-custom.result.err: +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-column-list-to-markdown.__type__: Result +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-ojson.result.err: +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-semver-with-no-v.result.code: 1 +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-column-list-to-markdown.result.timeseconds: 0.013329375 +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-column-list-to-markdown.result.systemout: +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-additional-file-duplicate.result.__len__: 7 +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Custom-output-with-no-columns-flag.result.err: +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-semver-starting-with-v.result.err: +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-additional-file.__type__: Result +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Custom-output-with-no-columns-flag.result.timeseconds: 0.014720125 +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-semver-starting-with-v.result.__len__: 7 +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-ojson.result.timeseconds: 0.018252541 +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable venom.testsuite: CLI Validation +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable venom.testsuite.filename: 03-cli-validation.yaml +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-additional-file-duplicate.result.code: 1 +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-additional-file.result.__len__: 7 +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-column-list-to-markdown.result.err: +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-additional-file-duplicate.__type__: Result +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-semver-starting-with-v.result.timeseconds: 0.015382625 +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-additional-file.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Custom-output-with-no-columns-flag.result.code: 1 +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-ojson.result.__len__: 7 +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemerr: Error: you must use valid semver for all target versions with a leading 'v' - got foo vfoo +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:25:18.820905 873 root.go:474] you must use valid semver for all target versions with a leading 'v' - got foo vfoo +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Custom-output-with-no-columns-flag.result.__len__: 7 +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-ojson.__type__: Result +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-ojson.result.systemout: KIND NAME DEPRECATED IN REMOVED IN REPLACEMENT REPL AVAIL IN COMPONENT +Deployment extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +NetworkPolicy extensions/v1beta1 v1.9.0 v1.16.0 networking.k8s.io/v1 v1.8.0 k8s +Ingress extensions/v1beta1 v1.14.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +Ingress networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +IngressClass networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +DaemonSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +DaemonSet extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +PodSecurityPolicy extensions/v1beta1 v1.10.0 v1.16.0 policy/v1beta1 v1.10.0 k8s +PodSecurityPolicy policy/v1beta1 v1.21.0 v1.25.0 n/a n/a k8s +ReplicaSet extensions/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta2 n/a v1.16.0 apps/v1 v1.9.0 k8s +PriorityClass scheduling.k8s.io/v1beta1 v1.14.0 v1.22.0 scheduling.k8s.io/v1 v1.14.0 k8s +PriorityClass scheduling.k8s.io/v1alpha1 v1.14.0 v1.17.0 scheduling.k8s.io/v1 n/a k8s +CustomResourceDefinition apiextensions.k8s.io/v1beta1 v1.16.0 v1.22.0 apiextensions.k8s.io/v1 v1.16.0 k8s +MutatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ValidatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRole rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRole rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RuntimeClass node.k8s.io/v1beta1 v1.22.0 v1.25.0 node.k8s.io/v1 v1.20.0 k8s +PodDisruptionBudget policy/v1beta1 v1.21.0 v1.25.0 policy/v1 v1.21.0 k8s +PodDisruptionBudgetList policy/v1beta1 v1.21.0 v1.25.0 policy/v1 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 v1.23.0 k8s +HorizontalPodAutoscalerList autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscalerList autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +CronJob batch/v1beta1 v1.21.0 v1.25.0 batch/v1 v1.21.0 k8s +CronJobList batch/v1beta1 v1.21.0 v1.25.0 batch/v1 n/a k8s +CSINode storage.k8s.io/v1beta1 v1.17.0 v1.22.0 storage.k8s.io/v1 v1.17.0 k8s +CSIDriver storage.k8s.io/v1beta1 v1.19.0 v1.22.0 storage.k8s.io/v1 v1.19.0 k8s +CSIStorageCapacity storage.k8s.io/v1beta1 v1.24.0 v1.27.0 storage.k8s.io/v1 v1.24.0 k8s +StorageClass storage.k8s.io/v1beta1 v1.6.0 v1.22.0 storage.k8s.io/v1 v1.6.0 k8s +VolumeAttachment storage.k8s.io/v1beta1 v1.13.0 v1.22.0 storage.k8s.io/v1 v1.13.0 k8s +APIService apiregistration.k8s.io/v1beta1 v1.10.0 v1.22.0 apiregistration.k8s.io/v1 v1.10.0 k8s +TokenReview authentication.k8s.io/v1beta1 v1.6.0 v1.22.0 authentication.k8s.io/v1 v1.6.0 k8s +CertificateSigningRequest certificates.k8s.io/v1beta1 v1.19.0 v1.22.0 certificates.k8s.io/v1 v1.19.0 k8s +Lease coordination.k8s.io/v1beta1 v1.14.0 v1.22.0 coordination.k8s.io/v1 v1.14.0 k8s +Event events.k8s.io/v1beta1 v1.19.0 v1.25.0 events.k8s.io/v1 v1.19.0 k8s +EndpointSlice discovery.k8s.io/v1beta1 v1.21.0 v1.25.0 discovery.k8s.io/v1 v1.21.0 k8s +FlowControl flowcontrol.apiserver.k8s.io/v1beta1 v1.23.0 v1.26.0 flowcontrol.apiserver.k8s.io/v1beta2 n/a k8s +AuthorizationPolicies rbac.istio.io v1.4.0 v1.4.0 security.istio.io/v1beta1 n/a istio + authentication.istio.io/v1alpha1 v1.5.0 v1.6.0 security.istio.io/v1beta1 n/a istio +Certificate certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Issuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +ClusterIssuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +CertificateRequest certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Order certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Challenge certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Certificate cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +FlowSchema flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +FLowSchema flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable __Len__: 8 +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable venom.testsuite.shortName: 03-cli-validation +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-additional-file.result.code: 0 +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-column-list-to-markdown.result.systemerrjson: +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-column-list-to-custom.result.systemout: +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-semver-with-no-v.__type__: Result +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemoutjson: +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-column-list-to-custom.result.systemerrjson: +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-additional-file.result.timeseconds: 0.016162916 +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-additional-file.result.err: +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-column-list-to-markdown.result.systemerr: Error: invalid custom column option FOO - must be one of [NAME FILEPATH NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN COMPONENT REPL AVAIL REPL AVAIL IN] +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:25:18.905139 883 root.go:474] invalid custom column option FOO - must be one of [NAME FILEPATH NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN COMPONENT REPL AVAIL REPL AVAIL IN] +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-column-list-to-custom.result.timeseconds: 0.014003 +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-column-list-to-markdown.result.systemoutjson: +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-semver-starting-with-v.__type__: Result +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-additional-file.result.systemout: KIND NAME DEPRECATED IN REMOVED IN REPLACEMENT REPL AVAIL IN COMPONENT +Deployment extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +NetworkPolicy extensions/v1beta1 v1.9.0 v1.16.0 networking.k8s.io/v1 v1.8.0 k8s +Ingress extensions/v1beta1 v1.14.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +Ingress networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +IngressClass networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +DaemonSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +DaemonSet extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +PodSecurityPolicy extensions/v1beta1 v1.10.0 v1.16.0 policy/v1beta1 v1.10.0 k8s +PodSecurityPolicy policy/v1beta1 v1.21.0 v1.25.0 n/a n/a k8s +ReplicaSet extensions/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta2 n/a v1.16.0 apps/v1 v1.9.0 k8s +PriorityClass scheduling.k8s.io/v1beta1 v1.14.0 v1.22.0 scheduling.k8s.io/v1 v1.14.0 k8s +PriorityClass scheduling.k8s.io/v1alpha1 v1.14.0 v1.17.0 scheduling.k8s.io/v1 n/a k8s +CustomResourceDefinition apiextensions.k8s.io/v1beta1 v1.16.0 v1.22.0 apiextensions.k8s.io/v1 v1.16.0 k8s +MutatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ValidatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRole rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRole rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RuntimeClass node.k8s.io/v1beta1 v1.22.0 v1.25.0 node.k8s.io/v1 v1.20.0 k8s +PodDisruptionBudget policy/v1beta1 v1.21.0 v1.25.0 policy/v1 v1.21.0 k8s +PodDisruptionBudgetList policy/v1beta1 v1.21.0 v1.25.0 policy/v1 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 v1.23.0 k8s +HorizontalPodAutoscalerList autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscalerList autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +CronJob batch/v1beta1 v1.21.0 v1.25.0 batch/v1 v1.21.0 k8s +CronJobList batch/v1beta1 v1.21.0 v1.25.0 batch/v1 n/a k8s +CSINode storage.k8s.io/v1beta1 v1.17.0 v1.22.0 storage.k8s.io/v1 v1.17.0 k8s +CSIDriver storage.k8s.io/v1beta1 v1.19.0 v1.22.0 storage.k8s.io/v1 v1.19.0 k8s +CSIStorageCapacity storage.k8s.io/v1beta1 v1.24.0 v1.27.0 storage.k8s.io/v1 v1.24.0 k8s +StorageClass storage.k8s.io/v1beta1 v1.6.0 v1.22.0 storage.k8s.io/v1 v1.6.0 k8s +VolumeAttachment storage.k8s.io/v1beta1 v1.13.0 v1.22.0 storage.k8s.io/v1 v1.13.0 k8s +APIService apiregistration.k8s.io/v1beta1 v1.10.0 v1.22.0 apiregistration.k8s.io/v1 v1.10.0 k8s +TokenReview authentication.k8s.io/v1beta1 v1.6.0 v1.22.0 authentication.k8s.io/v1 v1.6.0 k8s +CertificateSigningRequest certificates.k8s.io/v1beta1 v1.19.0 v1.22.0 certificates.k8s.io/v1 v1.19.0 k8s +Lease coordination.k8s.io/v1beta1 v1.14.0 v1.22.0 coordination.k8s.io/v1 v1.14.0 k8s +Event events.k8s.io/v1beta1 v1.19.0 v1.25.0 events.k8s.io/v1 v1.19.0 k8s +EndpointSlice discovery.k8s.io/v1beta1 v1.21.0 v1.25.0 discovery.k8s.io/v1 v1.21.0 k8s +FlowControl flowcontrol.apiserver.k8s.io/v1beta1 v1.23.0 v1.26.0 flowcontrol.apiserver.k8s.io/v1beta2 n/a k8s +AuthorizationPolicies rbac.istio.io v1.4.0 v1.4.0 security.istio.io/v1beta1 n/a istio + authentication.istio.io/v1alpha1 v1.5.0 v1.6.0 security.istio.io/v1beta1 n/a istio +Certificate certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Issuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +ClusterIssuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +CertificateRequest certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Order certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Challenge certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Certificate cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +FlowSchema flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +FLowSchema flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +AnotherCRD someother/v1beta1 v1.9.0 v1.16.0 apps/v1 n/a other +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-semver-with-no-v.result.timeseconds: 0.017677125 +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-ojson.result.systemerrjson: +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Custom-output-with-no-columns-flag.result.systemoutjson: +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable venom.testsuite.filepath: tests/03-cli-validation.yaml +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-semver-with-no-v.result.systemerr: Error: you must use valid semver for all target versions with a leading 'v' - got foo 1.0.0 +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:25:18.803810 871 root.go:474] you must use valid semver for all target versions with a leading 'v' - got foo 1.0.0 +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-additional-file-duplicate.result.timeseconds: 0.016889042 +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-column-list-to-custom.__type__: Result +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Custom-output-with-no-columns-flag.result.systemerr: Error: when --output=custom you must specify --columns +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:25:18.920952 885 root.go:474] when --output=custom you must specify --columns +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable venom.libdir: +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-column-list-to-markdown.result.__len__: 7 +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-column-list-to-custom.result.systemoutjson: +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-semver-with-no-v.result.systemoutjson: +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-semver-with-no-v.result.err: +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-additional-file-duplicate.result.systemerrjson: +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-additional-file-duplicate.result.systemerr: Error: duplicate cannot be added to defaults: Deployment extensions/v1beta1 +Usage: + pluto list-versions [flags] + +Flags: + -h, --help help for list-versions + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:25:18.858651 877 root.go:474] duplicate cannot be added to defaults: Deployment extensions/v1beta1 +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Custom-output-with-no-columns-flag.result.systemout: +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable venom.datetime: 2023-09-05T12:25:11-06:00 +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemerrjson: +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-semver-starting-with-v.result.code: 1 +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-additional-file-duplicate.result.err: +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable venom.testcase: no-output-due-to-bad-components-list +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-ojson.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemout: +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-semver-with-no-v.result.__len__: 7 +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-column-list-to-custom.result.code: 1 +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-additional-file.result.systemoutjson: +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-additional-file-duplicate.result.systemout: +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable venom.timestamp: 1693938311 +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable __Type__: Map +Sep 5 12:25:18.922 [INFO] [CLI Validation] [no-output-due-to-bad-components-list] Step #0 content is: {"assertions":["result.code ShouldEqual 1","result.systemerr ShouldContainSubstring \"cannot find deprecations for zero components\""],"script":"pluto detect-files -d assets/ --components=foo"} +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-142573360 +Sep 5 12:25:18.922 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-142573360' +Sep 5 12:25:18.935 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] Error: cannot find deprecations for zero components + +Sep 5 12:25:18.935 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] Usage: + +Sep 5 12:25:18.935 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] pluto detect-files [flags] + +Sep 5 12:25:18.935 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] + +Sep 5 12:25:18.935 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] Flags: + +Sep 5 12:25:18.935 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] -d, --directory string The directory to scan. If blank, defaults to current working dir. + +Sep 5 12:25:18.935 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] -h, --help help for detect-files + +Sep 5 12:25:18.935 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] + +Sep 5 12:25:18.935 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] Global Flags: + +Sep 5 12:25:18.935 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + +Sep 5 12:25:18.935 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + +Sep 5 12:25:18.935 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] --components strings A list of components to run checks for. If nil, will check for all found in versions. + +Sep 5 12:25:18.935 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + +Sep 5 12:25:18.935 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + +Sep 5 12:25:18.935 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + +Sep 5 12:25:18.935 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] --no-footer Disable footer output + +Sep 5 12:25:18.936 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + +Sep 5 12:25:18.936 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + +Sep 5 12:25:18.936 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + +Sep 5 12:25:18.936 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + +Sep 5 12:25:18.936 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] -v, --v Level number for the log level verbosity + +Sep 5 12:25:18.936 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] + +Sep 5 12:25:18.936 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] E0905 12:25:18.935866 887 root.go:474] cannot find deprecations for zero components + +Sep 5 12:25:18.936 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] result of runTestStepExecutor: {Systemout: SystemoutJSON: Systemerr:Error: cannot find deprecations for zero components +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:25:18.935866 887 root.go:474] cannot find deprecations for zero components SystemerrJSON: Err: Code:1 TimeSeconds:0.013601625} +Sep 5 12:25:18.936 [INFO] [CLI Validation] [no-output-due-to-bad-components-list] Ending testcase +Sep 5 12:25:18.936 [INFO] [CLI Validation] Ending testsuite +Sep 5 12:25:18.936 [DEBU] final status: PASS diff --git a/e2e/venom.log b/e2e/venom.log new file mode 100644 index 00000000..b1497577 --- /dev/null +++ b/e2e/venom.log @@ -0,0 +1,4874 @@ +Sep 5 12:24:01.534 [INFO] Reading tests/00_static_files.yaml +Sep 5 12:24:01.536 [INFO] Reading tests/01_helm-detect-3.yaml +Sep 5 12:24:01.538 [INFO] Reading tests/03-cli-validation.yaml +Sep 5 12:24:01.539 [INFO] Parsing testsuite tests/00_static_files.yaml : map[venom.datetime:2023-09-05T12:24:01-06:00 venom.testsuite:Static Code Files (including helm) venom.testsuite.filename:00_static_files.yaml venom.testsuite.filepath:tests/00_static_files.yaml venom.testsuite.name:Static Code Files (including helm) venom.testsuite.shortName:00_static_files venom.testsuite.workdir:/Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests venom.timestamp:1693938241] +Sep 5 12:24:01.545 [DEBU] Testsuite (tests/00_static_files.yaml) variables: map[venom.datetime:2023-09-05T12:24:01-06:00 venom.testsuite:Static Code Files (including helm) venom.testsuite.filename:00_static_files.yaml venom.testsuite.filepath:tests/00_static_files.yaml venom.testsuite.name:Static Code Files (including helm) venom.testsuite.shortName:00_static_files venom.testsuite.workdir:/Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests venom.timestamp:1693938241] +Sep 5 12:24:01.545 [INFO] Parsing testsuite tests/01_helm-detect-3.yaml : map[venom.datetime:2023-09-05T12:24:01-06:00 venom.testsuite:Static Code Files (including helm) venom.testsuite.filename:01_helm-detect-3.yaml venom.testsuite.filepath:tests/01_helm-detect-3.yaml venom.testsuite.name:Static Code Files (including helm) venom.testsuite.shortName:01_helm-detect-3 venom.testsuite.workdir:/Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests venom.timestamp:1693938241] +Sep 5 12:24:01.545 [DEBU] Testsuite (tests/01_helm-detect-3.yaml) variables: map[venom.datetime:2023-09-05T12:24:01-06:00 venom.testsuite:Static Code Files (including helm) venom.testsuite.filename:01_helm-detect-3.yaml venom.testsuite.filepath:tests/01_helm-detect-3.yaml venom.testsuite.name:Static Code Files (including helm) venom.testsuite.shortName:01_helm-detect-3 venom.testsuite.workdir:/Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests venom.timestamp:1693938241] +Sep 5 12:24:01.545 [INFO] Parsing testsuite tests/03-cli-validation.yaml : map[venom.datetime:2023-09-05T12:24:01-06:00 venom.testsuite:CLI Validation venom.testsuite.filename:03-cli-validation.yaml venom.testsuite.filepath:tests/03-cli-validation.yaml venom.testsuite.name:CLI Validation venom.testsuite.shortName:03-cli-validation venom.testsuite.workdir:/Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests venom.timestamp:1693938241] +Sep 5 12:24:01.545 [DEBU] Testsuite (tests/03-cli-validation.yaml) variables: map[venom.datetime:2023-09-05T12:24:01-06:00 venom.testsuite:CLI Validation venom.testsuite.filename:03-cli-validation.yaml venom.testsuite.filepath:tests/03-cli-validation.yaml venom.testsuite.name:CLI Validation venom.testsuite.shortName:03-cli-validation venom.testsuite.workdir:/Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests venom.timestamp:1693938241] +Sep 5 12:24:01.545 [DEBU] nb testsuites: 3 +Sep 5 12:24:01.545 [INFO] [Static Code Files (including helm)] Starting testsuite +Sep 5 12:24:01.545 [INFO] [Static Code Files (including helm)] [static-files] Starting testcase +Sep 5 12:24:01.545 [DEBU] [Static Code Files (including helm)] [static-files] Running testcase with variable venom.testsuite.name: Static Code Files (including helm) +Sep 5 12:24:01.545 [DEBU] [Static Code Files (including helm)] [static-files] Running testcase with variable venom.testsuite.shortName: 00_static_files +Sep 5 12:24:01.545 [DEBU] [Static Code Files (including helm)] [static-files] Running testcase with variable venom.timestamp: 1693938241 +Sep 5 12:24:01.545 [DEBU] [Static Code Files (including helm)] [static-files] Running testcase with variable venom.libdir: +Sep 5 12:24:01.545 [DEBU] [Static Code Files (including helm)] [static-files] Running testcase with variable venom.testcase: static-files +Sep 5 12:24:01.545 [DEBU] [Static Code Files (including helm)] [static-files] Running testcase with variable __Len__: 8 +Sep 5 12:24:01.545 [DEBU] [Static Code Files (including helm)] [static-files] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:24:01.545 [DEBU] [Static Code Files (including helm)] [static-files] Running testcase with variable venom.testsuite: Static Code Files (including helm) +Sep 5 12:24:01.545 [DEBU] [Static Code Files (including helm)] [static-files] Running testcase with variable __Type__: Map +Sep 5 12:24:01.545 [DEBU] [Static Code Files (including helm)] [static-files] Running testcase with variable venom.datetime: 2023-09-05T12:24:01-06:00 +Sep 5 12:24:01.545 [DEBU] [Static Code Files (including helm)] [static-files] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:24:01.545 [DEBU] [Static Code Files (including helm)] [static-files] Running testcase with variable venom.outputdir: +Sep 5 12:24:01.545 [DEBU] [Static Code Files (including helm)] [static-files] Running testcase with variable venom.testsuite.filename: 00_static_files.yaml +Sep 5 12:24:01.545 [DEBU] [Static Code Files (including helm)] [static-files] Running testcase with variable venom.testsuite.filepath: tests/00_static_files.yaml +Sep 5 12:24:01.546 [INFO] [Static Code Files (including helm)] [static-files] Step #0 content is: {"assertions":["result.code ShouldEqual 2","result.systemout ShouldContainSubstring \"NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED\"","result.systemout ShouldContainSubstring \"utilities Deployment extensions/v1beta1 apps/v1 false true\"","result.systemout ShouldNotContainSubstring \"utilities Deployment apps/v1 false false\""],"script":"pluto detect-files -d assets/ --target-versions k8s=v1.15.0"} +Sep 5 12:24:01.547 [DEBU] [Static Code Files (including helm)] [static-files] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-46921116 +Sep 5 12:24:01.547 [DEBU] [Static Code Files (including helm)] [static-files] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-46921116' +Sep 5 12:24:01.747 [DEBU] [Static Code Files (including helm)] [static-files] [exec] NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL + +Sep 5 12:24:01.747 [DEBU] [Static Code Files (including helm)] [static-files] [exec] utilities Deployment extensions/v1beta1 apps/v1 false true true + +Sep 5 12:24:01.747 [DEBU] [Static Code Files (including helm)] [static-files] [exec] utilities Deployment extensions/v1beta1 apps/v1 false true true + +Sep 5 12:24:01.748 [DEBU] [Static Code Files (including helm)] [static-files] [exec] + +Sep 5 12:24:01.748 [DEBU] [Static Code Files (including helm)] [static-files] [exec] + +Sep 5 12:24:01.748 [DEBU] [Static Code Files (including helm)] [static-files] [exec] + +Sep 5 12:24:01.748 [DEBU] [Static Code Files (including helm)] [static-files] [exec] Want more? Automate Pluto for free with Fairwinds Insights! + +Sep 5 12:24:01.748 [DEBU] [Static Code Files (including helm)] [static-files] [exec] 🚀 https://fairwinds.com/insights-signup/pluto 🚀 + +Sep 5 12:24:01.748 [DEBU] [Static Code Files (including helm)] [static-files] [exec] result of runTestStepExecutor: {Systemout:NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +utilities Deployment extensions/v1beta1 apps/v1 false true true +utilities Deployment extensions/v1beta1 apps/v1 false true true SystemoutJSON: Systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 SystemerrJSON: Err: Code:2 TimeSeconds:0.200534167} +Sep 5 12:24:01.749 [INFO] [Static Code Files (including helm)] [static-files] Ending testcase +Sep 5 12:24:01.749 [INFO] [Static Code Files (including helm)] [static-files-only-show-removed] Starting testcase +Sep 5 12:24:01.749 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable venom.testsuite.filepath: tests/00_static_files.yaml +Sep 5 12:24:01.749 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable venom.libdir: +Sep 5 12:24:01.749 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable venom.timestamp: 1693938241 +Sep 5 12:24:01.749 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable venom.testsuite: Static Code Files (including helm) +Sep 5 12:24:01.749 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable static-files.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +utilities Deployment extensions/v1beta1 apps/v1 false true true +utilities Deployment extensions/v1beta1 apps/v1 false true true +Sep 5 12:24:01.749 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable __Len__: 8 +Sep 5 12:24:01.749 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:24:01.749 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable venom.testsuite.shortName: 00_static_files +Sep 5 12:24:01.749 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable __Type__: Map +Sep 5 12:24:01.749 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:24:01.749 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable venom.testcase: static-files-only-show-removed +Sep 5 12:24:01.749 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable static-files.result.__len__: 7 +Sep 5 12:24:01.749 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable static-files.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:01.749 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable venom.outputdir: +Sep 5 12:24:01.749 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable venom.datetime: 2023-09-05T12:24:01-06:00 +Sep 5 12:24:01.749 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable static-files.result.code: 2 +Sep 5 12:24:01.749 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable static-files.result.systemerrjson: +Sep 5 12:24:01.749 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable static-files.result.timeseconds: 0.200534167 +Sep 5 12:24:01.749 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable static-files.result.err: +Sep 5 12:24:01.749 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable static-files.__type__: Result +Sep 5 12:24:01.749 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable static-files.result.systemoutjson: +Sep 5 12:24:01.749 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable venom.testsuite.name: Static Code Files (including helm) +Sep 5 12:24:01.749 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] Running testcase with variable venom.testsuite.filename: 00_static_files.yaml +Sep 5 12:24:01.749 [INFO] [Static Code Files (including helm)] [static-files-only-show-removed] Step #0 content is: {"assertions":["result.code ShouldEqual 0","result.systemout ShouldEqual \"No output to display\""],"script":"pluto detect-files -d assets/ --target-versions k8s=v1.15.0 -r"} +Sep 5 12:24:01.749 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-1382828823 +Sep 5 12:24:01.749 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-1382828823' +Sep 5 12:24:01.870 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] [exec] + +Sep 5 12:24:01.870 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] [exec] + +Sep 5 12:24:01.870 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] [exec] Want more? Automate Pluto for free with Fairwinds Insights! + +Sep 5 12:24:01.870 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] [exec] 🚀 https://fairwinds.com/insights-signup/pluto 🚀 + +Sep 5 12:24:01.870 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] [exec] No output to display + +Sep 5 12:24:01.870 [DEBU] [Static Code Files (including helm)] [static-files-only-show-removed] [exec] result of runTestStepExecutor: {Systemout:No output to display SystemoutJSON: Systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 SystemerrJSON: Err: Code:0 TimeSeconds:0.121175458} +Sep 5 12:24:01.870 [INFO] [Static Code Files (including helm)] [static-files-only-show-removed] Ending testcase +Sep 5 12:24:01.870 [INFO] [Static Code Files (including helm)] [helm-template] Starting testcase +Sep 5 12:24:01.870 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable venom.testsuite: Static Code Files (including helm) +Sep 5 12:24:01.870 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable static-files-only-show-removed.result.systemerrjson: +Sep 5 12:24:01.870 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable static-files.__type__: Result +Sep 5 12:24:01.870 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable static-files.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:01.870 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:24:01.870 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable venom.testcase: helm-template +Sep 5 12:24:01.870 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable static-files.result.systemerrjson: +Sep 5 12:24:01.870 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable static-files.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +utilities Deployment extensions/v1beta1 apps/v1 false true true +utilities Deployment extensions/v1beta1 apps/v1 false true true +Sep 5 12:24:01.870 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable static-files-only-show-removed.result.err: +Sep 5 12:24:01.870 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable static-files-only-show-removed.result.__len__: 7 +Sep 5 12:24:01.870 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:24:01.870 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable static-files-only-show-removed.__type__: Result +Sep 5 12:24:01.870 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable static-files.result.code: 2 +Sep 5 12:24:01.870 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable venom.timestamp: 1693938241 +Sep 5 12:24:01.870 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable __Type__: Map +Sep 5 12:24:01.870 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable static-files-only-show-removed.result.systemoutjson: +Sep 5 12:24:01.870 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable static-files.result.timeseconds: 0.200534167 +Sep 5 12:24:01.870 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable static-files-only-show-removed.result.timeseconds: 0.121175458 +Sep 5 12:24:01.870 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable static-files-only-show-removed.result.systemout: No output to display +Sep 5 12:24:01.870 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable static-files-only-show-removed.result.code: 0 +Sep 5 12:24:01.870 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable __Len__: 8 +Sep 5 12:24:01.870 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable venom.testsuite.filepath: tests/00_static_files.yaml +Sep 5 12:24:01.870 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable venom.testsuite.shortName: 00_static_files +Sep 5 12:24:01.870 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable static-files.result.systemoutjson: +Sep 5 12:24:01.870 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable static-files-only-show-removed.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:01.870 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable static-files.result.err: +Sep 5 12:24:01.870 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable venom.testsuite.name: Static Code Files (including helm) +Sep 5 12:24:01.871 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable static-files.result.__len__: 7 +Sep 5 12:24:01.871 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable venom.outputdir: +Sep 5 12:24:01.871 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable venom.datetime: 2023-09-05T12:24:01-06:00 +Sep 5 12:24:01.871 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable venom.testsuite.filename: 00_static_files.yaml +Sep 5 12:24:01.871 [DEBU] [Static Code Files (including helm)] [helm-template] Running testcase with variable venom.libdir: +Sep 5 12:24:01.871 [INFO] [Static Code Files (including helm)] [helm-template] Step #0 content is: {"assertions":["result.systemout ShouldContainSubstring \"NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED\"","result.systemout ShouldContainSubstring \"release-name-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true\"","result.systemout ShouldNotContainSubstring \"release-name-helm3chart Deployment apps/v1 false false\""],"script":"helm template assets/chart | pluto detect -"} +Sep 5 12:24:01.872 [DEBU] [Static Code Files (including helm)] [helm-template] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-2118141206 +Sep 5 12:24:01.872 [DEBU] [Static Code Files (including helm)] [helm-template] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-2118141206' +Sep 5 12:24:02.132 [DEBU] [Static Code Files (including helm)] [helm-template] [exec] NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL + +Sep 5 12:24:02.132 [DEBU] [Static Code Files (including helm)] [helm-template] [exec] release-name-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true + +Sep 5 12:24:02.132 [DEBU] [Static Code Files (including helm)] [helm-template] [exec] + +Sep 5 12:24:02.132 [DEBU] [Static Code Files (including helm)] [helm-template] [exec] result of runTestStepExecutor: {Systemout:NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +release-name-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true SystemoutJSON: Systemerr: SystemerrJSON: Err: Code:3 TimeSeconds:0.260565833} +Sep 5 12:24:02.133 [INFO] [Static Code Files (including helm)] [helm-template] Ending testcase +Sep 5 12:24:02.133 [INFO] [Static Code Files (including helm)] [static-files-no-deprecated] Starting testcase +Sep 5 12:24:02.133 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable helm-template.result.__len__: 7 +Sep 5 12:24:02.133 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable helm-template.result.code: 3 +Sep 5 12:24:02.133 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable helm-template.result.systemerrjson: +Sep 5 12:24:02.133 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable static-files.result.code: 2 +Sep 5 12:24:02.133 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable venom.testcase: static-files-no-deprecated +Sep 5 12:24:02.133 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable static-files-only-show-removed.result.systemout: No output to display +Sep 5 12:24:02.133 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable static-files-only-show-removed.result.code: 0 +Sep 5 12:24:02.133 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable helm-template.result.timeseconds: 0.260565833 +Sep 5 12:24:02.133 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable venom.testsuite.filename: 00_static_files.yaml +Sep 5 12:24:02.133 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable venom.testsuite.name: Static Code Files (including helm) +Sep 5 12:24:02.133 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable venom.testsuite.filepath: tests/00_static_files.yaml +Sep 5 12:24:02.133 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable venom.timestamp: 1693938241 +Sep 5 12:24:02.133 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable venom.libdir: +Sep 5 12:24:02.133 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable venom.outputdir: +Sep 5 12:24:02.133 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable static-files.result.timeseconds: 0.200534167 +Sep 5 12:24:02.133 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable static-files.result.__len__: 7 +Sep 5 12:24:02.133 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable venom.testsuite: Static Code Files (including helm) +Sep 5 12:24:02.133 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable static-files.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +utilities Deployment extensions/v1beta1 apps/v1 false true true +utilities Deployment extensions/v1beta1 apps/v1 false true true +Sep 5 12:24:02.133 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable helm-template.result.systemerr: +Sep 5 12:24:02.133 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable static-files-only-show-removed.result.timeseconds: 0.121175458 +Sep 5 12:24:02.133 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable static-files.result.systemerrjson: +Sep 5 12:24:02.133 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable venom.testsuite.shortName: 00_static_files +Sep 5 12:24:02.133 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable __Len__: 8 +Sep 5 12:24:02.133 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable static-files-only-show-removed.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:02.133 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable helm-template.result.err: +Sep 5 12:24:02.133 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable helm-template.result.systemoutjson: +Sep 5 12:24:02.133 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable __Type__: Map +Sep 5 12:24:02.133 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable static-files-only-show-removed.result.__len__: 7 +Sep 5 12:24:02.133 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable static-files-only-show-removed.result.systemoutjson: +Sep 5 12:24:02.133 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable static-files.result.systemoutjson: +Sep 5 12:24:02.133 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable static-files-only-show-removed.result.systemerrjson: +Sep 5 12:24:02.133 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable helm-template.__type__: Result +Sep 5 12:24:02.133 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable static-files.__type__: Result +Sep 5 12:24:02.133 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:24:02.133 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable venom.datetime: 2023-09-05T12:24:01-06:00 +Sep 5 12:24:02.133 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable static-files.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:02.133 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable helm-template.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +release-name-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:24:02.133 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable static-files-only-show-removed.__type__: Result +Sep 5 12:24:02.133 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable static-files.result.err: +Sep 5 12:24:02.133 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable static-files-only-show-removed.result.err: +Sep 5 12:24:02.133 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:24:02.133 [INFO] [Static Code Files (including helm)] [static-files-no-deprecated] Step #0 content is: {"assertions":["result.code ShouldEqual 0","result.systemout ShouldContainSubstring \"There were no resources found with known deprecated apiVersions.\""],"script":"pluto detect-files -d assets/non-deprecated --target-versions k8s=v1.16.0"} +Sep 5 12:24:02.133 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-3205179860 +Sep 5 12:24:02.133 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-3205179860' +Sep 5 12:24:02.246 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] [exec] + +Sep 5 12:24:02.246 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] [exec] + +Sep 5 12:24:02.246 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] [exec] Want more? Automate Pluto for free with Fairwinds Insights! + +Sep 5 12:24:02.246 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] [exec] 🚀 https://fairwinds.com/insights-signup/pluto 🚀 + +Sep 5 12:24:02.246 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] [exec] There were no resources found with known deprecated apiVersions. + +Sep 5 12:24:02.246 [DEBU] [Static Code Files (including helm)] [static-files-no-deprecated] [exec] result of runTestStepExecutor: {Systemout:There were no resources found with known deprecated apiVersions. SystemoutJSON: Systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 SystemerrJSON: Err: Code:0 TimeSeconds:0.112829291} +Sep 5 12:24:02.246 [INFO] [Static Code Files (including helm)] [static-files-no-deprecated] Ending testcase +Sep 5 12:24:02.246 [INFO] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Starting testcase +Sep 5 12:24:02.246 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files-only-show-removed.result.timeseconds: 0.121175458 +Sep 5 12:24:02.246 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files-only-show-removed.result.__len__: 7 +Sep 5 12:24:02.246 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files-no-deprecated.result.timeseconds: 0.112829291 +Sep 5 12:24:02.246 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable venom.testsuite: Static Code Files (including helm) +Sep 5 12:24:02.246 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files-no-deprecated.__type__: Result +Sep 5 12:24:02.246 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files-only-show-removed.result.systemerrjson: +Sep 5 12:24:02.246 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable helm-template.__type__: Result +Sep 5 12:24:02.246 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files-no-deprecated.result.__len__: 7 +Sep 5 12:24:02.246 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files.__type__: Result +Sep 5 12:24:02.246 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable venom.timestamp: 1693938241 +Sep 5 12:24:02.246 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable __Len__: 8 +Sep 5 12:24:02.246 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files-only-show-removed.result.systemoutjson: +Sep 5 12:24:02.246 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files-no-deprecated.result.err: +Sep 5 12:24:02.246 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files.result.timeseconds: 0.200534167 +Sep 5 12:24:02.246 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files.result.systemoutjson: +Sep 5 12:24:02.246 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files-no-deprecated.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:02.246 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable venom.libdir: +Sep 5 12:24:02.246 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files.result.err: +Sep 5 12:24:02.246 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable helm-template.result.systemoutjson: +Sep 5 12:24:02.246 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files-no-deprecated.result.code: 0 +Sep 5 12:24:02.246 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files-only-show-removed.result.err: +Sep 5 12:24:02.246 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable venom.testsuite.filename: 00_static_files.yaml +Sep 5 12:24:02.246 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable helm-template.result.__len__: 7 +Sep 5 12:24:02.246 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable helm-template.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +release-name-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:24:02.246 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files-no-deprecated.result.systemerrjson: +Sep 5 12:24:02.246 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files-no-deprecated.result.systemoutjson: +Sep 5 12:24:02.246 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable helm-template.result.code: 3 +Sep 5 12:24:02.246 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable __Type__: Map +Sep 5 12:24:02.246 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable venom.testsuite.name: Static Code Files (including helm) +Sep 5 12:24:02.246 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable venom.outputdir: +Sep 5 12:24:02.246 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files-only-show-removed.__type__: Result +Sep 5 12:24:02.246 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files.result.__len__: 7 +Sep 5 12:24:02.246 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files-only-show-removed.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:02.246 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable venom.datetime: 2023-09-05T12:24:01-06:00 +Sep 5 12:24:02.247 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:24:02.247 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files-only-show-removed.result.code: 0 +Sep 5 12:24:02.247 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable helm-template.result.systemerrjson: +Sep 5 12:24:02.247 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +utilities Deployment extensions/v1beta1 apps/v1 false true true +utilities Deployment extensions/v1beta1 apps/v1 false true true +Sep 5 12:24:02.247 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files.result.code: 2 +Sep 5 12:24:02.247 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:02.247 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable helm-template.result.systemerr: +Sep 5 12:24:02.247 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files.result.systemerrjson: +Sep 5 12:24:02.247 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files-only-show-removed.result.systemout: No output to display +Sep 5 12:24:02.247 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable venom.testsuite.filepath: tests/00_static_files.yaml +Sep 5 12:24:02.247 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable venom.testcase: static-files-target-v1-8-0-not-removed-or-deprecated +Sep 5 12:24:02.247 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable static-files-no-deprecated.result.systemout: There were no resources found with known deprecated apiVersions. +Sep 5 12:24:02.247 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable helm-template.result.timeseconds: 0.260565833 +Sep 5 12:24:02.247 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable helm-template.result.err: +Sep 5 12:24:02.247 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:24:02.247 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Running testcase with variable venom.testsuite.shortName: 00_static_files +Sep 5 12:24:02.247 [INFO] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Step #0 content is: {"assertions":["result.code ShouldEqual 0","result.systemout ShouldContainSubstring \"No output to display\""],"script":"pluto detect-files -d assets/deprecated116 --target-versions k8s=v1.8.0"} +Sep 5 12:24:02.247 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-4103341584 +Sep 5 12:24:02.247 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-4103341584' +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] [exec] No output to display + +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] [exec] + +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] [exec] + +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] [exec] Want more? Automate Pluto for free with Fairwinds Insights! + +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] [exec] 🚀 https://fairwinds.com/insights-signup/pluto 🚀 + +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] [exec] result of runTestStepExecutor: {Systemout:No output to display SystemoutJSON: Systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 SystemerrJSON: Err: Code:0 TimeSeconds:0.114001125} +Sep 5 12:24:02.361 [INFO] [Static Code Files (including helm)] [static-files-target-v1-8-0-not-removed-or-deprecated] Ending testcase +Sep 5 12:24:02.361 [INFO] [Static Code Files (including helm)] [static-files-wide] Starting testcase +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable venom.outputdir: +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-only-show-removed.__type__: Result +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +utilities Deployment extensions/v1beta1 apps/v1 false true true +utilities Deployment extensions/v1beta1 apps/v1 false true true +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-no-deprecated.result.systemout: There were no resources found with known deprecated apiVersions. +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable helm-template.result.systemerrjson: +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.err: +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable venom.testsuite: Static Code Files (including helm) +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable __Type__: Map +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-only-show-removed.result.systemoutjson: +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable helm-template.result.systemerr: +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-no-deprecated.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-only-show-removed.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files.result.err: +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable venom.testsuite.filepath: tests/00_static_files.yaml +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable venom.datetime: 2023-09-05T12:24:01-06:00 +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.__type__: Result +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable venom.libdir: +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-no-deprecated.result.err: +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files.result.__len__: 7 +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable helm-template.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +release-name-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable helm-template.result.err: +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-only-show-removed.result.systemerrjson: +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable __Len__: 8 +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-only-show-removed.result.err: +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemout: No output to display +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-no-deprecated.result.code: 0 +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files.result.systemoutjson: +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable helm-template.result.timeseconds: 0.260565833 +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-no-deprecated.result.systemoutjson: +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable helm-template.__type__: Result +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable venom.testcase: static-files-wide +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files.result.timeseconds: 0.200534167 +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.code: 0 +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files.result.systemerrjson: +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable venom.testsuite.name: Static Code Files (including helm) +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-no-deprecated.result.__len__: 7 +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable helm-template.result.code: 3 +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-no-deprecated.result.timeseconds: 0.112829291 +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-only-show-removed.result.code: 0 +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable venom.testsuite.filename: 00_static_files.yaml +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-only-show-removed.result.timeseconds: 0.121175458 +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-only-show-removed.result.systemout: No output to display +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable helm-template.result.systemoutjson: +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable venom.testsuite.shortName: 00_static_files +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemoutjson: +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files.__type__: Result +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-no-deprecated.result.systemerrjson: +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable venom.timestamp: 1693938241 +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.__len__: 7 +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable helm-template.result.__len__: 7 +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-no-deprecated.__type__: Result +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-only-show-removed.result.__len__: 7 +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.timeseconds: 0.114001125 +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemerrjson: +Sep 5 12:24:02.361 [DEBU] [Static Code Files (including helm)] [static-files-wide] Running testcase with variable static-files.result.code: 2 +Sep 5 12:24:02.362 [INFO] [Static Code Files (including helm)] [static-files-wide] Step #0 content is: {"assertions":["result.code ShouldEqual 3","result.systemout ShouldContainSubstring \"NAME NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN\"","result.systemout ShouldContainSubstring \"utilities \u003cUNKNOWN\u003e Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0\""],"script":"pluto detect-files -d assets/ -owide"} +Sep 5 12:24:02.365 [DEBU] [Static Code Files (including helm)] [static-files-wide] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-3288366976 +Sep 5 12:24:02.365 [DEBU] [Static Code Files (including helm)] [static-files-wide] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-3288366976' +Sep 5 12:24:02.477 [DEBU] [Static Code Files (including helm)] [static-files-wide] [exec] NAME NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN REPL AVAIL REPL AVAIL IN + +Sep 5 12:24:02.477 [DEBU] [Static Code Files (including helm)] [static-files-wide] [exec] utilities Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 + +Sep 5 12:24:02.477 [DEBU] [Static Code Files (including helm)] [static-files-wide] [exec] utilities Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 + +Sep 5 12:24:02.477 [DEBU] [Static Code Files (including helm)] [static-files-wide] [exec] + +Sep 5 12:24:02.477 [DEBU] [Static Code Files (including helm)] [static-files-wide] [exec] + +Sep 5 12:24:02.477 [DEBU] [Static Code Files (including helm)] [static-files-wide] [exec] + +Sep 5 12:24:02.477 [DEBU] [Static Code Files (including helm)] [static-files-wide] [exec] Want more? Automate Pluto for free with Fairwinds Insights! + +Sep 5 12:24:02.477 [DEBU] [Static Code Files (including helm)] [static-files-wide] [exec] 🚀 https://fairwinds.com/insights-signup/pluto 🚀 + +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-wide] [exec] result of runTestStepExecutor: {Systemout:NAME NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN REPL AVAIL REPL AVAIL IN +utilities Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 +utilities Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 SystemoutJSON: Systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 SystemerrJSON: Err: Code:3 TimeSeconds:0.112848875} +Sep 5 12:24:02.478 [INFO] [Static Code Files (including helm)] [static-files-wide] Ending testcase +Sep 5 12:24:02.478 [INFO] [Static Code Files (including helm)] [static-files-custom] Starting testcase +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-no-deprecated.result.__len__: 7 +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable helm-template.result.code: 3 +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.__len__: 7 +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-no-deprecated.result.systemoutjson: +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.code: 0 +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable venom.testsuite: Static Code Files (including helm) +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files.result.code: 2 +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable helm-template.result.systemerrjson: +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-no-deprecated.result.code: 0 +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.timeseconds: 0.114001125 +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable helm-template.result.systemerr: +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable venom.testsuite.name: Static Code Files (including helm) +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-wide.result.systemout: NAME NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN REPL AVAIL REPL AVAIL IN +utilities Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 +utilities Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable helm-template.result.__len__: 7 +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemoutjson: +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable __Len__: 8 +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-only-show-removed.result.systemerrjson: +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files.result.err: +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-wide.result.err: +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-wide.result.code: 3 +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable helm-template.__type__: Result +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable helm-template.result.systemoutjson: +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemout: No output to display +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-only-show-removed.result.code: 0 +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-no-deprecated.__type__: Result +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-only-show-removed.result.systemout: No output to display +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable venom.outputdir: +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable venom.testsuite.filepath: tests/00_static_files.yaml +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +utilities Deployment extensions/v1beta1 apps/v1 false true true +utilities Deployment extensions/v1beta1 apps/v1 false true true +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-only-show-removed.result.systemoutjson: +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-no-deprecated.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-no-deprecated.result.systemerrjson: +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable venom.libdir: +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable venom.testcase: static-files-custom +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-wide.result.systemoutjson: +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-only-show-removed.result.err: +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.err: +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable venom.timestamp: 1693938241 +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable venom.testsuite.filename: 00_static_files.yaml +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files.result.systemoutjson: +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable helm-template.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +release-name-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-wide.result.systemerrjson: +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable __Type__: Map +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-only-show-removed.result.timeseconds: 0.121175458 +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-wide.result.timeseconds: 0.112848875 +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-no-deprecated.result.timeseconds: 0.112829291 +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable venom.testsuite.shortName: 00_static_files +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemerrjson: +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-only-show-removed.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable helm-template.result.timeseconds: 0.260565833 +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files.result.timeseconds: 0.200534167 +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files.result.__len__: 7 +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.__type__: Result +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-wide.__type__: Result +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-wide.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files.__type__: Result +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-only-show-removed.result.__len__: 7 +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable helm-template.result.err: +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable venom.datetime: 2023-09-05T12:24:01-06:00 +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-no-deprecated.result.err: +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-no-deprecated.result.systemout: There were no resources found with known deprecated apiVersions. +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files.result.systemerrjson: +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-wide.result.__len__: 7 +Sep 5 12:24:02.478 [DEBU] [Static Code Files (including helm)] [static-files-custom] Running testcase with variable static-files-only-show-removed.__type__: Result +Sep 5 12:24:02.478 [INFO] [Static Code Files (including helm)] [static-files-custom] Step #0 content is: {"assertions":["result.code ShouldEqual 3","result.systemout ShouldContainSubstring \"NAME NAMESPACE VERSION KIND DEPRECATED DEPRECATED IN COMPONENT\"","result.systemout ShouldContainSubstring \"utilities \u003cUNKNOWN\u003e extensions/v1beta1 Deployment true v1.9.0 k8s\""],"script":"pluto detect-files -d assets/ -o custom --columns \"NAME,NAMESPACE,VERSION,KIND,DEPRECATED,DEPRECATED IN,component\""} +Sep 5 12:24:02.479 [DEBU] [Static Code Files (including helm)] [static-files-custom] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-1771752133 +Sep 5 12:24:02.479 [DEBU] [Static Code Files (including helm)] [static-files-custom] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-1771752133' +Sep 5 12:24:02.592 [DEBU] [Static Code Files (including helm)] [static-files-custom] [exec] + +Sep 5 12:24:02.592 [DEBU] [Static Code Files (including helm)] [static-files-custom] [exec] + +Sep 5 12:24:02.592 [DEBU] [Static Code Files (including helm)] [static-files-custom] [exec] Want more? Automate Pluto for free with Fairwinds Insights! + +Sep 5 12:24:02.592 [DEBU] [Static Code Files (including helm)] [static-files-custom] [exec] 🚀 https://fairwinds.com/insights-signup/pluto 🚀 + +Sep 5 12:24:02.592 [DEBU] [Static Code Files (including helm)] [static-files-custom] [exec] NAME NAMESPACE VERSION KIND DEPRECATED DEPRECATED IN COMPONENT + +Sep 5 12:24:02.592 [DEBU] [Static Code Files (including helm)] [static-files-custom] [exec] utilities extensions/v1beta1 Deployment true v1.9.0 k8s + +Sep 5 12:24:02.592 [DEBU] [Static Code Files (including helm)] [static-files-custom] [exec] utilities extensions/v1beta1 Deployment true v1.9.0 k8s + +Sep 5 12:24:02.592 [DEBU] [Static Code Files (including helm)] [static-files-custom] [exec] + +Sep 5 12:24:02.593 [DEBU] [Static Code Files (including helm)] [static-files-custom] [exec] result of runTestStepExecutor: {Systemout:NAME NAMESPACE VERSION KIND DEPRECATED DEPRECATED IN COMPONENT +utilities extensions/v1beta1 Deployment true v1.9.0 k8s +utilities extensions/v1beta1 Deployment true v1.9.0 k8s SystemoutJSON: Systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 SystemerrJSON: Err: Code:3 TimeSeconds:0.113877625} +Sep 5 12:24:02.593 [INFO] [Static Code Files (including helm)] [static-files-custom] Ending testcase +Sep 5 12:24:02.593 [INFO] [Static Code Files (including helm)] [static-files-show-file-path] Starting testcase +Sep 5 12:24:02.593 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files.result.__len__: 7 +Sep 5 12:24:02.593 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-only-show-removed.result.__len__: 7 +Sep 5 12:24:02.593 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.err: +Sep 5 12:24:02.593 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files.result.code: 2 +Sep 5 12:24:02.593 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files.result.systemerrjson: +Sep 5 12:24:02.593 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable helm-template.result.systemoutjson: +Sep 5 12:24:02.593 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable venom.libdir: +Sep 5 12:24:02.593 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:24:02.593 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-wide.result.systemout: NAME NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN REPL AVAIL REPL AVAIL IN +utilities Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 +utilities Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 +Sep 5 12:24:02.593 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-only-show-removed.result.code: 0 +Sep 5 12:24:02.593 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable venom.testsuite.shortName: 00_static_files +Sep 5 12:24:02.593 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-only-show-removed.result.timeseconds: 0.121175458 +Sep 5 12:24:02.593 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable helm-template.result.err: +Sep 5 12:24:02.593 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-only-show-removed.result.systemoutjson: +Sep 5 12:24:02.593 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-wide.result.systemerrjson: +Sep 5 12:24:02.593 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.__type__: Result +Sep 5 12:24:02.593 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-wide.result.err: +Sep 5 12:24:02.593 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:24:02.593 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable venom.outputdir: +Sep 5 12:24:02.593 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable helm-template.result.__len__: 7 +Sep 5 12:24:02.593 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-no-deprecated.result.systemoutjson: +Sep 5 12:24:02.593 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-wide.__type__: Result +Sep 5 12:24:02.593 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable __Len__: 8 +Sep 5 12:24:02.593 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.timeseconds: 0.114001125 +Sep 5 12:24:02.593 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-no-deprecated.result.__len__: 7 +Sep 5 12:24:02.593 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files.__type__: Result +Sep 5 12:24:02.593 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-custom.result.err: +Sep 5 12:24:02.593 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files.result.err: +Sep 5 12:24:02.593 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-only-show-removed.result.systemerrjson: +Sep 5 12:24:02.593 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-only-show-removed.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:02.593 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-no-deprecated.result.timeseconds: 0.112829291 +Sep 5 12:24:02.593 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-only-show-removed.result.systemout: No output to display +Sep 5 12:24:02.593 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-no-deprecated.result.systemerrjson: +Sep 5 12:24:02.593 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-custom.result.systemout: NAME NAMESPACE VERSION KIND DEPRECATED DEPRECATED IN COMPONENT +utilities extensions/v1beta1 Deployment true v1.9.0 k8s +utilities extensions/v1beta1 Deployment true v1.9.0 k8s +Sep 5 12:24:02.594 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemout: No output to display +Sep 5 12:24:02.594 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +utilities Deployment extensions/v1beta1 apps/v1 false true true +utilities Deployment extensions/v1beta1 apps/v1 false true true +Sep 5 12:24:02.594 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable helm-template.result.systemerr: +Sep 5 12:24:02.594 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-wide.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:02.594 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable venom.testcase: static-files-show-file-path +Sep 5 12:24:02.594 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable helm-template.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +release-name-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:24:02.594 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:02.594 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-custom.result.__len__: 7 +Sep 5 12:24:02.594 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-no-deprecated.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:02.594 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-custom.result.timeseconds: 0.113877625 +Sep 5 12:24:02.594 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemoutjson: +Sep 5 12:24:02.594 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-custom.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:02.594 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-custom.result.systemoutjson: +Sep 5 12:24:02.594 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-wide.result.code: 3 +Sep 5 12:24:02.594 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable venom.testsuite.filename: 00_static_files.yaml +Sep 5 12:24:02.594 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable __Type__: Map +Sep 5 12:24:02.594 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files.result.systemoutjson: +Sep 5 12:24:02.594 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemerrjson: +Sep 5 12:24:02.594 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable helm-template.result.timeseconds: 0.260565833 +Sep 5 12:24:02.594 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable venom.testsuite.filepath: tests/00_static_files.yaml +Sep 5 12:24:02.594 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-no-deprecated.result.systemout: There were no resources found with known deprecated apiVersions. +Sep 5 12:24:02.594 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-custom.result.code: 3 +Sep 5 12:24:02.594 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:02.594 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.code: 0 +Sep 5 12:24:02.594 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable helm-template.result.systemerrjson: +Sep 5 12:24:02.594 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-only-show-removed.__type__: Result +Sep 5 12:24:02.594 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files.result.timeseconds: 0.200534167 +Sep 5 12:24:02.594 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-no-deprecated.result.err: +Sep 5 12:24:02.594 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.__len__: 7 +Sep 5 12:24:02.594 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-wide.result.timeseconds: 0.112848875 +Sep 5 12:24:02.594 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-wide.result.__len__: 7 +Sep 5 12:24:02.594 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-wide.result.systemoutjson: +Sep 5 12:24:02.594 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable helm-template.__type__: Result +Sep 5 12:24:02.594 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable venom.testsuite: Static Code Files (including helm) +Sep 5 12:24:02.594 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-no-deprecated.__type__: Result +Sep 5 12:24:02.594 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-no-deprecated.result.code: 0 +Sep 5 12:24:02.594 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable helm-template.result.code: 3 +Sep 5 12:24:02.594 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable venom.timestamp: 1693938241 +Sep 5 12:24:02.594 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable venom.datetime: 2023-09-05T12:24:01-06:00 +Sep 5 12:24:02.594 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-only-show-removed.result.err: +Sep 5 12:24:02.594 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-custom.__type__: Result +Sep 5 12:24:02.594 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable static-files-custom.result.systemerrjson: +Sep 5 12:24:02.594 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] Running testcase with variable venom.testsuite.name: Static Code Files (including helm) +Sep 5 12:24:02.594 [INFO] [Static Code Files (including helm)] [static-files-show-file-path] Step #0 content is: {"assertions":["result.code ShouldEqual 3","result.systemout ShouldContainSubstring \"FILEPATH\"","result.systemout ShouldContainSubstring \"tests/assets/deprecated116/deployment-extensions-v1beta1.yaml\""],"script":"pluto detect-files -d assets/ -o custom --columns \"filepath\""} +Sep 5 12:24:02.594 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-314062422 +Sep 5 12:24:02.594 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-314062422' +Sep 5 12:24:02.708 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] [exec] + +Sep 5 12:24:02.708 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] [exec] + +Sep 5 12:24:02.708 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] [exec] Want more? Automate Pluto for free with Fairwinds Insights! + +Sep 5 12:24:02.708 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] [exec] 🚀 https://fairwinds.com/insights-signup/pluto 🚀 + +Sep 5 12:24:02.708 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] [exec] FILEPATH + +Sep 5 12:24:02.708 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] [exec] /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests/assets/deprecated116/deployment-extensions-v1beta1.yaml + +Sep 5 12:24:02.708 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] [exec] /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests/assets/list/list-deployment-deprecated-and-non-deprecated.yaml + +Sep 5 12:24:02.708 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] [exec] + +Sep 5 12:24:02.708 [DEBU] [Static Code Files (including helm)] [static-files-show-file-path] [exec] result of runTestStepExecutor: {Systemout:FILEPATH +/Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests/assets/deprecated116/deployment-extensions-v1beta1.yaml +/Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests/assets/list/list-deployment-deprecated-and-non-deprecated.yaml SystemoutJSON: Systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 SystemerrJSON: Err: Code:3 TimeSeconds:0.113834125} +Sep 5 12:24:02.708 [INFO] [Static Code Files (including helm)] [static-files-show-file-path] Ending testcase +Sep 5 12:24:02.708 [INFO] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Starting testcase +Sep 5 12:24:02.708 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files.result.err: +Sep 5 12:24:02.708 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-only-show-removed.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:02.708 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files.result.systemerrjson: +Sep 5 12:24:02.708 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-no-deprecated.result.err: +Sep 5 12:24:02.708 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.timeseconds: 0.114001125 +Sep 5 12:24:02.708 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-wide.result.timeseconds: 0.112848875 +Sep 5 12:24:02.708 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-show-file-path.result.err: +Sep 5 12:24:02.708 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable venom.testcase: static-files-no-output-due-to-no-matching-components +Sep 5 12:24:02.708 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable helm-template.result.code: 3 +Sep 5 12:24:02.708 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable helm-template.result.err: +Sep 5 12:24:02.708 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable helm-template.result.systemerrjson: +Sep 5 12:24:02.708 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable venom.outputdir: +Sep 5 12:24:02.708 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable __Len__: 8 +Sep 5 12:24:02.708 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.__type__: Result +Sep 5 12:24:02.708 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable helm-template.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +release-name-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:24:02.708 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemerrjson: +Sep 5 12:24:02.708 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable venom.libdir: +Sep 5 12:24:02.708 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable helm-template.__type__: Result +Sep 5 12:24:02.708 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-no-deprecated.result.timeseconds: 0.112829291 +Sep 5 12:24:02.708 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-custom.result.systemout: NAME NAMESPACE VERSION KIND DEPRECATED DEPRECATED IN COMPONENT +utilities extensions/v1beta1 Deployment true v1.9.0 k8s +utilities extensions/v1beta1 Deployment true v1.9.0 k8s +Sep 5 12:24:02.708 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-custom.result.__len__: 7 +Sep 5 12:24:02.708 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.code: 0 +Sep 5 12:24:02.708 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-show-file-path.result.__len__: 7 +Sep 5 12:24:02.708 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.__len__: 7 +Sep 5 12:24:02.708 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-show-file-path.result.code: 3 +Sep 5 12:24:02.708 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-no-deprecated.result.code: 0 +Sep 5 12:24:02.708 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-no-deprecated.result.__len__: 7 +Sep 5 12:24:02.709 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-only-show-removed.result.timeseconds: 0.121175458 +Sep 5 12:24:02.709 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-no-deprecated.result.systemout: There were no resources found with known deprecated apiVersions. +Sep 5 12:24:02.709 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-custom.result.err: +Sep 5 12:24:02.709 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-wide.result.err: +Sep 5 12:24:02.709 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-wide.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:02.709 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-custom.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:02.709 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-wide.result.code: 3 +Sep 5 12:24:02.709 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-only-show-removed.__type__: Result +Sep 5 12:24:02.709 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable helm-template.result.__len__: 7 +Sep 5 12:24:02.709 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-show-file-path.result.systemout: FILEPATH +/Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests/assets/deprecated116/deployment-extensions-v1beta1.yaml +/Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests/assets/list/list-deployment-deprecated-and-non-deprecated.yaml +Sep 5 12:24:02.709 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-show-file-path.result.systemoutjson: +Sep 5 12:24:02.709 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-wide.result.systemerrjson: +Sep 5 12:24:02.709 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-only-show-removed.result.__len__: 7 +Sep 5 12:24:02.709 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemout: No output to display +Sep 5 12:24:02.709 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-custom.result.systemerrjson: +Sep 5 12:24:02.709 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-only-show-removed.result.code: 0 +Sep 5 12:24:02.709 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files.result.code: 2 +Sep 5 12:24:02.709 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-wide.result.systemoutjson: +Sep 5 12:24:02.709 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable __Type__: Map +Sep 5 12:24:02.709 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable venom.testsuite.shortName: 00_static_files +Sep 5 12:24:02.709 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.err: +Sep 5 12:24:02.709 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-only-show-removed.result.systemerrjson: +Sep 5 12:24:02.709 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemoutjson: +Sep 5 12:24:02.709 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +utilities Deployment extensions/v1beta1 apps/v1 false true true +utilities Deployment extensions/v1beta1 apps/v1 false true true +Sep 5 12:24:02.709 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-custom.__type__: Result +Sep 5 12:24:02.709 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-show-file-path.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:02.709 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable venom.timestamp: 1693938241 +Sep 5 12:24:02.709 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-custom.result.systemoutjson: +Sep 5 12:24:02.709 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-show-file-path.__type__: Result +Sep 5 12:24:02.709 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-no-deprecated.__type__: Result +Sep 5 12:24:02.709 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:02.709 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable helm-template.result.systemerr: +Sep 5 12:24:02.709 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-only-show-removed.result.err: +Sep 5 12:24:02.709 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files.result.systemoutjson: +Sep 5 12:24:02.709 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files.result.timeseconds: 0.200534167 +Sep 5 12:24:02.709 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files.result.__len__: 7 +Sep 5 12:24:02.709 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-show-file-path.result.systemerrjson: +Sep 5 12:24:02.709 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-no-deprecated.result.systemoutjson: +Sep 5 12:24:02.709 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-custom.result.code: 3 +Sep 5 12:24:02.709 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-no-deprecated.result.systemerrjson: +Sep 5 12:24:02.709 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable venom.testsuite.filename: 00_static_files.yaml +Sep 5 12:24:02.709 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable venom.testsuite: Static Code Files (including helm) +Sep 5 12:24:02.709 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-custom.result.timeseconds: 0.113877625 +Sep 5 12:24:02.709 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files.__type__: Result +Sep 5 12:24:02.709 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-show-file-path.result.timeseconds: 0.113834125 +Sep 5 12:24:02.709 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-wide.result.__len__: 7 +Sep 5 12:24:02.709 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-only-show-removed.result.systemout: No output to display +Sep 5 12:24:02.709 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable helm-template.result.timeseconds: 0.260565833 +Sep 5 12:24:02.709 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:24:02.709 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-wide.__type__: Result +Sep 5 12:24:02.709 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:24:02.709 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable venom.testsuite.name: Static Code Files (including helm) +Sep 5 12:24:02.709 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable helm-template.result.systemoutjson: +Sep 5 12:24:02.709 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-wide.result.systemout: NAME NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN REPL AVAIL REPL AVAIL IN +utilities Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 +utilities Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 +Sep 5 12:24:02.709 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:02.709 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-only-show-removed.result.systemoutjson: +Sep 5 12:24:02.709 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable venom.datetime: 2023-09-05T12:24:01-06:00 +Sep 5 12:24:02.709 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable venom.testsuite.filepath: tests/00_static_files.yaml +Sep 5 12:24:02.709 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Running testcase with variable static-files-no-deprecated.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:02.709 [INFO] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Step #0 content is: {"assertions":["result.code ShouldEqual 0","result.systemout ShouldEqual \"No output to display\""],"script":"pluto detect-files -d assets/ --components=istio"} +Sep 5 12:24:02.709 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-566246186 +Sep 5 12:24:02.709 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-566246186' +Sep 5 12:24:02.822 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] [exec] + +Sep 5 12:24:02.822 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] [exec] + +Sep 5 12:24:02.822 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] [exec] Want more? Automate Pluto for free with Fairwinds Insights! + +Sep 5 12:24:02.822 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] [exec] No output to display + +Sep 5 12:24:02.822 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] [exec] 🚀 https://fairwinds.com/insights-signup/pluto 🚀 + +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] [exec] result of runTestStepExecutor: {Systemout:No output to display SystemoutJSON: Systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 SystemerrJSON: Err: Code:0 TimeSeconds:0.113389625} +Sep 5 12:24:02.823 [INFO] [Static Code Files (including helm)] [static-files-no-output-due-to-no-matching-components] Ending testcase +Sep 5 12:24:02.823 [INFO] [Static Code Files (including helm)] [static-files-in-a-List] Starting testcase +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.code: 0 +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-custom.result.__len__: 7 +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files.__type__: Result +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.err: +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable venom.outputdir: +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-only-show-removed.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-custom.result.systemoutjson: +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-custom.result.timeseconds: 0.113877625 +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-no-output-due-to-no-matching-components.result.systemout: No output to display +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-show-file-path.__type__: Result +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable venom.testsuite: Static Code Files (including helm) +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files.result.err: +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-no-deprecated.__type__: Result +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemout: No output to display +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable venom.testsuite.filepath: tests/00_static_files.yaml +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable helm-template.__type__: Result +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files.result.timeseconds: 0.200534167 +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-only-show-removed.result.__len__: 7 +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-show-file-path.result.systemerrjson: +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemerrjson: +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +utilities Deployment extensions/v1beta1 apps/v1 false true true +utilities Deployment extensions/v1beta1 apps/v1 false true true +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemoutjson: +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-wide.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-wide.result.systemoutjson: +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable helm-template.result.systemoutjson: +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-only-show-removed.result.err: +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-wide.result.systemout: NAME NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN REPL AVAIL REPL AVAIL IN +utilities Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 +utilities Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-no-deprecated.result.systemout: There were no resources found with known deprecated apiVersions. +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable venom.testsuite.shortName: 00_static_files +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-show-file-path.result.systemout: FILEPATH +/Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests/assets/deprecated116/deployment-extensions-v1beta1.yaml +/Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests/assets/list/list-deployment-deprecated-and-non-deprecated.yaml +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable helm-template.result.err: +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-show-file-path.result.__len__: 7 +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-no-output-due-to-no-matching-components.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files.result.__len__: 7 +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable helm-template.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +release-name-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable helm-template.result.__len__: 7 +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-wide.result.systemerrjson: +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable helm-template.result.timeseconds: 0.260565833 +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-only-show-removed.__type__: Result +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.__type__: Result +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.timeseconds: 0.114001125 +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-wide.result.timeseconds: 0.112848875 +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files.result.code: 2 +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-show-file-path.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-no-deprecated.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-wide.result.__len__: 7 +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-no-output-due-to-no-matching-components.result.err: +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-show-file-path.result.systemoutjson: +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-no-output-due-to-no-matching-components.result.code: 0 +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-custom.result.systemout: NAME NAMESPACE VERSION KIND DEPRECATED DEPRECATED IN COMPONENT +utilities extensions/v1beta1 Deployment true v1.9.0 k8s +utilities extensions/v1beta1 Deployment true v1.9.0 k8s +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-wide.result.err: +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable helm-template.result.systemerrjson: +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-only-show-removed.result.timeseconds: 0.121175458 +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable helm-template.result.code: 3 +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-custom.result.err: +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable venom.testsuite.name: Static Code Files (including helm) +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-wide.__type__: Result +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-no-deprecated.result.err: +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.__len__: 7 +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-show-file-path.result.err: +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable helm-template.result.systemerr: +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable __Type__: Map +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable __Len__: 8 +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files.result.systemerrjson: +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-no-deprecated.result.__len__: 7 +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-wide.result.code: 3 +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable venom.timestamp: 1693938241 +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-only-show-removed.result.systemout: No output to display +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-custom.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-show-file-path.result.code: 3 +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable venom.libdir: +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-no-output-due-to-no-matching-components.result.systemerrjson: +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-no-deprecated.result.systemerrjson: +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-show-file-path.result.timeseconds: 0.113834125 +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-only-show-removed.result.systemerrjson: +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable venom.testcase: static-files-in-a-List +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-only-show-removed.result.systemoutjson: +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-no-output-due-to-no-matching-components.result.timeseconds: 0.113389625 +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-no-deprecated.result.timeseconds: 0.112829291 +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-custom.result.systemerrjson: +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files.result.systemoutjson: +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-no-output-due-to-no-matching-components.result.systemoutjson: +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable venom.testsuite.filename: 00_static_files.yaml +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-custom.result.code: 3 +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-no-deprecated.result.code: 0 +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-only-show-removed.result.code: 0 +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-custom.__type__: Result +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-no-output-due-to-no-matching-components.result.__len__: 7 +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-no-output-due-to-no-matching-components.__type__: Result +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable static-files-no-deprecated.result.systemoutjson: +Sep 5 12:24:02.823 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] Running testcase with variable venom.datetime: 2023-09-05T12:24:01-06:00 +Sep 5 12:24:02.823 [INFO] [Static Code Files (including helm)] [static-files-in-a-List] Step #0 content is: {"assertions":["result.code ShouldEqual 2","result.systemout ShouldContainSubstring \"NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED\"","result.systemout ShouldContainSubstring \"utilities Deployment extensions/v1beta1 apps/v1 false true\"","result.systemout ShouldNotContainSubstring \"utilities Deployment apps/v1 false false\""],"script":"pluto detect-files -d assets/list --target-versions k8s=v1.15.0"} +Sep 5 12:24:02.824 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-3418529832 +Sep 5 12:24:02.824 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-3418529832' +Sep 5 12:24:02.937 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] [exec] NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL + +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] [exec] utilities Deployment extensions/v1beta1 apps/v1 false true true + +Sep 5 12:24:02.937 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] [exec] + +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] [exec] + +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] [exec] Want more? Automate Pluto for free with Fairwinds Insights! + +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] [exec] 🚀 https://fairwinds.com/insights-signup/pluto 🚀 + +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] [exec] + +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [static-files-in-a-List] [exec] result of runTestStepExecutor: {Systemout:NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +utilities Deployment extensions/v1beta1 apps/v1 false true true SystemoutJSON: Systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 SystemerrJSON: Err: Code:2 TimeSeconds:0.114299125} +Sep 5 12:24:02.938 [INFO] [Static Code Files (including helm)] [static-files-in-a-List] Ending testcase +Sep 5 12:24:02.938 [INFO] [Static Code Files (including helm)] [exit-code-three-for-single-file] Starting testcase +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-in-a-List.__type__: Result +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-no-deprecated.result.systemoutjson: +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-show-file-path.result.systemout: FILEPATH +/Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests/assets/deprecated116/deployment-extensions-v1beta1.yaml +/Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests/assets/list/list-deployment-deprecated-and-non-deprecated.yaml +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files.result.systemerrjson: +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-custom.result.systemoutjson: +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files.result.__len__: 7 +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable venom.libdir: +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-only-show-removed.result.timeseconds: 0.121175458 +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-in-a-List.result.systemerrjson: +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-no-deprecated.result.__len__: 7 +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-in-a-List.result.err: +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.timeseconds: 0.114001125 +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-only-show-removed.result.systemerrjson: +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-only-show-removed.result.code: 0 +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.err: +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-show-file-path.__type__: Result +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-wide.result.systemerrjson: +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-wide.result.__len__: 7 +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-in-a-List.result.code: 2 +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files.result.systemoutjson: +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable venom.testsuite.shortName: 00_static_files +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-no-output-due-to-no-matching-components.result.err: +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-no-output-due-to-no-matching-components.result.systemoutjson: +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-no-output-due-to-no-matching-components.result.systemerrjson: +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-wide.result.systemoutjson: +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-only-show-removed.__type__: Result +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.__type__: Result +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-custom.result.timeseconds: 0.113877625 +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable __Type__: Map +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemout: No output to display +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-no-deprecated.result.systemout: There were no resources found with known deprecated apiVersions. +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-in-a-List.result.systemoutjson: +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files.result.code: 2 +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable venom.outputdir: +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-no-output-due-to-no-matching-components.__type__: Result +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-custom.result.err: +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-show-file-path.result.systemoutjson: +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-only-show-removed.result.systemoutjson: +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-no-deprecated.result.timeseconds: 0.112829291 +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-wide.result.code: 3 +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-show-file-path.result.err: +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-no-output-due-to-no-matching-components.result.systemout: No output to display +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable helm-template.result.err: +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files.result.err: +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-no-deprecated.result.systemerrjson: +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable helm-template.result.timeseconds: 0.260565833 +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-no-deprecated.result.code: 0 +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-wide.result.systemout: NAME NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN REPL AVAIL REPL AVAIL IN +utilities Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 +utilities Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable venom.testsuite.filepath: tests/00_static_files.yaml +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-only-show-removed.result.__len__: 7 +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-no-output-due-to-no-matching-components.result.__len__: 7 +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemoutjson: +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-show-file-path.result.__len__: 7 +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-custom.result.__len__: 7 +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files.__type__: Result +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files.result.timeseconds: 0.200534167 +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.__len__: 7 +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemerrjson: +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-wide.result.err: +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-wide.result.timeseconds: 0.112848875 +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable venom.testsuite: Static Code Files (including helm) +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-no-output-due-to-no-matching-components.result.timeseconds: 0.113389625 +Sep 5 12:24:02.938 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-custom.result.systemout: NAME NAMESPACE VERSION KIND DEPRECATED DEPRECATED IN COMPONENT +utilities extensions/v1beta1 Deployment true v1.9.0 k8s +utilities extensions/v1beta1 Deployment true v1.9.0 k8s +Sep 5 12:24:02.939 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable helm-template.result.code: 3 +Sep 5 12:24:02.939 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable venom.testsuite.filename: 00_static_files.yaml +Sep 5 12:24:02.939 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-custom.__type__: Result +Sep 5 12:24:02.939 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-show-file-path.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:02.939 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable helm-template.result.__len__: 7 +Sep 5 12:24:02.939 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +utilities Deployment extensions/v1beta1 apps/v1 false true true +utilities Deployment extensions/v1beta1 apps/v1 false true true +Sep 5 12:24:02.939 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-in-a-List.result.timeseconds: 0.114299125 +Sep 5 12:24:02.939 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable helm-template.result.systemerr: +Sep 5 12:24:02.939 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable helm-template.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +release-name-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:24:02.939 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable __Len__: 8 +Sep 5 12:24:02.939 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-no-deprecated.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:02.939 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-wide.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:02.939 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-in-a-List.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:02.939 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable venom.datetime: 2023-09-05T12:24:01-06:00 +Sep 5 12:24:02.939 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-no-output-due-to-no-matching-components.result.code: 0 +Sep 5 12:24:02.939 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-custom.result.code: 3 +Sep 5 12:24:02.939 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-wide.__type__: Result +Sep 5 12:24:02.939 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-custom.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:02.939 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-no-output-due-to-no-matching-components.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:02.939 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-only-show-removed.result.err: +Sep 5 12:24:02.939 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-show-file-path.result.systemerrjson: +Sep 5 12:24:02.939 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-in-a-List.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +utilities Deployment extensions/v1beta1 apps/v1 false true true +Sep 5 12:24:02.939 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:02.939 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-only-show-removed.result.systemout: No output to display +Sep 5 12:24:02.939 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable helm-template.result.systemerrjson: +Sep 5 12:24:02.939 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-show-file-path.result.code: 3 +Sep 5 12:24:02.939 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable venom.timestamp: 1693938241 +Sep 5 12:24:02.939 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.code: 0 +Sep 5 12:24:02.939 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable helm-template.__type__: Result +Sep 5 12:24:02.939 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable helm-template.result.systemoutjson: +Sep 5 12:24:02.939 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-in-a-List.result.__len__: 7 +Sep 5 12:24:02.939 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-no-deprecated.result.err: +Sep 5 12:24:02.939 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-show-file-path.result.timeseconds: 0.113834125 +Sep 5 12:24:02.939 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-target-v1-8-0-not-removed-or-deprecated.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:02.939 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable venom.testcase: exit-code-three-for-single-file +Sep 5 12:24:02.939 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-no-deprecated.__type__: Result +Sep 5 12:24:02.939 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-only-show-removed.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:02.939 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable static-files-custom.result.systemerrjson: +Sep 5 12:24:02.939 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] Running testcase with variable venom.testsuite.name: Static Code Files (including helm) +Sep 5 12:24:02.939 [INFO] [Static Code Files (including helm)] [exit-code-three-for-single-file] Step #0 content is: {"assertions":["result.code ShouldEqual 3","result.systemerr ShouldContainSubstring \"extensions/v1beta1\""],"script":"pluto detect assets/deprecated116/deployment-extensions-v1beta1.yaml"} +Sep 5 12:24:02.939 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-1832608001 +Sep 5 12:24:02.939 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-1832608001' +Sep 5 12:24:03.051 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] [exec] + +Sep 5 12:24:03.051 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] [exec] NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL + +Sep 5 12:24:03.051 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] [exec] utilities Deployment extensions/v1beta1 apps/v1 true true true + +Sep 5 12:24:03.051 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] [exec] + +Sep 5 12:24:03.051 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] [exec] Want more? Automate Pluto for free with Fairwinds Insights! + +Sep 5 12:24:03.051 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] [exec] 🚀 https://fairwinds.com/insights-signup/pluto 🚀 + +Sep 5 12:24:03.051 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] [exec] + +Sep 5 12:24:03.051 [DEBU] [Static Code Files (including helm)] [exit-code-three-for-single-file] [exec] result of runTestStepExecutor: {Systemout:NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +utilities Deployment extensions/v1beta1 apps/v1 true true true SystemoutJSON: Systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 SystemerrJSON: Err: Code:0 TimeSeconds:0.111916042} +Sep 5 12:24:03.051 [ERRO] [Static Code Files (including helm)] [exit-code-three-for-single-file] Errors: +Sep 5 12:24:03.052 [ERRO] [Static Code Files (including helm)] [exit-code-three-for-single-file] Testcase "exit code three for single file", step #0-0: Assertion "result.code ShouldEqual 3" failed. expected: 3 got: 0 (00_static_files.yaml:0) +Sep 5 12:24:03.052 [ERRO] [Static Code Files (including helm)] [exit-code-three-for-single-file] Testcase "exit code three for single file", step #0-0: Assertion "result.systemerr ShouldContainSubstring \"extensions/v1beta1\"" failed. expected ' + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 ' to contain 'extensions/v1beta1' but it wasn't (00_static_files.yaml:0) +Sep 5 12:24:03.052 [INFO] [Static Code Files (including helm)] [exit-code-three-for-single-file] Ending testcase +Sep 5 12:24:03.052 [INFO] [Static Code Files (including helm)] Ending testsuite +Sep 5 12:24:03.052 [INFO] [Static Code Files (including helm)] Starting testsuite +Sep 5 12:24:03.052 [INFO] [Static Code Files (including helm)] [install-helm3-assets] Starting testcase +Sep 5 12:24:03.052 [DEBU] [Static Code Files (including helm)] [install-helm3-assets] Running testcase with variable venom.outputdir: +Sep 5 12:24:03.052 [DEBU] [Static Code Files (including helm)] [install-helm3-assets] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:24:03.052 [DEBU] [Static Code Files (including helm)] [install-helm3-assets] Running testcase with variable venom.testsuite.shortName: 01_helm-detect-3 +Sep 5 12:24:03.052 [DEBU] [Static Code Files (including helm)] [install-helm3-assets] Running testcase with variable venom.datetime: 2023-09-05T12:24:01-06:00 +Sep 5 12:24:03.052 [DEBU] [Static Code Files (including helm)] [install-helm3-assets] Running testcase with variable venom.testsuite.name: Static Code Files (including helm) +Sep 5 12:24:03.052 [DEBU] [Static Code Files (including helm)] [install-helm3-assets] Running testcase with variable venom.testsuite.filepath: tests/01_helm-detect-3.yaml +Sep 5 12:24:03.052 [DEBU] [Static Code Files (including helm)] [install-helm3-assets] Running testcase with variable venom.testsuite: Static Code Files (including helm) +Sep 5 12:24:03.052 [DEBU] [Static Code Files (including helm)] [install-helm3-assets] Running testcase with variable venom.libdir: +Sep 5 12:24:03.052 [DEBU] [Static Code Files (including helm)] [install-helm3-assets] Running testcase with variable __Len__: 8 +Sep 5 12:24:03.052 [DEBU] [Static Code Files (including helm)] [install-helm3-assets] Running testcase with variable __Type__: Map +Sep 5 12:24:03.052 [DEBU] [Static Code Files (including helm)] [install-helm3-assets] Running testcase with variable venom.timestamp: 1693938241 +Sep 5 12:24:03.052 [DEBU] [Static Code Files (including helm)] [install-helm3-assets] Running testcase with variable venom.testcase: install-helm3-assets +Sep 5 12:24:03.052 [DEBU] [Static Code Files (including helm)] [install-helm3-assets] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:24:03.052 [DEBU] [Static Code Files (including helm)] [install-helm3-assets] Running testcase with variable venom.testsuite.filename: 01_helm-detect-3.yaml +Sep 5 12:24:03.052 [INFO] [Static Code Files (including helm)] [install-helm3-assets] Step #0 content is: {"assertions":["result.code ShouldEqual 0"],"script":"kubectl create ns demo2\nkubectl apply -f assets/helm3\n"} +Sep 5 12:24:03.052 [DEBU] [Static Code Files (including helm)] [install-helm3-assets] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-2003934386 +Sep 5 12:24:03.052 [DEBU] [Static Code Files (including helm)] [install-helm3-assets] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-2003934386' +Sep 5 12:24:03.306 [DEBU] [Static Code Files (including helm)] [install-helm3-assets] [exec] namespace/demo2 created + +Sep 5 12:24:03.513 [DEBU] [Static Code Files (including helm)] [install-helm3-assets] [exec] secret/sh.helm.release.v1.demo2.v1 created + +Sep 5 12:24:03.525 [DEBU] [Static Code Files (including helm)] [install-helm3-assets] [exec] secret/sh.helm.release.v1.test.v1 created + +Sep 5 12:24:03.531 [DEBU] [Static Code Files (including helm)] [install-helm3-assets] [exec] secret/sh.helm.release.v1.test.v2 created + +Sep 5 12:24:03.533 [DEBU] [Static Code Files (including helm)] [install-helm3-assets] [exec] result of runTestStepExecutor: {Systemout:namespace/demo2 created +secret/sh.helm.release.v1.demo2.v1 created +secret/sh.helm.release.v1.test.v1 created +secret/sh.helm.release.v1.test.v2 created SystemoutJSON: Systemerr: SystemerrJSON: Err: Code:0 TimeSeconds:0.480824041} +Sep 5 12:24:03.533 [INFO] [Static Code Files (including helm)] [install-helm3-assets] Ending testcase +Sep 5 12:24:03.533 [INFO] [Static Code Files (including helm)] [helm-detect-show-all] Starting testcase +Sep 5 12:24:03.533 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable install-helm3-assets.result.systemoutjson: +Sep 5 12:24:03.533 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable install-helm3-assets.__type__: Result +Sep 5 12:24:03.533 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable install-helm3-assets.result.timeseconds: 0.480824041 +Sep 5 12:24:03.533 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable install-helm3-assets.result.systemout: namespace/demo2 created +secret/sh.helm.release.v1.demo2.v1 created +secret/sh.helm.release.v1.test.v1 created +secret/sh.helm.release.v1.test.v2 created +Sep 5 12:24:03.533 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable install-helm3-assets.result.code: 0 +Sep 5 12:24:03.533 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable __Len__: 8 +Sep 5 12:24:03.533 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable venom.libdir: +Sep 5 12:24:03.533 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable install-helm3-assets.result.__len__: 7 +Sep 5 12:24:03.533 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable venom.testsuite.filepath: tests/01_helm-detect-3.yaml +Sep 5 12:24:03.533 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable venom.testsuite.name: Static Code Files (including helm) +Sep 5 12:24:03.533 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable venom.timestamp: 1693938241 +Sep 5 12:24:03.533 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable __Type__: Map +Sep 5 12:24:03.533 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable install-helm3-assets.result.systemerrjson: +Sep 5 12:24:03.533 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable install-helm3-assets.result.err: +Sep 5 12:24:03.533 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:24:03.533 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:24:03.533 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable venom.testsuite.shortName: 01_helm-detect-3 +Sep 5 12:24:03.533 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable venom.datetime: 2023-09-05T12:24:01-06:00 +Sep 5 12:24:03.533 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable venom.testsuite: Static Code Files (including helm) +Sep 5 12:24:03.533 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable venom.testcase: helm-detect-show-all +Sep 5 12:24:03.533 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable install-helm3-assets.result.systemerr: +Sep 5 12:24:03.533 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable venom.testsuite.filename: 01_helm-detect-3.yaml +Sep 5 12:24:03.533 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] Running testcase with variable venom.outputdir: +Sep 5 12:24:03.533 [INFO] [Static Code Files (including helm)] [helm-detect-show-all] Step #0 content is: {"assertions":["result.code ShouldEqual 3","result.systemout ShouldContainSubstring \"NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED\"","result.systemout ShouldContainSubstring \"test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true\""],"script":"pluto detect-helm --target-versions k8s=v1.16.0"} +Sep 5 12:24:03.534 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-1436805255 +Sep 5 12:24:03.534 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-1436805255' +Sep 5 12:24:03.689 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] [exec] NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL + +Sep 5 12:24:03.689 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] [exec] test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true + +Sep 5 12:24:03.689 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] [exec] test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true + +Sep 5 12:24:03.689 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] [exec] + +Sep 5 12:24:03.690 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all] [exec] result of runTestStepExecutor: {Systemout:NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true SystemoutJSON: Systemerr: SystemerrJSON: Err: Code:3 TimeSeconds:0.156279209} +Sep 5 12:24:03.690 [INFO] [Static Code Files (including helm)] [helm-detect-show-all] Ending testcase +Sep 5 12:24:03.690 [INFO] [Static Code Files (including helm)] [helm-detect] Starting testcase +Sep 5 12:24:03.690 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable install-helm3-assets.result.timeseconds: 0.480824041 +Sep 5 12:24:03.690 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable venom.testsuite.name: Static Code Files (including helm) +Sep 5 12:24:03.690 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable venom.timestamp: 1693938241 +Sep 5 12:24:03.690 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable install-helm3-assets.__type__: Result +Sep 5 12:24:03.690 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable install-helm3-assets.result.systemoutjson: +Sep 5 12:24:03.690 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable helm-detect-show-all.__type__: Result +Sep 5 12:24:03.690 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable helm-detect-show-all.result.err: +Sep 5 12:24:03.690 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable install-helm3-assets.result.err: +Sep 5 12:24:03.690 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable helm-detect-show-all.result.systemerrjson: +Sep 5 12:24:03.690 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable install-helm3-assets.result.__len__: 7 +Sep 5 12:24:03.690 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable venom.outputdir: +Sep 5 12:24:03.690 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable venom.libdir: +Sep 5 12:24:03.690 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable venom.testsuite: Static Code Files (including helm) +Sep 5 12:24:03.690 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable install-helm3-assets.result.systemerr: +Sep 5 12:24:03.690 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable helm-detect-show-all.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:24:03.690 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable venom.testsuite.shortName: 01_helm-detect-3 +Sep 5 12:24:03.690 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable venom.datetime: 2023-09-05T12:24:01-06:00 +Sep 5 12:24:03.690 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable helm-detect-show-all.result.systemerr: +Sep 5 12:24:03.690 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable install-helm3-assets.result.systemout: namespace/demo2 created +secret/sh.helm.release.v1.demo2.v1 created +secret/sh.helm.release.v1.test.v1 created +secret/sh.helm.release.v1.test.v2 created +Sep 5 12:24:03.690 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:24:03.690 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable helm-detect-show-all.result.__len__: 7 +Sep 5 12:24:03.690 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable helm-detect-show-all.result.timeseconds: 0.156279209 +Sep 5 12:24:03.690 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable helm-detect-show-all.result.code: 3 +Sep 5 12:24:03.690 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable venom.testsuite.filename: 01_helm-detect-3.yaml +Sep 5 12:24:03.691 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable __Len__: 8 +Sep 5 12:24:03.691 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable __Type__: Map +Sep 5 12:24:03.691 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable venom.testcase: helm-detect +Sep 5 12:24:03.691 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable helm-detect-show-all.result.systemoutjson: +Sep 5 12:24:03.691 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:24:03.691 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable venom.testsuite.filepath: tests/01_helm-detect-3.yaml +Sep 5 12:24:03.691 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable install-helm3-assets.result.code: 0 +Sep 5 12:24:03.691 [DEBU] [Static Code Files (including helm)] [helm-detect] Running testcase with variable install-helm3-assets.result.systemerrjson: +Sep 5 12:24:03.691 [INFO] [Static Code Files (including helm)] [helm-detect] Step #0 content is: {"assertions":["result.code ShouldEqual 3","result.systemout ShouldContainSubstring \"NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED\"","result.systemout ShouldContainSubstring \"test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true\"","result.systemout ShouldNotContainSubstring \"test/test-helm3chart Deployment apps/v1 false false\""],"script":"pluto detect-helm --target-versions k8s=v1.16.0"} +Sep 5 12:24:03.691 [DEBU] [Static Code Files (including helm)] [helm-detect] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-1401872383 +Sep 5 12:24:03.691 [DEBU] [Static Code Files (including helm)] [helm-detect] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-1401872383' +Sep 5 12:24:03.830 [DEBU] [Static Code Files (including helm)] [helm-detect] [exec] NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL + +Sep 5 12:24:03.830 [DEBU] [Static Code Files (including helm)] [helm-detect] [exec] test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true + +Sep 5 12:24:03.830 [DEBU] [Static Code Files (including helm)] [helm-detect] [exec] test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true + +Sep 5 12:24:03.830 [DEBU] [Static Code Files (including helm)] [helm-detect] [exec] + +Sep 5 12:24:03.831 [DEBU] [Static Code Files (including helm)] [helm-detect] [exec] result of runTestStepExecutor: {Systemout:NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true SystemoutJSON: Systemerr: SystemerrJSON: Err: Code:3 TimeSeconds:0.13985175} +Sep 5 12:24:03.831 [INFO] [Static Code Files (including helm)] [helm-detect] Ending testcase +Sep 5 12:24:03.831 [INFO] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Starting testcase +Sep 5 12:24:03.831 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable helm-detect.result.systemoutjson: +Sep 5 12:24:03.831 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable helm-detect-show-all.result.code: 3 +Sep 5 12:24:03.831 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable __Len__: 8 +Sep 5 12:24:03.831 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable venom.testsuite.shortName: 01_helm-detect-3 +Sep 5 12:24:03.831 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable install-helm3-assets.result.systemout: namespace/demo2 created +secret/sh.helm.release.v1.demo2.v1 created +secret/sh.helm.release.v1.test.v1 created +secret/sh.helm.release.v1.test.v2 created +Sep 5 12:24:03.831 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable install-helm3-assets.result.systemerr: +Sep 5 12:24:03.831 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable install-helm3-assets.result.code: 0 +Sep 5 12:24:03.831 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable install-helm3-assets.result.timeseconds: 0.480824041 +Sep 5 12:24:03.831 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable helm-detect.result.timeseconds: 0.13985175 +Sep 5 12:24:03.831 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable install-helm3-assets.result.err: +Sep 5 12:24:03.831 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:24:03.831 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable venom.testsuite.filepath: tests/01_helm-detect-3.yaml +Sep 5 12:24:03.831 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable __Type__: Map +Sep 5 12:24:03.831 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable venom.timestamp: 1693938241 +Sep 5 12:24:03.831 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable helm-detect.result.__len__: 7 +Sep 5 12:24:03.831 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable install-helm3-assets.result.systemoutjson: +Sep 5 12:24:03.831 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable helm-detect-show-all.result.systemoutjson: +Sep 5 12:24:03.831 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:24:03.831 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable venom.libdir: +Sep 5 12:24:03.831 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable helm-detect-show-all.__type__: Result +Sep 5 12:24:03.831 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable helm-detect.__type__: Result +Sep 5 12:24:03.831 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable venom.outputdir: +Sep 5 12:24:03.831 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable install-helm3-assets.__type__: Result +Sep 5 12:24:03.831 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable helm-detect-show-all.result.__len__: 7 +Sep 5 12:24:03.831 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable helm-detect.result.code: 3 +Sep 5 12:24:03.831 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable venom.testsuite.name: Static Code Files (including helm) +Sep 5 12:24:03.831 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable helm-detect-show-all.result.timeseconds: 0.156279209 +Sep 5 12:24:03.831 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable helm-detect.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:24:03.831 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable helm-detect.result.systemerrjson: +Sep 5 12:24:03.831 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable venom.testcase: helm-detect-ignore-deprecations +Sep 5 12:24:03.831 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable install-helm3-assets.result.__len__: 7 +Sep 5 12:24:03.831 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable helm-detect.result.err: +Sep 5 12:24:03.831 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable helm-detect-show-all.result.err: +Sep 5 12:24:03.831 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable venom.datetime: 2023-09-05T12:24:01-06:00 +Sep 5 12:24:03.831 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable helm-detect-show-all.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:24:03.831 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable helm-detect-show-all.result.systemerr: +Sep 5 12:24:03.831 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable install-helm3-assets.result.systemerrjson: +Sep 5 12:24:03.831 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable helm-detect-show-all.result.systemerrjson: +Sep 5 12:24:03.831 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable venom.testsuite.filename: 01_helm-detect-3.yaml +Sep 5 12:24:03.831 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable venom.testsuite: Static Code Files (including helm) +Sep 5 12:24:03.831 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Running testcase with variable helm-detect.result.systemerr: +Sep 5 12:24:03.831 [INFO] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Step #0 content is: {"assertions":["result.code ShouldEqual 0","result.systemout ShouldContainSubstring \"NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED\"","result.systemout ShouldContainSubstring \"test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 false true\"","result.systemout ShouldNotContainSubstring \"test/test-helm3chart Deployment apps/v1 false false\""],"script":"pluto detect-helm --ignore-deprecations --target-versions k8s=v1.15.0"} +Sep 5 12:24:03.832 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-3851425093 +Sep 5 12:24:03.832 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-3851425093' +Sep 5 12:24:03.971 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] [exec] NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL + +Sep 5 12:24:03.971 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] [exec] test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 false true true + +Sep 5 12:24:03.971 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] [exec] test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 false true true + +Sep 5 12:24:03.971 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] [exec] + +Sep 5 12:24:03.972 [DEBU] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] [exec] result of runTestStepExecutor: {Systemout:NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 false true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 false true true SystemoutJSON: Systemerr: SystemerrJSON: Err: Code:0 TimeSeconds:0.139954} +Sep 5 12:24:03.972 [INFO] [Static Code Files (including helm)] [helm-detect-ignore-deprecations] Ending testcase +Sep 5 12:24:03.972 [INFO] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Starting testcase +Sep 5 12:24:03.972 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect.result.systemoutjson: +Sep 5 12:24:03.972 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable install-helm3-assets.result.err: +Sep 5 12:24:03.972 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable __Type__: Map +Sep 5 12:24:03.972 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable venom.testsuite.shortName: 01_helm-detect-3 +Sep 5 12:24:03.972 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable venom.timestamp: 1693938241 +Sep 5 12:24:03.972 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect.result.__len__: 7 +Sep 5 12:24:03.972 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable install-helm3-assets.result.__len__: 7 +Sep 5 12:24:03.972 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect-ignore-deprecations.result.systemerrjson: +Sep 5 12:24:03.972 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect.result.systemerr: +Sep 5 12:24:03.972 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect-ignore-deprecations.result.err: +Sep 5 12:24:03.972 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable install-helm3-assets.result.systemerrjson: +Sep 5 12:24:03.972 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect-show-all.result.systemoutjson: +Sep 5 12:24:03.972 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect.result.systemerrjson: +Sep 5 12:24:03.972 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect-ignore-deprecations.result.__len__: 7 +Sep 5 12:24:03.972 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable install-helm3-assets.result.systemout: namespace/demo2 created +secret/sh.helm.release.v1.demo2.v1 created +secret/sh.helm.release.v1.test.v1 created +secret/sh.helm.release.v1.test.v2 created +Sep 5 12:24:03.972 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable install-helm3-assets.result.timeseconds: 0.480824041 +Sep 5 12:24:03.972 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect-show-all.__type__: Result +Sep 5 12:24:03.972 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect-show-all.result.err: +Sep 5 12:24:03.972 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable venom.testsuite: Static Code Files (including helm) +Sep 5 12:24:03.972 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect-show-all.result.__len__: 7 +Sep 5 12:24:03.972 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect.result.code: 3 +Sep 5 12:24:03.972 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable install-helm3-assets.result.systemerr: +Sep 5 12:24:03.972 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable install-helm3-assets.__type__: Result +Sep 5 12:24:03.972 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect-show-all.result.timeseconds: 0.156279209 +Sep 5 12:24:03.972 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:24:03.972 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable venom.datetime: 2023-09-05T12:24:01-06:00 +Sep 5 12:24:03.972 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect.result.timeseconds: 0.13985175 +Sep 5 12:24:03.972 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:24:03.972 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect-show-all.result.code: 3 +Sep 5 12:24:03.972 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect-ignore-deprecations.result.timeseconds: 0.139954 +Sep 5 12:24:03.972 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect.result.err: +Sep 5 12:24:03.972 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect-ignore-deprecations.result.systemoutjson: +Sep 5 12:24:03.973 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect-show-all.result.systemerr: +Sep 5 12:24:03.973 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable venom.libdir: +Sep 5 12:24:03.973 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable venom.testsuite.filepath: tests/01_helm-detect-3.yaml +Sep 5 12:24:03.973 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:24:03.973 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable venom.testsuite.name: Static Code Files (including helm) +Sep 5 12:24:03.973 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect-show-all.result.systemerrjson: +Sep 5 12:24:03.973 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable install-helm3-assets.result.systemoutjson: +Sep 5 12:24:03.973 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect-ignore-deprecations.__type__: Result +Sep 5 12:24:03.973 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect-ignore-deprecations.result.systemerr: +Sep 5 12:24:03.973 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable install-helm3-assets.result.code: 0 +Sep 5 12:24:03.973 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect-ignore-deprecations.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 false true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 false true true +Sep 5 12:24:03.973 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect-show-all.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:24:03.973 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable venom.outputdir: +Sep 5 12:24:03.973 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable venom.testsuite.filename: 01_helm-detect-3.yaml +Sep 5 12:24:03.973 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable __Len__: 8 +Sep 5 12:24:03.973 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable venom.testcase: helm-detect-show-all-ignore-removals +Sep 5 12:24:03.973 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect.__type__: Result +Sep 5 12:24:03.973 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Running testcase with variable helm-detect-ignore-deprecations.result.code: 0 +Sep 5 12:24:03.973 [INFO] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Step #0 content is: {"assertions":["result.code ShouldEqual 0","result.systemout ShouldContainSubstring \"NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED\"","result.systemout ShouldContainSubstring \"test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true\""],"script":"pluto detect-helm --ignore-removals --ignore-deprecations --target-versions k8s=v1.16.0"} +Sep 5 12:24:03.974 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-1403008224 +Sep 5 12:24:03.974 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-1403008224' +Sep 5 12:24:04.114 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] [exec] NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL + +Sep 5 12:24:04.114 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] [exec] test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true + +Sep 5 12:24:04.114 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] [exec] test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true + +Sep 5 12:24:04.114 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] [exec] + +Sep 5 12:24:04.115 [DEBU] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] [exec] result of runTestStepExecutor: {Systemout:NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true SystemoutJSON: Systemerr: SystemerrJSON: Err: Code:0 TimeSeconds:0.14107025} +Sep 5 12:24:04.115 [INFO] [Static Code Files (including helm)] [helm-detect-show-all-ignore-removals] Ending testcase +Sep 5 12:24:04.115 [INFO] [Static Code Files (including helm)] [helm-detect-owide] Starting testcase +Sep 5 12:24:04.115 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable venom.testsuite.shortName: 01_helm-detect-3 +Sep 5 12:24:04.115 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:24:04.115 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable install-helm3-assets.result.__len__: 7 +Sep 5 12:24:04.115 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-show-all-ignore-removals.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:24:04.115 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-show-all.result.timeseconds: 0.156279209 +Sep 5 12:24:04.115 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-ignore-deprecations.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 false true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 false true true +Sep 5 12:24:04.115 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-show-all-ignore-removals.result.__len__: 7 +Sep 5 12:24:04.115 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable __Len__: 8 +Sep 5 12:24:04.115 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-ignore-deprecations.__type__: Result +Sep 5 12:24:04.115 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-ignore-deprecations.result.timeseconds: 0.139954 +Sep 5 12:24:04.115 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect.result.code: 3 +Sep 5 12:24:04.115 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-show-all-ignore-removals.result.code: 0 +Sep 5 12:24:04.115 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect.result.systemerrjson: +Sep 5 12:24:04.115 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-ignore-deprecations.result.__len__: 7 +Sep 5 12:24:04.115 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable venom.testsuite.filename: 01_helm-detect-3.yaml +Sep 5 12:24:04.115 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable venom.libdir: +Sep 5 12:24:04.115 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-show-all-ignore-removals.result.err: +Sep 5 12:24:04.115 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-show-all-ignore-removals.result.timeseconds: 0.14107025 +Sep 5 12:24:04.115 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect.result.systemerr: +Sep 5 12:24:04.115 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-ignore-deprecations.result.err: +Sep 5 12:24:04.115 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-show-all-ignore-removals.result.systemoutjson: +Sep 5 12:24:04.115 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-show-all-ignore-removals.result.systemerr: +Sep 5 12:24:04.115 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect.result.__len__: 7 +Sep 5 12:24:04.115 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-ignore-deprecations.result.systemerrjson: +Sep 5 12:24:04.115 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-show-all.result.systemerrjson: +Sep 5 12:24:04.115 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect.__type__: Result +Sep 5 12:24:04.115 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-ignore-deprecations.result.systemerr: +Sep 5 12:24:04.115 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:24:04.115 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-ignore-deprecations.result.code: 0 +Sep 5 12:24:04.115 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-show-all-ignore-removals.__type__: Result +Sep 5 12:24:04.115 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable install-helm3-assets.result.systemoutjson: +Sep 5 12:24:04.115 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable venom.testsuite.filepath: tests/01_helm-detect-3.yaml +Sep 5 12:24:04.115 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:24:04.115 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable install-helm3-assets.result.code: 0 +Sep 5 12:24:04.115 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect.result.systemoutjson: +Sep 5 12:24:04.115 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable install-helm3-assets.result.err: +Sep 5 12:24:04.115 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-show-all.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:24:04.115 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable venom.testsuite.name: Static Code Files (including helm) +Sep 5 12:24:04.115 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable venom.timestamp: 1693938241 +Sep 5 12:24:04.115 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable install-helm3-assets.result.systemerr: +Sep 5 12:24:04.115 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable venom.testsuite: Static Code Files (including helm) +Sep 5 12:24:04.115 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect.result.timeseconds: 0.13985175 +Sep 5 12:24:04.115 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-show-all.result.err: +Sep 5 12:24:04.115 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-ignore-deprecations.result.systemoutjson: +Sep 5 12:24:04.115 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-show-all.__type__: Result +Sep 5 12:24:04.115 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-show-all.result.code: 3 +Sep 5 12:24:04.115 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable venom.datetime: 2023-09-05T12:24:01-06:00 +Sep 5 12:24:04.115 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable __Type__: Map +Sep 5 12:24:04.115 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-show-all-ignore-removals.result.systemerrjson: +Sep 5 12:24:04.115 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable install-helm3-assets.__type__: Result +Sep 5 12:24:04.115 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect.result.err: +Sep 5 12:24:04.115 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-show-all.result.__len__: 7 +Sep 5 12:24:04.115 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-show-all.result.systemerr: +Sep 5 12:24:04.115 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable venom.testcase: helm-detect-owide +Sep 5 12:24:04.115 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable helm-detect-show-all.result.systemoutjson: +Sep 5 12:24:04.115 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable venom.outputdir: +Sep 5 12:24:04.115 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable install-helm3-assets.result.timeseconds: 0.480824041 +Sep 5 12:24:04.115 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable install-helm3-assets.result.systemerrjson: +Sep 5 12:24:04.115 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] Running testcase with variable install-helm3-assets.result.systemout: namespace/demo2 created +secret/sh.helm.release.v1.demo2.v1 created +secret/sh.helm.release.v1.test.v1 created +secret/sh.helm.release.v1.test.v2 created +Sep 5 12:24:04.116 [INFO] [Static Code Files (including helm)] [helm-detect-owide] Step #0 content is: {"assertions":["result.code ShouldEqual 3","result.systemout ShouldContainSubstring \"NAME NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN\"","result.systemout ShouldContainSubstring \"test/test-helm3chart-v1beta1 default Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0\"","result.systemout ShouldContainSubstring \"test/test-helm3chart-v1beta1 demo2 Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0\""],"script":"pluto detect-helm -owide --target-versions k8s=v1.16.0"} +Sep 5 12:24:04.116 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-3260895576 +Sep 5 12:24:04.116 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-3260895576' +Sep 5 12:24:04.258 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] [exec] NAME NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN REPL AVAIL REPL AVAIL IN + +Sep 5 12:24:04.258 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] [exec] test/test-helm3chart-v1beta1 default Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 + +Sep 5 12:24:04.258 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] [exec] test/test-helm3chart-v1beta1 demo2 Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 + +Sep 5 12:24:04.258 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] [exec] + +Sep 5 12:24:04.258 [DEBU] [Static Code Files (including helm)] [helm-detect-owide] [exec] result of runTestStepExecutor: {Systemout:NAME NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN REPL AVAIL REPL AVAIL IN +test/test-helm3chart-v1beta1 default Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 +test/test-helm3chart-v1beta1 demo2 Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 SystemoutJSON: Systemerr: SystemerrJSON: Err: Code:3 TimeSeconds:0.142260833} +Sep 5 12:24:04.259 [INFO] [Static Code Files (including helm)] [helm-detect-owide] Ending testcase +Sep 5 12:24:04.259 [INFO] [Static Code Files (including helm)] [helm-detect-ojson] Starting testcase +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-show-all.result.__len__: 7 +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable install-helm3-assets.__type__: Result +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-ignore-deprecations.result.systemerrjson: +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-owide.result.timeseconds: 0.142260833 +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect.result.code: 3 +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable venom.testsuite: Static Code Files (including helm) +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable install-helm3-assets.result.systemerr: +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-show-all-ignore-removals.result.systemerrjson: +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect.__type__: Result +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-show-all-ignore-removals.result.__len__: 7 +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-owide.result.systemout: NAME NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN REPL AVAIL REPL AVAIL IN +test/test-helm3chart-v1beta1 default Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 +test/test-helm3chart-v1beta1 demo2 Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-show-all.__type__: Result +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-ignore-deprecations.result.systemoutjson: +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-show-all.result.code: 3 +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable venom.testsuite.name: Static Code Files (including helm) +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect.result.timeseconds: 0.13985175 +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-owide.result.systemerr: +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-owide.result.systemoutjson: +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-ignore-deprecations.result.code: 0 +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable install-helm3-assets.result.systemout: namespace/demo2 created +secret/sh.helm.release.v1.demo2.v1 created +secret/sh.helm.release.v1.test.v1 created +secret/sh.helm.release.v1.test.v2 created +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-owide.result.__len__: 7 +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable venom.outputdir: +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable venom.testsuite.shortName: 01_helm-detect-3 +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable venom.testcase: helm-detect-ojson +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable venom.libdir: +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-show-all-ignore-removals.__type__: Result +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect.result.systemoutjson: +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable install-helm3-assets.result.systemoutjson: +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-show-all.result.systemoutjson: +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect.result.__len__: 7 +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-show-all.result.timeseconds: 0.156279209 +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-show-all.result.err: +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-owide.result.code: 3 +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-ignore-deprecations.result.systemerr: +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable install-helm3-assets.result.systemerrjson: +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-show-all.result.systemerrjson: +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-show-all.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-ignore-deprecations.result.timeseconds: 0.139954 +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-ignore-deprecations.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 false true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 false true true +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable install-helm3-assets.result.err: +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-show-all-ignore-removals.result.err: +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-show-all-ignore-removals.result.code: 0 +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable __Len__: 8 +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable venom.datetime: 2023-09-05T12:24:01-06:00 +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-owide.result.err: +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-show-all-ignore-removals.result.systemoutjson: +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable venom.testsuite.filepath: tests/01_helm-detect-3.yaml +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-ignore-deprecations.__type__: Result +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable install-helm3-assets.result.code: 0 +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable install-helm3-assets.result.__len__: 7 +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-owide.result.systemerrjson: +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect.result.systemerrjson: +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-show-all.result.systemerr: +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-show-all-ignore-removals.result.timeseconds: 0.14107025 +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-show-all-ignore-removals.result.systemerr: +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect.result.err: +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-ignore-deprecations.result.err: +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-ignore-deprecations.result.__len__: 7 +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect.result.systemerr: +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-owide.__type__: Result +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable helm-detect-show-all-ignore-removals.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable install-helm3-assets.result.timeseconds: 0.480824041 +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable venom.testsuite.filename: 01_helm-detect-3.yaml +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable venom.timestamp: 1693938241 +Sep 5 12:24:04.259 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] Running testcase with variable __Type__: Map +Sep 5 12:24:04.259 [INFO] [Static Code Files (including helm)] [helm-detect-ojson] Step #0 content is: {"assertions":["result.code ShouldEqual 3","result.systemout ShouldEqual {\"items\":[{\"name\":\"test/test-helm3chart-v1beta1\",\"namespace\":\"default\",\"api\":{\"version\":\"extensions/v1beta1\",\"kind\":\"Deployment\",\"deprecated-in\":\"v1.9.0\",\"removed-in\":\"v1.16.0\",\"replacement-api\":\"apps/v1\",\"replacement-available-in\":\"v1.9.0\",\"component\":\"k8s\"},\"deprecated\":true,\"removed\":true,\"replacementAvailable\":true},{\"name\":\"test/test-helm3chart-v1beta1\",\"namespace\":\"demo2\",\"api\":{\"version\":\"extensions/v1beta1\",\"kind\":\"Deployment\",\"deprecated-in\":\"v1.9.0\",\"removed-in\":\"v1.16.0\",\"replacement-api\":\"apps/v1\",\"replacement-available-in\":\"v1.9.0\",\"component\":\"k8s\"},\"deprecated\":true,\"removed\":true,\"replacementAvailable\":true}],\"target-versions\":{\"cert-manager\":\"v1.5.3\",\"istio\":\"v1.11.0\",\"k8s\":\"v1.16.0\"}}"],"script":"pluto detect-helm -ojson --target-versions k8s=v1.16.0"} +Sep 5 12:24:04.260 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-3297422176 +Sep 5 12:24:04.260 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-3297422176' +Sep 5 12:24:04.394 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] [exec] {"items":[{"name":"test/test-helm3chart-v1beta1","namespace":"default","api":{"version":"extensions/v1beta1","kind":"Deployment","deprecated-in":"v1.9.0","removed-in":"v1.16.0","replacement-api":"apps/v1","replacement-available-in":"v1.9.0","component":"k8s"},"deprecated":true,"removed":true,"replacementAvailable":true},{"name":"test/test-helm3chart-v1beta1","namespace":"demo2","api":{"version":"extensions/v1beta1","kind":"Deployment","deprecated-in":"v1.9.0","removed-in":"v1.16.0","replacement-api":"apps/v1","replacement-available-in":"v1.9.0","component":"k8s"},"deprecated":true,"removed":true,"replacementAvailable":true}],"target-versions":{"cert-manager":"v1.5.3","istio":"v1.11.0","k8s":"v1.16.0"}} + +Sep 5 12:24:04.395 [DEBU] [Static Code Files (including helm)] [helm-detect-ojson] [exec] result of runTestStepExecutor: {Systemout:{"items":[{"name":"test/test-helm3chart-v1beta1","namespace":"default","api":{"version":"extensions/v1beta1","kind":"Deployment","deprecated-in":"v1.9.0","removed-in":"v1.16.0","replacement-api":"apps/v1","replacement-available-in":"v1.9.0","component":"k8s"},"deprecated":true,"removed":true,"replacementAvailable":true},{"name":"test/test-helm3chart-v1beta1","namespace":"demo2","api":{"version":"extensions/v1beta1","kind":"Deployment","deprecated-in":"v1.9.0","removed-in":"v1.16.0","replacement-api":"apps/v1","replacement-available-in":"v1.9.0","component":"k8s"},"deprecated":true,"removed":true,"replacementAvailable":true}],"target-versions":{"cert-manager":"v1.5.3","istio":"v1.11.0","k8s":"v1.16.0"}} SystemoutJSON:map[items:[map[api:map[component:k8s deprecated-in:v1.9.0 kind:Deployment removed-in:v1.16.0 replacement-api:apps/v1 replacement-available-in:v1.9.0 version:extensions/v1beta1] deprecated:true name:test/test-helm3chart-v1beta1 namespace:default removed:true replacementAvailable:true] map[api:map[component:k8s deprecated-in:v1.9.0 kind:Deployment removed-in:v1.16.0 replacement-api:apps/v1 replacement-available-in:v1.9.0 version:extensions/v1beta1] deprecated:true name:test/test-helm3chart-v1beta1 namespace:demo2 removed:true replacementAvailable:true]] target-versions:map[cert-manager:v1.5.3 istio:v1.11.0 k8s:v1.16.0]] Systemerr: SystemerrJSON: Err: Code:3 TimeSeconds:0.135011333} +Sep 5 12:24:04.396 [INFO] [Static Code Files (including helm)] [helm-detect-ojson] Ending testcase +Sep 5 12:24:04.396 [INFO] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Starting testcase +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemerr: +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-show-all.result.__len__: 7 +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable venom.testsuite: Static Code Files (including helm) +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.api.version: extensions/v1beta1 +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.__type__: Map +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable venom.datetime: 2023-09-05T12:24:01-06:00 +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.replacementavailable: true +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-show-all.result.code: 3 +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-show-all.__type__: Result +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-show-all-ignore-removals.result.systemerrjson: +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable venom.testcase: helm-detect-kube-context-doesnotexist +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-show-all-ignore-removals.result.systemoutjson: +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable install-helm3-assets.result.systemerrjson: +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.api.kind: Deployment +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemerrjson: +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect.result.systemerr: +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.timeseconds: 0.135011333 +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.target-versions.istio: v1.11.0 +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.api.removed-in: v1.16.0 +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ignore-deprecations.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 false true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 false true true +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.api.component: k8s +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.__type__: Result +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-owide.result.systemout: NAME NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN REPL AVAIL REPL AVAIL IN +test/test-helm3chart-v1beta1 default Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 +test/test-helm3chart-v1beta1 demo2 Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.__type__: Array +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson: map[items:[map[api:map[component:k8s deprecated-in:v1.9.0 kind:Deployment removed-in:v1.16.0 replacement-api:apps/v1 replacement-available-in:v1.9.0 version:extensions/v1beta1] deprecated:true name:test/test-helm3chart-v1beta1 namespace:default removed:true replacementAvailable:true] map[api:map[component:k8s deprecated-in:v1.9.0 kind:Deployment removed-in:v1.16.0 replacement-api:apps/v1 replacement-available-in:v1.9.0 version:extensions/v1beta1] deprecated:true name:test/test-helm3chart-v1beta1 namespace:demo2 removed:true replacementAvailable:true]] target-versions:map[cert-manager:v1.5.3 istio:v1.11.0 k8s:v1.16.0]] +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable install-helm3-assets.result.timeseconds: 0.480824041 +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.api.kind: Deployment +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.__len__: 7 +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemout: {"items":[{"name":"test/test-helm3chart-v1beta1","namespace":"default","api":{"version":"extensions/v1beta1","kind":"Deployment","deprecated-in":"v1.9.0","removed-in":"v1.16.0","replacement-api":"apps/v1","replacement-available-in":"v1.9.0","component":"k8s"},"deprecated":true,"removed":true,"replacementAvailable":true},{"name":"test/test-helm3chart-v1beta1","namespace":"demo2","api":{"version":"extensions/v1beta1","kind":"Deployment","deprecated-in":"v1.9.0","removed-in":"v1.16.0","replacement-api":"apps/v1","replacement-available-in":"v1.9.0","component":"k8s"},"deprecated":true,"removed":true,"replacementAvailable":true}],"target-versions":{"cert-manager":"v1.5.3","istio":"v1.11.0","k8s":"v1.16.0"}} +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable __Type__: Map +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.target-versions: map[cert-manager:v1.5.3 istio:v1.11.0 k8s:v1.16.0] +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable install-helm3-assets.result.code: 0 +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.removed: true +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.target-versions.__len__: 3 +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable venom.testsuite.name: Static Code Files (including helm) +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.target-versions.k8s: v1.16.0 +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-show-all.result.timeseconds: 0.156279209 +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.name: test/test-helm3chart-v1beta1 +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable install-helm3-assets.result.systemerr: +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-show-all.result.systemerrjson: +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.name: test/test-helm3chart-v1beta1 +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-owide.result.code: 3 +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect.result.systemoutjson: +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect.result.timeseconds: 0.13985175 +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.target-versions.cert-manager: v1.5.3 +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ignore-deprecations.result.timeseconds: 0.139954 +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.__len__: 2 +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-owide.result.systemoutjson: +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable __Len__: 8 +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.target-versions.__type__: Map +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-show-all-ignore-removals.result.__len__: 7 +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.api.__type__: Map +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.api.deprecated-in: v1.9.0 +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-owide.result.systemerr: +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-owide.result.timeseconds: 0.142260833 +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.api.replacement-available-in: v1.9.0 +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect.__type__: Result +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.api.replacement-api: apps/v1 +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect.result.__len__: 7 +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-show-all-ignore-removals.result.timeseconds: 0.14107025 +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect.result.code: 3 +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect.result.err: +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.api.__len__: 7 +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ignore-deprecations.result.systemerrjson: +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ignore-deprecations.__type__: Result +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ignore-deprecations.result.systemerr: +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable venom.testsuite.filepath: tests/01_helm-detect-3.yaml +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.api.replacement-api: apps/v1 +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable install-helm3-assets.result.systemout: namespace/demo2 created +secret/sh.helm.release.v1.demo2.v1 created +secret/sh.helm.release.v1.test.v1 created +secret/sh.helm.release.v1.test.v2 created +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.__len__: 2 +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.err: +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable venom.timestamp: 1693938241 +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable venom.libdir: +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect.result.systemerrjson: +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.removed: true +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ignore-deprecations.result.err: +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.api.component: k8s +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.namespace: default +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-show-all.result.systemerr: +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.deprecated: true +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.__len__: 6 +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable install-helm3-assets.result.__len__: 7 +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ignore-deprecations.result.code: 0 +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ignore-deprecations.result.systemoutjson: +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.__type__: Map +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable venom.outputdir: +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.api.deprecated-in: v1.9.0 +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.api.version: extensions/v1beta1 +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.namespace: demo2 +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0: map[api:map[component:k8s deprecated-in:v1.9.0 kind:Deployment removed-in:v1.16.0 replacement-api:apps/v1 replacement-available-in:v1.9.0 version:extensions/v1beta1] deprecated:true name:test/test-helm3chart-v1beta1 namespace:default removed:true replacementAvailable:true] +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.replacementavailable: true +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable venom.testsuite.shortName: 01_helm-detect-3 +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable install-helm3-assets.result.err: +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.api.removed-in: v1.16.0 +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable install-helm3-assets.result.systemoutjson: +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.api: map[component:k8s deprecated-in:v1.9.0 kind:Deployment removed-in:v1.16.0 replacement-api:apps/v1 replacement-available-in:v1.9.0 version:extensions/v1beta1] +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.__type__: Map +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable install-helm3-assets.__type__: Result +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-show-all-ignore-removals.result.err: +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-show-all-ignore-removals.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-show-all-ignore-removals.__type__: Result +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-show-all.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.api.replacement-available-in: v1.9.0 +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-show-all.result.err: +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-owide.result.err: +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items: [map[api:map[component:k8s deprecated-in:v1.9.0 kind:Deployment removed-in:v1.16.0 replacement-api:apps/v1 replacement-available-in:v1.9.0 version:extensions/v1beta1] deprecated:true name:test/test-helm3chart-v1beta1 namespace:default removed:true replacementAvailable:true] map[api:map[component:k8s deprecated-in:v1.9.0 kind:Deployment removed-in:v1.16.0 replacement-api:apps/v1 replacement-available-in:v1.9.0 version:extensions/v1beta1] deprecated:true name:test/test-helm3chart-v1beta1 namespace:demo2 removed:true replacementAvailable:true]] +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ignore-deprecations.result.__len__: 7 +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-owide.result.systemerrjson: +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-owide.result.__len__: 7 +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.code: 3 +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.__len__: 6 +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-show-all-ignore-removals.result.code: 0 +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-owide.__type__: Result +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.api: map[component:k8s deprecated-in:v1.9.0 kind:Deployment removed-in:v1.16.0 replacement-api:apps/v1 replacement-available-in:v1.9.0 version:extensions/v1beta1] +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.deprecated: true +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-show-all-ignore-removals.result.systemerr: +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1: map[api:map[component:k8s deprecated-in:v1.9.0 kind:Deployment removed-in:v1.16.0 replacement-api:apps/v1 replacement-available-in:v1.9.0 version:extensions/v1beta1] deprecated:true name:test/test-helm3chart-v1beta1 namespace:demo2 removed:true replacementAvailable:true] +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable venom.testsuite.filename: 01_helm-detect-3.yaml +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.api.__type__: Map +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-show-all.result.systemoutjson: +Sep 5 12:24:04.396 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.api.__len__: 7 +Sep 5 12:24:04.397 [INFO] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Step #0 content is: {"assertions":["result.code ShouldEqual 1","result.systemout ShouldContainSubstring 'context \"doesnotexist\" does not exist'"],"script":"pluto detect-helm --kube-context doesnotexist"} +Sep 5 12:24:04.397 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-404236458 +Sep 5 12:24:04.397 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-404236458' +Sep 5 12:24:04.511 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] [exec] error getting helm configuration: context "doesnotexist" does not exist + +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] [exec] result of runTestStepExecutor: {Systemout:error getting helm configuration: context "doesnotexist" does not exist SystemoutJSON: Systemerr: SystemerrJSON: Err: Code:1 TimeSeconds:0.114577875} +Sep 5 12:24:04.512 [INFO] [Static Code Files (including helm)] [helm-detect-kube-context-doesnotexist] Ending testcase +Sep 5 12:24:04.512 [INFO] [Static Code Files (including helm)] [cleanup] Starting testcase +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.api.replacement-api: apps/v1 +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable __Type__: Map +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-show-all.__type__: Result +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.target-versions.__len__: 3 +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.api.replacement-available-in: v1.9.0 +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-show-all.result.__len__: 7 +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-show-all-ignore-removals.result.err: +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0: map[api:map[component:k8s deprecated-in:v1.9.0 kind:Deployment removed-in:v1.16.0 replacement-api:apps/v1 replacement-available-in:v1.9.0 version:extensions/v1beta1] deprecated:true name:test/test-helm3chart-v1beta1 namespace:default removed:true replacementAvailable:true] +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.removed: true +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-kube-context-doesnotexist.__type__: Result +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-owide.__type__: Result +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect.result.code: 3 +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.__type__: Map +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable venom.testsuite: Static Code Files (including helm) +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.target-versions.__type__: Map +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.target-versions.istio: v1.11.0 +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-show-all.result.timeseconds: 0.156279209 +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ignore-deprecations.result.systemerrjson: +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.api: map[component:k8s deprecated-in:v1.9.0 kind:Deployment removed-in:v1.16.0 replacement-api:apps/v1 replacement-available-in:v1.9.0 version:extensions/v1beta1] +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable install-helm3-assets.result.systemerrjson: +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.__len__: 7 +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.target-versions.cert-manager: v1.5.3 +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect.result.systemerrjson: +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable install-helm3-assets.result.err: +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.target-versions.k8s: v1.16.0 +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect.result.__len__: 7 +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-show-all-ignore-removals.result.systemoutjson: +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-kube-context-doesnotexist.result.systemerr: +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1: map[api:map[component:k8s deprecated-in:v1.9.0 kind:Deployment removed-in:v1.16.0 replacement-api:apps/v1 replacement-available-in:v1.9.0 version:extensions/v1beta1] deprecated:true name:test/test-helm3chart-v1beta1 namespace:demo2 removed:true replacementAvailable:true] +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemout: {"items":[{"name":"test/test-helm3chart-v1beta1","namespace":"default","api":{"version":"extensions/v1beta1","kind":"Deployment","deprecated-in":"v1.9.0","removed-in":"v1.16.0","replacement-api":"apps/v1","replacement-available-in":"v1.9.0","component":"k8s"},"deprecated":true,"removed":true,"replacementAvailable":true},{"name":"test/test-helm3chart-v1beta1","namespace":"demo2","api":{"version":"extensions/v1beta1","kind":"Deployment","deprecated-in":"v1.9.0","removed-in":"v1.16.0","replacement-api":"apps/v1","replacement-available-in":"v1.9.0","component":"k8s"},"deprecated":true,"removed":true,"replacementAvailable":true}],"target-versions":{"cert-manager":"v1.5.3","istio":"v1.11.0","k8s":"v1.16.0"}} +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.api.kind: Deployment +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable install-helm3-assets.__type__: Result +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.deprecated: true +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable __Len__: 8 +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable venom.libdir: +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable venom.datetime: 2023-09-05T12:24:01-06:00 +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.deprecated: true +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.__len__: 6 +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.api.deprecated-in: v1.9.0 +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.__len__: 2 +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.code: 3 +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.api: map[component:k8s deprecated-in:v1.9.0 kind:Deployment removed-in:v1.16.0 replacement-api:apps/v1 replacement-available-in:v1.9.0 version:extensions/v1beta1] +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ignore-deprecations.result.err: +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-owide.result.systemerr: +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.api.version: extensions/v1beta1 +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-show-all.result.systemerrjson: +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.api.component: k8s +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable venom.testsuite.filepath: tests/01_helm-detect-3.yaml +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-kube-context-doesnotexist.result.err: +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable venom.testsuite.name: Static Code Files (including helm) +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-kube-context-doesnotexist.result.systemoutjson: +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-show-all-ignore-removals.result.systemerrjson: +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable install-helm3-assets.result.__len__: 7 +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.api.replacement-api: apps/v1 +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.namespace: default +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-owide.result.systemoutjson: +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.name: test/test-helm3chart-v1beta1 +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.__type__: Map +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.err: +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable install-helm3-assets.result.systemout: namespace/demo2 created +secret/sh.helm.release.v1.demo2.v1 created +secret/sh.helm.release.v1.test.v1 created +secret/sh.helm.release.v1.test.v2 created +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.api.__len__: 7 +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect.__type__: Result +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-kube-context-doesnotexist.result.code: 1 +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items: [map[api:map[component:k8s deprecated-in:v1.9.0 kind:Deployment removed-in:v1.16.0 replacement-api:apps/v1 replacement-available-in:v1.9.0 version:extensions/v1beta1] deprecated:true name:test/test-helm3chart-v1beta1 namespace:default removed:true replacementAvailable:true] map[api:map[component:k8s deprecated-in:v1.9.0 kind:Deployment removed-in:v1.16.0 replacement-api:apps/v1 replacement-available-in:v1.9.0 version:extensions/v1beta1] deprecated:true name:test/test-helm3chart-v1beta1 namespace:demo2 removed:true replacementAvailable:true]] +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-show-all-ignore-removals.__type__: Result +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.api.component: k8s +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.api.__type__: Map +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ignore-deprecations.result.systemerr: +Sep 5 12:24:04.512 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable install-helm3-assets.result.timeseconds: 0.480824041 +Sep 5 12:24:04.513 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-show-all-ignore-removals.result.timeseconds: 0.14107025 +Sep 5 12:24:04.513 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-kube-context-doesnotexist.result.systemout: error getting helm configuration: context "doesnotexist" does not exist +Sep 5 12:24:04.513 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-show-all.result.systemerr: +Sep 5 12:24:04.513 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.__type__: Result +Sep 5 12:24:04.513 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable venom.testsuite.filename: 01_helm-detect-3.yaml +Sep 5 12:24:04.513 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:24:04.513 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.api.version: extensions/v1beta1 +Sep 5 12:24:04.513 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.api.deprecated-in: v1.9.0 +Sep 5 12:24:04.513 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.api.kind: Deployment +Sep 5 12:24:04.513 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable install-helm3-assets.result.systemoutjson: +Sep 5 12:24:04.513 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-kube-context-doesnotexist.result.systemerrjson: +Sep 5 12:24:04.513 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ignore-deprecations.__type__: Result +Sep 5 12:24:04.513 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.replacementavailable: true +Sep 5 12:24:04.513 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.replacementavailable: true +Sep 5 12:24:04.513 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemerrjson: +Sep 5 12:24:04.513 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect.result.systemoutjson: +Sep 5 12:24:04.513 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-kube-context-doesnotexist.result.__len__: 7 +Sep 5 12:24:04.513 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect.result.systemerr: +Sep 5 12:24:04.513 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.__type__: Map +Sep 5 12:24:04.513 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson: map[items:[map[api:map[component:k8s deprecated-in:v1.9.0 kind:Deployment removed-in:v1.16.0 replacement-api:apps/v1 replacement-available-in:v1.9.0 version:extensions/v1beta1] deprecated:true name:test/test-helm3chart-v1beta1 namespace:default removed:true replacementAvailable:true] map[api:map[component:k8s deprecated-in:v1.9.0 kind:Deployment removed-in:v1.16.0 replacement-api:apps/v1 replacement-available-in:v1.9.0 version:extensions/v1beta1] deprecated:true name:test/test-helm3chart-v1beta1 namespace:demo2 removed:true replacementAvailable:true]] target-versions:map[cert-manager:v1.5.3 istio:v1.11.0 k8s:v1.16.0]] +Sep 5 12:24:04.513 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.api.replacement-available-in: v1.9.0 +Sep 5 12:24:04.513 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.api.removed-in: v1.16.0 +Sep 5 12:24:04.513 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ignore-deprecations.result.__len__: 7 +Sep 5 12:24:04.513 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable venom.testsuite.shortName: 01_helm-detect-3 +Sep 5 12:24:04.513 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable venom.testcase: cleanup +Sep 5 12:24:04.513 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.__type__: Array +Sep 5 12:24:04.513 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-owide.result.systemerrjson: +Sep 5 12:24:04.513 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-show-all.result.err: +Sep 5 12:24:04.513 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-show-all-ignore-removals.result.__len__: 7 +Sep 5 12:24:04.513 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-show-all-ignore-removals.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:24:04.513 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.timeseconds: 0.135011333 +Sep 5 12:24:04.513 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable venom.timestamp: 1693938241 +Sep 5 12:24:04.513 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-owide.result.systemout: NAME NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN REPL AVAIL REPL AVAIL IN +test/test-helm3chart-v1beta1 default Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 +test/test-helm3chart-v1beta1 demo2 Deployment extensions/v1beta1 apps/v1 true v1.9.0 true v1.16.0 true v1.9.0 +Sep 5 12:24:04.513 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ignore-deprecations.result.timeseconds: 0.139954 +Sep 5 12:24:04.513 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.__len__: 2 +Sep 5 12:24:04.513 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-kube-context-doesnotexist.result.timeseconds: 0.114577875 +Sep 5 12:24:04.513 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ignore-deprecations.result.code: 0 +Sep 5 12:24:04.513 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ignore-deprecations.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 false true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 false true true +Sep 5 12:24:04.513 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.namespace: demo2 +Sep 5 12:24:04.513 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-show-all.result.systemoutjson: +Sep 5 12:24:04.513 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:24:04.513 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable install-helm3-assets.result.systemerr: +Sep 5 12:24:04.513 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.api.__type__: Map +Sep 5 12:24:04.513 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.target-versions: map[cert-manager:v1.5.3 istio:v1.11.0 k8s:v1.16.0] +Sep 5 12:24:04.513 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect.result.timeseconds: 0.13985175 +Sep 5 12:24:04.513 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-show-all-ignore-removals.result.systemerr: +Sep 5 12:24:04.513 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect.result.err: +Sep 5 12:24:04.513 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable venom.outputdir: +Sep 5 12:24:04.513 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-show-all-ignore-removals.result.code: 0 +Sep 5 12:24:04.513 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.api.removed-in: v1.16.0 +Sep 5 12:24:04.513 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-show-all.result.code: 3 +Sep 5 12:24:04.513 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.removed: true +Sep 5 12:24:04.513 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.__len__: 6 +Sep 5 12:24:04.513 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items1.api.__len__: 7 +Sep 5 12:24:04.513 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-show-all.result.systemout: NAME KIND VERSION REPLACEMENT REMOVED DEPRECATED REPL AVAIL +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +test/test-helm3chart-v1beta1 Deployment extensions/v1beta1 apps/v1 true true true +Sep 5 12:24:04.513 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-owide.result.timeseconds: 0.142260833 +Sep 5 12:24:04.513 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-owide.result.code: 3 +Sep 5 12:24:04.513 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemerr: +Sep 5 12:24:04.513 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-owide.result.__len__: 7 +Sep 5 12:24:04.513 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-owide.result.err: +Sep 5 12:24:04.513 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ignore-deprecations.result.systemoutjson: +Sep 5 12:24:04.513 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable helm-detect-ojson.result.systemoutjson.items.items0.name: test/test-helm3chart-v1beta1 +Sep 5 12:24:04.513 [DEBU] [Static Code Files (including helm)] [cleanup] Running testcase with variable install-helm3-assets.result.code: 0 +Sep 5 12:24:04.513 [INFO] [Static Code Files (including helm)] [cleanup] Step #0 content is: {"script":"kubectl delete -f assets/helm3\nkubectl delete ns demo2\n"} +Sep 5 12:24:04.513 [DEBU] [Static Code Files (including helm)] [cleanup] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-2054591510 +Sep 5 12:24:04.514 [DEBU] [Static Code Files (including helm)] [cleanup] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-2054591510' +Sep 5 12:24:04.661 [DEBU] [Static Code Files (including helm)] [cleanup] [exec] secret "sh.helm.release.v1.demo2.v1" deleted + +Sep 5 12:24:04.666 [DEBU] [Static Code Files (including helm)] [cleanup] [exec] secret "sh.helm.release.v1.test.v1" deleted + +Sep 5 12:24:04.671 [DEBU] [Static Code Files (including helm)] [cleanup] [exec] secret "sh.helm.release.v1.test.v2" deleted + +Sep 5 12:24:04.825 [DEBU] [Static Code Files (including helm)] [cleanup] [exec] namespace "demo2" deleted + +Sep 5 12:24:09.906 [DEBU] [Static Code Files (including helm)] [cleanup] [exec] result of runTestStepExecutor: {Systemout:secret "sh.helm.release.v1.demo2.v1" deleted +secret "sh.helm.release.v1.test.v1" deleted +secret "sh.helm.release.v1.test.v2" deleted +namespace "demo2" deleted SystemoutJSON: Systemerr: SystemerrJSON: Err: Code:0 TimeSeconds:5.392786959} +Sep 5 12:24:09.907 [INFO] [Static Code Files (including helm)] [cleanup] Ending testcase +Sep 5 12:24:09.907 [INFO] [Static Code Files (including helm)] Ending testsuite +Sep 5 12:24:09.907 [INFO] [CLI Validation] Starting testsuite +Sep 5 12:24:09.907 [INFO] [CLI Validation] [Pass-bad-semver-with-no-v] Starting testcase +Sep 5 12:24:09.907 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] Running testcase with variable venom.outputdir: +Sep 5 12:24:09.907 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] Running testcase with variable venom.testsuite.name: CLI Validation +Sep 5 12:24:09.907 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] Running testcase with variable __Type__: Map +Sep 5 12:24:09.907 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] Running testcase with variable venom.testsuite.filename: 03-cli-validation.yaml +Sep 5 12:24:09.907 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] Running testcase with variable __Len__: 8 +Sep 5 12:24:09.907 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] Running testcase with variable venom.datetime: 2023-09-05T12:24:01-06:00 +Sep 5 12:24:09.907 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] Running testcase with variable venom.libdir: +Sep 5 12:24:09.907 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] Running testcase with variable venom.timestamp: 1693938241 +Sep 5 12:24:09.907 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] Running testcase with variable venom.testsuite.filepath: tests/03-cli-validation.yaml +Sep 5 12:24:09.907 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:24:09.907 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] Running testcase with variable venom.testcase: Pass-bad-semver-with-no-v +Sep 5 12:24:09.907 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:24:09.907 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] Running testcase with variable venom.testsuite: CLI Validation +Sep 5 12:24:09.907 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] Running testcase with variable venom.testsuite.shortName: 03-cli-validation +Sep 5 12:24:09.907 [INFO] [CLI Validation] [Pass-bad-semver-with-no-v] Step #0 content is: {"assertions":["result.code ShouldEqual 1","result.systemerr ShouldContainSubstring \"you must use valid semver for all target versions with a leading 'v' - got foo 1.0.0\""],"script":"pluto detect-files -d assets/deprecated116 --target-versions foo=1.0.0"} +Sep 5 12:24:09.907 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-3406345139 +Sep 5 12:24:09.907 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-3406345139' +Sep 5 12:24:10.035 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] Error: you must use valid semver for all target versions with a leading 'v' - got foo 1.0.0 + +Sep 5 12:24:10.037 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] Usage: + +Sep 5 12:24:10.037 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] pluto detect-files [flags] + +Sep 5 12:24:10.037 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] + +Sep 5 12:24:10.037 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] Flags: + +Sep 5 12:24:10.037 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] -d, --directory string The directory to scan. If blank, defaults to current working dir. + +Sep 5 12:24:10.037 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] -h, --help help for detect-files + +Sep 5 12:24:10.037 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] + +Sep 5 12:24:10.037 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] Global Flags: + +Sep 5 12:24:10.037 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + +Sep 5 12:24:10.037 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + +Sep 5 12:24:10.037 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] --components strings A list of components to run checks for. If nil, will check for all found in versions. + +Sep 5 12:24:10.037 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + +Sep 5 12:24:10.037 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + +Sep 5 12:24:10.037 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + +Sep 5 12:24:10.037 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] --no-footer Disable footer output + +Sep 5 12:24:10.037 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + +Sep 5 12:24:10.037 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + +Sep 5 12:24:10.037 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + +Sep 5 12:24:10.037 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + +Sep 5 12:24:10.037 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] -v, --v Level number for the log level verbosity + +Sep 5 12:24:10.037 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] + +Sep 5 12:24:10.037 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] E0905 12:24:10.037390 91435 root.go:471] you must use valid semver for all target versions with a leading 'v' - got foo 1.0.0 + +Sep 5 12:24:10.038 [DEBU] [CLI Validation] [Pass-bad-semver-with-no-v] [exec] result of runTestStepExecutor: {Systemout: SystemoutJSON: Systemerr:Error: you must use valid semver for all target versions with a leading 'v' - got foo 1.0.0 +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:10.037390 91435 root.go:471] you must use valid semver for all target versions with a leading 'v' - got foo 1.0.0 SystemerrJSON: Err: Code:1 TimeSeconds:0.130391333} +Sep 5 12:24:10.038 [INFO] [CLI Validation] [Pass-bad-semver-with-no-v] Ending testcase +Sep 5 12:24:10.038 [INFO] [CLI Validation] [Pass-bad-semver-starting-with-v] Starting testcase +Sep 5 12:24:10.038 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable Pass-bad-semver-with-no-v.result.timeseconds: 0.130391333 +Sep 5 12:24:10.038 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable __Len__: 8 +Sep 5 12:24:10.038 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable venom.outputdir: +Sep 5 12:24:10.038 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable venom.timestamp: 1693938241 +Sep 5 12:24:10.038 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable venom.datetime: 2023-09-05T12:24:01-06:00 +Sep 5 12:24:10.038 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:24:10.038 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable Pass-bad-semver-with-no-v.result.__len__: 7 +Sep 5 12:24:10.038 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:24:10.038 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable venom.testsuite.filepath: tests/03-cli-validation.yaml +Sep 5 12:24:10.038 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable venom.libdir: +Sep 5 12:24:10.038 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable Pass-bad-semver-with-no-v.__type__: Result +Sep 5 12:24:10.038 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable venom.testsuite.name: CLI Validation +Sep 5 12:24:10.038 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable venom.testcase: Pass-bad-semver-starting-with-v +Sep 5 12:24:10.038 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable Pass-bad-semver-with-no-v.result.systemoutjson: +Sep 5 12:24:10.038 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable Pass-bad-semver-with-no-v.result.systemerrjson: +Sep 5 12:24:10.038 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable Pass-bad-semver-with-no-v.result.err: +Sep 5 12:24:10.038 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable Pass-bad-semver-with-no-v.result.code: 1 +Sep 5 12:24:10.038 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable __Type__: Map +Sep 5 12:24:10.038 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable venom.testsuite: CLI Validation +Sep 5 12:24:10.038 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable venom.testsuite.shortName: 03-cli-validation +Sep 5 12:24:10.038 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable venom.testsuite.filename: 03-cli-validation.yaml +Sep 5 12:24:10.038 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable Pass-bad-semver-with-no-v.result.systemout: +Sep 5 12:24:10.038 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] Running testcase with variable Pass-bad-semver-with-no-v.result.systemerr: Error: you must use valid semver for all target versions with a leading 'v' - got foo 1.0.0 +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:10.037390 91435 root.go:471] you must use valid semver for all target versions with a leading 'v' - got foo 1.0.0 +Sep 5 12:24:10.038 [INFO] [CLI Validation] [Pass-bad-semver-starting-with-v] Step #0 content is: {"assertions":["result.code ShouldEqual 1","result.systemerr ShouldContainSubstring \"you must use valid semver for all target versions with a leading 'v' - got foo vfoo\""],"script":"pluto detect-files -d assets/deprecated116 --target-versions foo=vfoo"} +Sep 5 12:24:10.038 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-724327704 +Sep 5 12:24:10.038 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-724327704' +Sep 5 12:24:10.154 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] Error: you must use valid semver for all target versions with a leading 'v' - got foo vfoo + +Sep 5 12:24:10.154 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] Usage: + +Sep 5 12:24:10.155 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] pluto detect-files [flags] + +Sep 5 12:24:10.155 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] + +Sep 5 12:24:10.155 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] Flags: + +Sep 5 12:24:10.155 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] -d, --directory string The directory to scan. If blank, defaults to current working dir. + +Sep 5 12:24:10.155 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] -h, --help help for detect-files + +Sep 5 12:24:10.155 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] + +Sep 5 12:24:10.155 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] Global Flags: + +Sep 5 12:24:10.155 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + +Sep 5 12:24:10.155 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + +Sep 5 12:24:10.155 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] --components strings A list of components to run checks for. If nil, will check for all found in versions. + +Sep 5 12:24:10.155 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + +Sep 5 12:24:10.155 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + +Sep 5 12:24:10.155 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + +Sep 5 12:24:10.155 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] --no-footer Disable footer output + +Sep 5 12:24:10.155 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + +Sep 5 12:24:10.155 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + +Sep 5 12:24:10.155 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + +Sep 5 12:24:10.155 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + +Sep 5 12:24:10.155 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] -v, --v Level number for the log level verbosity + +Sep 5 12:24:10.155 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] + +Sep 5 12:24:10.155 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] E0905 12:24:10.154991 91573 root.go:471] you must use valid semver for all target versions with a leading 'v' - got foo vfoo + +Sep 5 12:24:10.155 [DEBU] [CLI Validation] [Pass-bad-semver-starting-with-v] [exec] result of runTestStepExecutor: {Systemout: SystemoutJSON: Systemerr:Error: you must use valid semver for all target versions with a leading 'v' - got foo vfoo +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:10.154991 91573 root.go:471] you must use valid semver for all target versions with a leading 'v' - got foo vfoo SystemerrJSON: Err: Code:1 TimeSeconds:0.116887792} +Sep 5 12:24:10.155 [INFO] [CLI Validation] [Pass-bad-semver-starting-with-v] Ending testcase +Sep 5 12:24:10.155 [INFO] [CLI Validation] [list-versions-ojson] Starting testcase +Sep 5 12:24:10.155 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable __Type__: Map +Sep 5 12:24:10.155 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemoutjson: +Sep 5 12:24:10.155 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable venom.testsuite: CLI Validation +Sep 5 12:24:10.155 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable venom.testsuite.filepath: tests/03-cli-validation.yaml +Sep 5 12:24:10.155 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable venom.datetime: 2023-09-05T12:24:01-06:00 +Sep 5 12:24:10.155 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable Pass-bad-semver-with-no-v.result.systemoutjson: +Sep 5 12:24:10.155 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable Pass-bad-semver-with-no-v.result.code: 1 +Sep 5 12:24:10.155 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable venom.libdir: +Sep 5 12:24:10.155 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable __Len__: 8 +Sep 5 12:24:10.155 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable venom.testcase: list-versions-ojson +Sep 5 12:24:10.155 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable venom.testsuite.shortName: 03-cli-validation +Sep 5 12:24:10.155 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable Pass-bad-semver-starting-with-v.result.code: 1 +Sep 5 12:24:10.155 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable venom.outputdir: +Sep 5 12:24:10.155 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable Pass-bad-semver-with-no-v.result.timeseconds: 0.130391333 +Sep 5 12:24:10.155 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable Pass-bad-semver-with-no-v.result.systemout: +Sep 5 12:24:10.155 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemerr: Error: you must use valid semver for all target versions with a leading 'v' - got foo vfoo +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:10.154991 91573 root.go:471] you must use valid semver for all target versions with a leading 'v' - got foo vfoo +Sep 5 12:24:10.155 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemout: +Sep 5 12:24:10.155 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable Pass-bad-semver-with-no-v.result.systemerr: Error: you must use valid semver for all target versions with a leading 'v' - got foo 1.0.0 +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:10.037390 91435 root.go:471] you must use valid semver for all target versions with a leading 'v' - got foo 1.0.0 +Sep 5 12:24:10.155 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemerrjson: +Sep 5 12:24:10.155 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable venom.testsuite.filename: 03-cli-validation.yaml +Sep 5 12:24:10.155 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:24:10.155 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable Pass-bad-semver-starting-with-v.result.timeseconds: 0.116887792 +Sep 5 12:24:10.155 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable Pass-bad-semver-with-no-v.__type__: Result +Sep 5 12:24:10.155 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable Pass-bad-semver-starting-with-v.__type__: Result +Sep 5 12:24:10.155 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable Pass-bad-semver-starting-with-v.result.err: +Sep 5 12:24:10.155 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable Pass-bad-semver-with-no-v.result.systemerrjson: +Sep 5 12:24:10.155 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable venom.timestamp: 1693938241 +Sep 5 12:24:10.155 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable Pass-bad-semver-with-no-v.result.__len__: 7 +Sep 5 12:24:10.155 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable venom.testsuite.name: CLI Validation +Sep 5 12:24:10.155 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable Pass-bad-semver-starting-with-v.result.__len__: 7 +Sep 5 12:24:10.155 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable Pass-bad-semver-with-no-v.result.err: +Sep 5 12:24:10.155 [DEBU] [CLI Validation] [list-versions-ojson] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:24:10.155 [INFO] [CLI Validation] [list-versions-ojson] Step #0 content is: {"assertions":["result.code ShouldEqual 0"],"script":"pluto list-versions"} +Sep 5 12:24:10.157 [DEBU] [CLI Validation] [list-versions-ojson] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-3189333690 +Sep 5 12:24:10.157 [DEBU] [CLI Validation] [list-versions-ojson] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-3189333690' +Sep 5 12:24:10.269 [DEBU] [CLI Validation] [list-versions-ojson] [exec] KIND NAME DEPRECATED IN REMOVED IN REPLACEMENT REPL AVAIL IN COMPONENT + +Sep 5 12:24:10.269 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Deployment extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s + +Sep 5 12:24:10.269 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Deployment apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s + +Sep 5 12:24:10.269 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Deployment apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s + +Sep 5 12:24:10.269 [DEBU] [CLI Validation] [list-versions-ojson] [exec] StatefulSet apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s + +Sep 5 12:24:10.269 [DEBU] [CLI Validation] [list-versions-ojson] [exec] StatefulSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s + +Sep 5 12:24:10.269 [DEBU] [CLI Validation] [list-versions-ojson] [exec] NetworkPolicy extensions/v1beta1 v1.9.0 v1.16.0 networking.k8s.io/v1 v1.8.0 k8s + +Sep 5 12:24:10.269 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Ingress extensions/v1beta1 v1.14.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s + +Sep 5 12:24:10.269 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Ingress networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s + +Sep 5 12:24:10.269 [DEBU] [CLI Validation] [list-versions-ojson] [exec] IngressClass networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s + +Sep 5 12:24:10.269 [DEBU] [CLI Validation] [list-versions-ojson] [exec] DaemonSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s + +Sep 5 12:24:10.269 [DEBU] [CLI Validation] [list-versions-ojson] [exec] DaemonSet extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s + +Sep 5 12:24:10.269 [DEBU] [CLI Validation] [list-versions-ojson] [exec] PodSecurityPolicy extensions/v1beta1 v1.10.0 v1.16.0 policy/v1beta1 v1.10.0 k8s + +Sep 5 12:24:10.269 [DEBU] [CLI Validation] [list-versions-ojson] [exec] PodSecurityPolicy policy/v1beta1 v1.21.0 v1.25.0 n/a n/a k8s + +Sep 5 12:24:10.269 [DEBU] [CLI Validation] [list-versions-ojson] [exec] ReplicaSet extensions/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s + +Sep 5 12:24:10.269 [DEBU] [CLI Validation] [list-versions-ojson] [exec] ReplicaSet apps/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s + +Sep 5 12:24:10.269 [DEBU] [CLI Validation] [list-versions-ojson] [exec] ReplicaSet apps/v1beta2 n/a v1.16.0 apps/v1 v1.9.0 k8s + +Sep 5 12:24:10.269 [DEBU] [CLI Validation] [list-versions-ojson] [exec] PriorityClass scheduling.k8s.io/v1beta1 v1.14.0 v1.22.0 scheduling.k8s.io/v1 v1.14.0 k8s + +Sep 5 12:24:10.269 [DEBU] [CLI Validation] [list-versions-ojson] [exec] PriorityClass scheduling.k8s.io/v1alpha1 v1.14.0 v1.17.0 scheduling.k8s.io/v1 n/a k8s + +Sep 5 12:24:10.269 [DEBU] [CLI Validation] [list-versions-ojson] [exec] CustomResourceDefinition apiextensions.k8s.io/v1beta1 v1.16.0 v1.22.0 apiextensions.k8s.io/v1 v1.16.0 k8s + +Sep 5 12:24:10.269 [DEBU] [CLI Validation] [list-versions-ojson] [exec] MutatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s + +Sep 5 12:24:10.269 [DEBU] [CLI Validation] [list-versions-ojson] [exec] ValidatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s + +Sep 5 12:24:10.269 [DEBU] [CLI Validation] [list-versions-ojson] [exec] ClusterRoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s + +Sep 5 12:24:10.269 [DEBU] [CLI Validation] [list-versions-ojson] [exec] ClusterRole rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s + +Sep 5 12:24:10.269 [DEBU] [CLI Validation] [list-versions-ojson] [exec] ClusterRoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:24:10.269 [DEBU] [CLI Validation] [list-versions-ojson] [exec] ClusterRoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:24:10.269 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Role rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s + +Sep 5 12:24:10.269 [DEBU] [CLI Validation] [list-versions-ojson] [exec] RoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s + +Sep 5 12:24:10.269 [DEBU] [CLI Validation] [list-versions-ojson] [exec] RoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:24:10.269 [DEBU] [CLI Validation] [list-versions-ojson] [exec] RoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:24:10.269 [DEBU] [CLI Validation] [list-versions-ojson] [exec] ClusterRoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:24:10.269 [DEBU] [CLI Validation] [list-versions-ojson] [exec] ClusterRole rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:24:10.269 [DEBU] [CLI Validation] [list-versions-ojson] [exec] ClusterRoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:24:10.269 [DEBU] [CLI Validation] [list-versions-ojson] [exec] ClusterRoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:24:10.269 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Role rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:24:10.269 [DEBU] [CLI Validation] [list-versions-ojson] [exec] RoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:24:10.269 [DEBU] [CLI Validation] [list-versions-ojson] [exec] RoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:24:10.269 [DEBU] [CLI Validation] [list-versions-ojson] [exec] RoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:24:10.269 [DEBU] [CLI Validation] [list-versions-ojson] [exec] RuntimeClass node.k8s.io/v1beta1 v1.22.0 v1.25.0 node.k8s.io/v1 v1.20.0 k8s + +Sep 5 12:24:10.269 [DEBU] [CLI Validation] [list-versions-ojson] [exec] PodDisruptionBudget policy/v1beta1 v1.21.0 v1.25.0 policy/v1 v1.21.0 k8s + +Sep 5 12:24:10.269 [DEBU] [CLI Validation] [list-versions-ojson] [exec] PodDisruptionBudgetList policy/v1beta1 v1.21.0 v1.25.0 policy/v1 n/a k8s + +Sep 5 12:24:10.269 [DEBU] [CLI Validation] [list-versions-ojson] [exec] HorizontalPodAutoscaler autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 v1.23.0 k8s + +Sep 5 12:24:10.269 [DEBU] [CLI Validation] [list-versions-ojson] [exec] HorizontalPodAutoscalerList autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 n/a k8s + +Sep 5 12:24:10.269 [DEBU] [CLI Validation] [list-versions-ojson] [exec] HorizontalPodAutoscaler autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s + +Sep 5 12:24:10.269 [DEBU] [CLI Validation] [list-versions-ojson] [exec] HorizontalPodAutoscalerList autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s + +Sep 5 12:24:10.269 [DEBU] [CLI Validation] [list-versions-ojson] [exec] CronJob batch/v1beta1 v1.21.0 v1.25.0 batch/v1 v1.21.0 k8s + +Sep 5 12:24:10.269 [DEBU] [CLI Validation] [list-versions-ojson] [exec] CronJobList batch/v1beta1 v1.21.0 v1.25.0 batch/v1 n/a k8s + +Sep 5 12:24:10.269 [DEBU] [CLI Validation] [list-versions-ojson] [exec] CSINode storage.k8s.io/v1beta1 v1.17.0 v1.22.0 storage.k8s.io/v1 v1.17.0 k8s + +Sep 5 12:24:10.269 [DEBU] [CLI Validation] [list-versions-ojson] [exec] CSIDriver storage.k8s.io/v1beta1 v1.19.0 v1.22.0 storage.k8s.io/v1 v1.19.0 k8s + +Sep 5 12:24:10.269 [DEBU] [CLI Validation] [list-versions-ojson] [exec] CSIStorageCapacity storage.k8s.io/v1beta1 v1.24.0 v1.27.0 storage.k8s.io/v1 v1.24.0 k8s + +Sep 5 12:24:10.269 [DEBU] [CLI Validation] [list-versions-ojson] [exec] StorageClass storage.k8s.io/v1beta1 v1.6.0 v1.22.0 storage.k8s.io/v1 v1.6.0 k8s + +Sep 5 12:24:10.269 [DEBU] [CLI Validation] [list-versions-ojson] [exec] VolumeAttachment storage.k8s.io/v1beta1 v1.13.0 v1.22.0 storage.k8s.io/v1 v1.13.0 k8s + +Sep 5 12:24:10.269 [DEBU] [CLI Validation] [list-versions-ojson] [exec] APIService apiregistration.k8s.io/v1beta1 v1.10.0 v1.22.0 apiregistration.k8s.io/v1 v1.10.0 k8s + +Sep 5 12:24:10.269 [DEBU] [CLI Validation] [list-versions-ojson] [exec] TokenReview authentication.k8s.io/v1beta1 v1.6.0 v1.22.0 authentication.k8s.io/v1 v1.6.0 k8s + +Sep 5 12:24:10.269 [DEBU] [CLI Validation] [list-versions-ojson] [exec] CertificateSigningRequest certificates.k8s.io/v1beta1 v1.19.0 v1.22.0 certificates.k8s.io/v1 v1.19.0 k8s + +Sep 5 12:24:10.269 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Lease coordination.k8s.io/v1beta1 v1.14.0 v1.22.0 coordination.k8s.io/v1 v1.14.0 k8s + +Sep 5 12:24:10.269 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Event events.k8s.io/v1beta1 v1.19.0 v1.25.0 events.k8s.io/v1 v1.19.0 k8s + +Sep 5 12:24:10.269 [DEBU] [CLI Validation] [list-versions-ojson] [exec] EndpointSlice discovery.k8s.io/v1beta1 v1.21.0 v1.25.0 discovery.k8s.io/v1 v1.21.0 k8s + +Sep 5 12:24:10.269 [DEBU] [CLI Validation] [list-versions-ojson] [exec] FlowControl flowcontrol.apiserver.k8s.io/v1beta1 v1.23.0 v1.26.0 flowcontrol.apiserver.k8s.io/v1beta2 n/a k8s + +Sep 5 12:24:10.269 [DEBU] [CLI Validation] [list-versions-ojson] [exec] AuthorizationPolicies rbac.istio.io v1.4.0 v1.4.0 security.istio.io/v1beta1 n/a istio + +Sep 5 12:24:10.269 [DEBU] [CLI Validation] [list-versions-ojson] [exec] authentication.istio.io/v1alpha1 v1.5.0 v1.6.0 security.istio.io/v1beta1 n/a istio + +Sep 5 12:24:10.269 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Certificate certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager + +Sep 5 12:24:10.270 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Issuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager + +Sep 5 12:24:10.270 [DEBU] [CLI Validation] [list-versions-ojson] [exec] ClusterIssuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager + +Sep 5 12:24:10.270 [DEBU] [CLI Validation] [list-versions-ojson] [exec] CertificateRequest certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager + +Sep 5 12:24:10.270 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Order certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager + +Sep 5 12:24:10.270 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Challenge certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager + +Sep 5 12:24:10.270 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Certificate cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:10.270 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Certificate cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:10.270 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Certificate cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:10.270 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Issuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:10.270 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Issuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:10.270 [DEBU] [CLI Validation] [list-versions-ojson] [exec] + +Sep 5 12:24:10.270 [DEBU] [CLI Validation] [list-versions-ojson] [exec] + +Sep 5 12:24:10.270 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Want more? Automate Pluto for free with Fairwinds Insights! + +Sep 5 12:24:10.270 [DEBU] [CLI Validation] [list-versions-ojson] [exec] 🚀 https://fairwinds.com/insights-signup/pluto 🚀 + +Sep 5 12:24:10.270 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Issuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:10.270 [DEBU] [CLI Validation] [list-versions-ojson] [exec] ClusterIssuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:10.270 [DEBU] [CLI Validation] [list-versions-ojson] [exec] ClusterIssuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:10.270 [DEBU] [CLI Validation] [list-versions-ojson] [exec] ClusterIssuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:10.270 [DEBU] [CLI Validation] [list-versions-ojson] [exec] CertificateRequest cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:10.270 [DEBU] [CLI Validation] [list-versions-ojson] [exec] CertificateRequest cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:10.270 [DEBU] [CLI Validation] [list-versions-ojson] [exec] CertificateRequest cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:10.270 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Order acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:10.270 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Order acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:10.270 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Order acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:10.270 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Challenge acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:10.270 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Challenge acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:10.270 [DEBU] [CLI Validation] [list-versions-ojson] [exec] Challenge acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:10.270 [DEBU] [CLI Validation] [list-versions-ojson] [exec] FlowSchema flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s + +Sep 5 12:24:10.271 [DEBU] [CLI Validation] [list-versions-ojson] [exec] PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s + +Sep 5 12:24:10.271 [DEBU] [CLI Validation] [list-versions-ojson] [exec] PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s + +Sep 5 12:24:10.271 [DEBU] [CLI Validation] [list-versions-ojson] [exec] FLowSchema flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s + +Sep 5 12:24:10.271 [DEBU] [CLI Validation] [list-versions-ojson] [exec] result of runTestStepExecutor: {Systemout:KIND NAME DEPRECATED IN REMOVED IN REPLACEMENT REPL AVAIL IN COMPONENT +Deployment extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +NetworkPolicy extensions/v1beta1 v1.9.0 v1.16.0 networking.k8s.io/v1 v1.8.0 k8s +Ingress extensions/v1beta1 v1.14.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +Ingress networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +IngressClass networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +DaemonSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +DaemonSet extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +PodSecurityPolicy extensions/v1beta1 v1.10.0 v1.16.0 policy/v1beta1 v1.10.0 k8s +PodSecurityPolicy policy/v1beta1 v1.21.0 v1.25.0 n/a n/a k8s +ReplicaSet extensions/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta2 n/a v1.16.0 apps/v1 v1.9.0 k8s +PriorityClass scheduling.k8s.io/v1beta1 v1.14.0 v1.22.0 scheduling.k8s.io/v1 v1.14.0 k8s +PriorityClass scheduling.k8s.io/v1alpha1 v1.14.0 v1.17.0 scheduling.k8s.io/v1 n/a k8s +CustomResourceDefinition apiextensions.k8s.io/v1beta1 v1.16.0 v1.22.0 apiextensions.k8s.io/v1 v1.16.0 k8s +MutatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ValidatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRole rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRole rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RuntimeClass node.k8s.io/v1beta1 v1.22.0 v1.25.0 node.k8s.io/v1 v1.20.0 k8s +PodDisruptionBudget policy/v1beta1 v1.21.0 v1.25.0 policy/v1 v1.21.0 k8s +PodDisruptionBudgetList policy/v1beta1 v1.21.0 v1.25.0 policy/v1 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 v1.23.0 k8s +HorizontalPodAutoscalerList autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscalerList autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +CronJob batch/v1beta1 v1.21.0 v1.25.0 batch/v1 v1.21.0 k8s +CronJobList batch/v1beta1 v1.21.0 v1.25.0 batch/v1 n/a k8s +CSINode storage.k8s.io/v1beta1 v1.17.0 v1.22.0 storage.k8s.io/v1 v1.17.0 k8s +CSIDriver storage.k8s.io/v1beta1 v1.19.0 v1.22.0 storage.k8s.io/v1 v1.19.0 k8s +CSIStorageCapacity storage.k8s.io/v1beta1 v1.24.0 v1.27.0 storage.k8s.io/v1 v1.24.0 k8s +StorageClass storage.k8s.io/v1beta1 v1.6.0 v1.22.0 storage.k8s.io/v1 v1.6.0 k8s +VolumeAttachment storage.k8s.io/v1beta1 v1.13.0 v1.22.0 storage.k8s.io/v1 v1.13.0 k8s +APIService apiregistration.k8s.io/v1beta1 v1.10.0 v1.22.0 apiregistration.k8s.io/v1 v1.10.0 k8s +TokenReview authentication.k8s.io/v1beta1 v1.6.0 v1.22.0 authentication.k8s.io/v1 v1.6.0 k8s +CertificateSigningRequest certificates.k8s.io/v1beta1 v1.19.0 v1.22.0 certificates.k8s.io/v1 v1.19.0 k8s +Lease coordination.k8s.io/v1beta1 v1.14.0 v1.22.0 coordination.k8s.io/v1 v1.14.0 k8s +Event events.k8s.io/v1beta1 v1.19.0 v1.25.0 events.k8s.io/v1 v1.19.0 k8s +EndpointSlice discovery.k8s.io/v1beta1 v1.21.0 v1.25.0 discovery.k8s.io/v1 v1.21.0 k8s +FlowControl flowcontrol.apiserver.k8s.io/v1beta1 v1.23.0 v1.26.0 flowcontrol.apiserver.k8s.io/v1beta2 n/a k8s +AuthorizationPolicies rbac.istio.io v1.4.0 v1.4.0 security.istio.io/v1beta1 n/a istio + authentication.istio.io/v1alpha1 v1.5.0 v1.6.0 security.istio.io/v1beta1 n/a istio +Certificate certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Issuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +ClusterIssuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +CertificateRequest certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Order certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Challenge certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Certificate cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +FlowSchema flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +FLowSchema flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s SystemoutJSON: Systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 SystemerrJSON: Err: Code:0 TimeSeconds:0.113857417} +Sep 5 12:24:10.271 [INFO] [CLI Validation] [list-versions-ojson] Ending testcase +Sep 5 12:24:10.271 [INFO] [CLI Validation] [list-versions-additional-file-duplicate] Starting testcase +Sep 5 12:24:10.271 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable list-versions-ojson.result.timeseconds: 0.113857417 +Sep 5 12:24:10.271 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable Pass-bad-semver-starting-with-v.__type__: Result +Sep 5 12:24:10.271 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable list-versions-ojson.__type__: Result +Sep 5 12:24:10.271 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemout: +Sep 5 12:24:10.271 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable venom.testsuite: CLI Validation +Sep 5 12:24:10.271 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable venom.timestamp: 1693938241 +Sep 5 12:24:10.271 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable venom.testcase: list-versions-additional-file-duplicate +Sep 5 12:24:10.271 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemoutjson: +Sep 5 12:24:10.271 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable venom.testsuite.name: CLI Validation +Sep 5 12:24:10.271 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable venom.outputdir: +Sep 5 12:24:10.271 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable list-versions-ojson.result.err: +Sep 5 12:24:10.271 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable Pass-bad-semver-with-no-v.result.__len__: 7 +Sep 5 12:24:10.271 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable Pass-bad-semver-with-no-v.result.code: 1 +Sep 5 12:24:10.271 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable Pass-bad-semver-with-no-v.result.systemerr: Error: you must use valid semver for all target versions with a leading 'v' - got foo 1.0.0 +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:10.037390 91435 root.go:471] you must use valid semver for all target versions with a leading 'v' - got foo 1.0.0 +Sep 5 12:24:10.271 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable Pass-bad-semver-starting-with-v.result.timeseconds: 0.116887792 +Sep 5 12:24:10.271 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable venom.testsuite.filename: 03-cli-validation.yaml +Sep 5 12:24:10.271 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:24:10.271 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable Pass-bad-semver-with-no-v.result.systemoutjson: +Sep 5 12:24:10.271 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable list-versions-ojson.result.systemout: KIND NAME DEPRECATED IN REMOVED IN REPLACEMENT REPL AVAIL IN COMPONENT +Deployment extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +NetworkPolicy extensions/v1beta1 v1.9.0 v1.16.0 networking.k8s.io/v1 v1.8.0 k8s +Ingress extensions/v1beta1 v1.14.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +Ingress networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +IngressClass networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +DaemonSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +DaemonSet extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +PodSecurityPolicy extensions/v1beta1 v1.10.0 v1.16.0 policy/v1beta1 v1.10.0 k8s +PodSecurityPolicy policy/v1beta1 v1.21.0 v1.25.0 n/a n/a k8s +ReplicaSet extensions/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta2 n/a v1.16.0 apps/v1 v1.9.0 k8s +PriorityClass scheduling.k8s.io/v1beta1 v1.14.0 v1.22.0 scheduling.k8s.io/v1 v1.14.0 k8s +PriorityClass scheduling.k8s.io/v1alpha1 v1.14.0 v1.17.0 scheduling.k8s.io/v1 n/a k8s +CustomResourceDefinition apiextensions.k8s.io/v1beta1 v1.16.0 v1.22.0 apiextensions.k8s.io/v1 v1.16.0 k8s +MutatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ValidatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRole rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRole rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RuntimeClass node.k8s.io/v1beta1 v1.22.0 v1.25.0 node.k8s.io/v1 v1.20.0 k8s +PodDisruptionBudget policy/v1beta1 v1.21.0 v1.25.0 policy/v1 v1.21.0 k8s +PodDisruptionBudgetList policy/v1beta1 v1.21.0 v1.25.0 policy/v1 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 v1.23.0 k8s +HorizontalPodAutoscalerList autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscalerList autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +CronJob batch/v1beta1 v1.21.0 v1.25.0 batch/v1 v1.21.0 k8s +CronJobList batch/v1beta1 v1.21.0 v1.25.0 batch/v1 n/a k8s +CSINode storage.k8s.io/v1beta1 v1.17.0 v1.22.0 storage.k8s.io/v1 v1.17.0 k8s +CSIDriver storage.k8s.io/v1beta1 v1.19.0 v1.22.0 storage.k8s.io/v1 v1.19.0 k8s +CSIStorageCapacity storage.k8s.io/v1beta1 v1.24.0 v1.27.0 storage.k8s.io/v1 v1.24.0 k8s +StorageClass storage.k8s.io/v1beta1 v1.6.0 v1.22.0 storage.k8s.io/v1 v1.6.0 k8s +VolumeAttachment storage.k8s.io/v1beta1 v1.13.0 v1.22.0 storage.k8s.io/v1 v1.13.0 k8s +APIService apiregistration.k8s.io/v1beta1 v1.10.0 v1.22.0 apiregistration.k8s.io/v1 v1.10.0 k8s +TokenReview authentication.k8s.io/v1beta1 v1.6.0 v1.22.0 authentication.k8s.io/v1 v1.6.0 k8s +CertificateSigningRequest certificates.k8s.io/v1beta1 v1.19.0 v1.22.0 certificates.k8s.io/v1 v1.19.0 k8s +Lease coordination.k8s.io/v1beta1 v1.14.0 v1.22.0 coordination.k8s.io/v1 v1.14.0 k8s +Event events.k8s.io/v1beta1 v1.19.0 v1.25.0 events.k8s.io/v1 v1.19.0 k8s +EndpointSlice discovery.k8s.io/v1beta1 v1.21.0 v1.25.0 discovery.k8s.io/v1 v1.21.0 k8s +FlowControl flowcontrol.apiserver.k8s.io/v1beta1 v1.23.0 v1.26.0 flowcontrol.apiserver.k8s.io/v1beta2 n/a k8s +AuthorizationPolicies rbac.istio.io v1.4.0 v1.4.0 security.istio.io/v1beta1 n/a istio + authentication.istio.io/v1alpha1 v1.5.0 v1.6.0 security.istio.io/v1beta1 n/a istio +Certificate certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Issuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +ClusterIssuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +CertificateRequest certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Order certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Challenge certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Certificate cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +FlowSchema flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +FLowSchema flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +Sep 5 12:24:10.271 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemerrjson: +Sep 5 12:24:10.271 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable list-versions-ojson.result.__len__: 7 +Sep 5 12:24:10.271 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable venom.datetime: 2023-09-05T12:24:01-06:00 +Sep 5 12:24:10.271 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable Pass-bad-semver-starting-with-v.result.err: +Sep 5 12:24:10.271 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable Pass-bad-semver-with-no-v.result.systemout: +Sep 5 12:24:10.271 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable Pass-bad-semver-starting-with-v.result.code: 1 +Sep 5 12:24:10.271 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable list-versions-ojson.result.systemoutjson: +Sep 5 12:24:10.271 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable Pass-bad-semver-starting-with-v.result.__len__: 7 +Sep 5 12:24:10.271 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemerr: Error: you must use valid semver for all target versions with a leading 'v' - got foo vfoo +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:10.154991 91573 root.go:471] you must use valid semver for all target versions with a leading 'v' - got foo vfoo +Sep 5 12:24:10.271 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable venom.testsuite.shortName: 03-cli-validation +Sep 5 12:24:10.271 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable __Type__: Map +Sep 5 12:24:10.271 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable __Len__: 8 +Sep 5 12:24:10.271 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable list-versions-ojson.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:10.271 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable venom.libdir: +Sep 5 12:24:10.271 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:24:10.271 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable venom.testsuite.filepath: tests/03-cli-validation.yaml +Sep 5 12:24:10.271 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable Pass-bad-semver-with-no-v.result.systemerrjson: +Sep 5 12:24:10.271 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable list-versions-ojson.result.code: 0 +Sep 5 12:24:10.271 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable Pass-bad-semver-with-no-v.result.timeseconds: 0.130391333 +Sep 5 12:24:10.271 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable Pass-bad-semver-with-no-v.result.err: +Sep 5 12:24:10.271 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable list-versions-ojson.result.systemerrjson: +Sep 5 12:24:10.271 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] Running testcase with variable Pass-bad-semver-with-no-v.__type__: Result +Sep 5 12:24:10.271 [INFO] [CLI Validation] [list-versions-additional-file-duplicate] Step #0 content is: {"assertions":["result.code ShouldEqual 1","result.systemerr ShouldContainSubstring 'duplicate cannot be added to defaults'","result.systemerr ShouldContainSubstring 'extensions/v1beta1'"],"script":"pluto list-versions -f assets/additional-versions/duplicate.yaml"} +Sep 5 12:24:10.271 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-3474289734 +Sep 5 12:24:10.271 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-3474289734' +Sep 5 12:24:10.383 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] Error: duplicate cannot be added to defaults: Deployment extensions/v1beta1 + +Sep 5 12:24:10.383 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] Usage: + +Sep 5 12:24:10.383 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] pluto list-versions [flags] + +Sep 5 12:24:10.383 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] + +Sep 5 12:24:10.383 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] Flags: + +Sep 5 12:24:10.383 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] -h, --help help for list-versions + +Sep 5 12:24:10.383 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] + +Sep 5 12:24:10.383 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] Global Flags: + +Sep 5 12:24:10.383 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + +Sep 5 12:24:10.383 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + +Sep 5 12:24:10.383 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] --components strings A list of components to run checks for. If nil, will check for all found in versions. + +Sep 5 12:24:10.383 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + +Sep 5 12:24:10.383 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + +Sep 5 12:24:10.383 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + +Sep 5 12:24:10.383 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] --no-footer Disable footer output + +Sep 5 12:24:10.383 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + +Sep 5 12:24:10.383 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + +Sep 5 12:24:10.383 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + +Sep 5 12:24:10.383 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + +Sep 5 12:24:10.383 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] -v, --v Level number for the log level verbosity + +Sep 5 12:24:10.383 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] + +Sep 5 12:24:10.383 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] E0905 12:24:10.383613 91849 root.go:471] duplicate cannot be added to defaults: Deployment extensions/v1beta1 + +Sep 5 12:24:10.384 [DEBU] [CLI Validation] [list-versions-additional-file-duplicate] [exec] result of runTestStepExecutor: {Systemout: SystemoutJSON: Systemerr:Error: duplicate cannot be added to defaults: Deployment extensions/v1beta1 +Usage: + pluto list-versions [flags] + +Flags: + -h, --help help for list-versions + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:10.383613 91849 root.go:471] duplicate cannot be added to defaults: Deployment extensions/v1beta1 SystemerrJSON: Err: Code:1 TimeSeconds:0.112189708} +Sep 5 12:24:10.384 [INFO] [CLI Validation] [list-versions-additional-file-duplicate] Ending testcase +Sep 5 12:24:10.384 [INFO] [CLI Validation] [list-versions-additional-file] Starting testcase +Sep 5 12:24:10.384 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemerr: Error: you must use valid semver for all target versions with a leading 'v' - got foo vfoo +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:10.154991 91573 root.go:471] you must use valid semver for all target versions with a leading 'v' - got foo vfoo +Sep 5 12:24:10.384 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable Pass-bad-semver-with-no-v.__type__: Result +Sep 5 12:24:10.384 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable list-versions-additional-file-duplicate.result.systemerrjson: +Sep 5 12:24:10.384 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable list-versions-ojson.result.systemout: KIND NAME DEPRECATED IN REMOVED IN REPLACEMENT REPL AVAIL IN COMPONENT +Deployment extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +NetworkPolicy extensions/v1beta1 v1.9.0 v1.16.0 networking.k8s.io/v1 v1.8.0 k8s +Ingress extensions/v1beta1 v1.14.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +Ingress networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +IngressClass networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +DaemonSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +DaemonSet extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +PodSecurityPolicy extensions/v1beta1 v1.10.0 v1.16.0 policy/v1beta1 v1.10.0 k8s +PodSecurityPolicy policy/v1beta1 v1.21.0 v1.25.0 n/a n/a k8s +ReplicaSet extensions/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta2 n/a v1.16.0 apps/v1 v1.9.0 k8s +PriorityClass scheduling.k8s.io/v1beta1 v1.14.0 v1.22.0 scheduling.k8s.io/v1 v1.14.0 k8s +PriorityClass scheduling.k8s.io/v1alpha1 v1.14.0 v1.17.0 scheduling.k8s.io/v1 n/a k8s +CustomResourceDefinition apiextensions.k8s.io/v1beta1 v1.16.0 v1.22.0 apiextensions.k8s.io/v1 v1.16.0 k8s +MutatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ValidatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRole rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRole rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RuntimeClass node.k8s.io/v1beta1 v1.22.0 v1.25.0 node.k8s.io/v1 v1.20.0 k8s +PodDisruptionBudget policy/v1beta1 v1.21.0 v1.25.0 policy/v1 v1.21.0 k8s +PodDisruptionBudgetList policy/v1beta1 v1.21.0 v1.25.0 policy/v1 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 v1.23.0 k8s +HorizontalPodAutoscalerList autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscalerList autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +CronJob batch/v1beta1 v1.21.0 v1.25.0 batch/v1 v1.21.0 k8s +CronJobList batch/v1beta1 v1.21.0 v1.25.0 batch/v1 n/a k8s +CSINode storage.k8s.io/v1beta1 v1.17.0 v1.22.0 storage.k8s.io/v1 v1.17.0 k8s +CSIDriver storage.k8s.io/v1beta1 v1.19.0 v1.22.0 storage.k8s.io/v1 v1.19.0 k8s +CSIStorageCapacity storage.k8s.io/v1beta1 v1.24.0 v1.27.0 storage.k8s.io/v1 v1.24.0 k8s +StorageClass storage.k8s.io/v1beta1 v1.6.0 v1.22.0 storage.k8s.io/v1 v1.6.0 k8s +VolumeAttachment storage.k8s.io/v1beta1 v1.13.0 v1.22.0 storage.k8s.io/v1 v1.13.0 k8s +APIService apiregistration.k8s.io/v1beta1 v1.10.0 v1.22.0 apiregistration.k8s.io/v1 v1.10.0 k8s +TokenReview authentication.k8s.io/v1beta1 v1.6.0 v1.22.0 authentication.k8s.io/v1 v1.6.0 k8s +CertificateSigningRequest certificates.k8s.io/v1beta1 v1.19.0 v1.22.0 certificates.k8s.io/v1 v1.19.0 k8s +Lease coordination.k8s.io/v1beta1 v1.14.0 v1.22.0 coordination.k8s.io/v1 v1.14.0 k8s +Event events.k8s.io/v1beta1 v1.19.0 v1.25.0 events.k8s.io/v1 v1.19.0 k8s +EndpointSlice discovery.k8s.io/v1beta1 v1.21.0 v1.25.0 discovery.k8s.io/v1 v1.21.0 k8s +FlowControl flowcontrol.apiserver.k8s.io/v1beta1 v1.23.0 v1.26.0 flowcontrol.apiserver.k8s.io/v1beta2 n/a k8s +AuthorizationPolicies rbac.istio.io v1.4.0 v1.4.0 security.istio.io/v1beta1 n/a istio + authentication.istio.io/v1alpha1 v1.5.0 v1.6.0 security.istio.io/v1beta1 n/a istio +Certificate certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Issuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +ClusterIssuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +CertificateRequest certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Order certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Challenge certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Certificate cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +FlowSchema flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +FLowSchema flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +Sep 5 12:24:10.384 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable list-versions-additional-file-duplicate.result.systemerr: Error: duplicate cannot be added to defaults: Deployment extensions/v1beta1 +Usage: + pluto list-versions [flags] + +Flags: + -h, --help help for list-versions + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:10.383613 91849 root.go:471] duplicate cannot be added to defaults: Deployment extensions/v1beta1 +Sep 5 12:24:10.384 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable list-versions-ojson.__type__: Result +Sep 5 12:24:10.384 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable list-versions-ojson.result.code: 0 +Sep 5 12:24:10.384 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable __Len__: 8 +Sep 5 12:24:10.384 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:24:10.384 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable venom.testsuite.filename: 03-cli-validation.yaml +Sep 5 12:24:10.384 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable venom.testcase: list-versions-additional-file +Sep 5 12:24:10.384 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable list-versions-additional-file-duplicate.result.systemoutjson: +Sep 5 12:24:10.384 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable Pass-bad-semver-with-no-v.result.err: +Sep 5 12:24:10.384 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:24:10.384 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemoutjson: +Sep 5 12:24:10.384 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable Pass-bad-semver-with-no-v.result.timeseconds: 0.130391333 +Sep 5 12:24:10.384 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable Pass-bad-semver-starting-with-v.result.err: +Sep 5 12:24:10.384 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable Pass-bad-semver-starting-with-v.result.code: 1 +Sep 5 12:24:10.384 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable venom.outputdir: +Sep 5 12:24:10.384 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable venom.timestamp: 1693938241 +Sep 5 12:24:10.384 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable venom.libdir: +Sep 5 12:24:10.384 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable Pass-bad-semver-with-no-v.result.systemerrjson: +Sep 5 12:24:10.384 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable list-versions-additional-file-duplicate.result.err: +Sep 5 12:24:10.384 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable Pass-bad-semver-with-no-v.result.systemoutjson: +Sep 5 12:24:10.384 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable list-versions-additional-file-duplicate.result.__len__: 7 +Sep 5 12:24:10.384 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable Pass-bad-semver-starting-with-v.result.__len__: 7 +Sep 5 12:24:10.384 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable list-versions-additional-file-duplicate.result.systemout: +Sep 5 12:24:10.384 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable list-versions-additional-file-duplicate.__type__: Result +Sep 5 12:24:10.384 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable Pass-bad-semver-with-no-v.result.systemerr: Error: you must use valid semver for all target versions with a leading 'v' - got foo 1.0.0 +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:10.037390 91435 root.go:471] you must use valid semver for all target versions with a leading 'v' - got foo 1.0.0 +Sep 5 12:24:10.384 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable list-versions-additional-file-duplicate.result.code: 1 +Sep 5 12:24:10.384 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable Pass-bad-semver-starting-with-v.result.timeseconds: 0.116887792 +Sep 5 12:24:10.384 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable Pass-bad-semver-starting-with-v.__type__: Result +Sep 5 12:24:10.384 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable list-versions-ojson.result.__len__: 7 +Sep 5 12:24:10.384 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable __Type__: Map +Sep 5 12:24:10.384 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable venom.datetime: 2023-09-05T12:24:01-06:00 +Sep 5 12:24:10.384 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemout: +Sep 5 12:24:10.384 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable list-versions-ojson.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:10.384 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable list-versions-additional-file-duplicate.result.timeseconds: 0.112189708 +Sep 5 12:24:10.384 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemerrjson: +Sep 5 12:24:10.384 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable list-versions-ojson.result.systemoutjson: +Sep 5 12:24:10.384 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable Pass-bad-semver-with-no-v.result.code: 1 +Sep 5 12:24:10.384 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable venom.testsuite.filepath: tests/03-cli-validation.yaml +Sep 5 12:24:10.384 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable venom.testsuite: CLI Validation +Sep 5 12:24:10.384 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable list-versions-ojson.result.systemerrjson: +Sep 5 12:24:10.384 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable list-versions-ojson.result.timeseconds: 0.113857417 +Sep 5 12:24:10.384 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable Pass-bad-semver-with-no-v.result.__len__: 7 +Sep 5 12:24:10.384 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable Pass-bad-semver-with-no-v.result.systemout: +Sep 5 12:24:10.384 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable venom.testsuite.name: CLI Validation +Sep 5 12:24:10.384 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable venom.testsuite.shortName: 03-cli-validation +Sep 5 12:24:10.384 [DEBU] [CLI Validation] [list-versions-additional-file] Running testcase with variable list-versions-ojson.result.err: +Sep 5 12:24:10.384 [INFO] [CLI Validation] [list-versions-additional-file] Step #0 content is: {"assertions":["result.code ShouldEqual 0","result.systemout ShouldContainSubstring \"AnotherCRD someother/v1beta1 v1.9.0 v1.16.0 apps/v1\""],"script":"pluto list-versions -f assets/additional-versions/new.yaml"} +Sep 5 12:24:10.385 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-575525982 +Sep 5 12:24:10.385 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-575525982' +Sep 5 12:24:10.497 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] KIND NAME DEPRECATED IN REMOVED IN REPLACEMENT REPL AVAIL IN COMPONENT + +Sep 5 12:24:10.497 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Deployment extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s + +Sep 5 12:24:10.497 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Deployment apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s + +Sep 5 12:24:10.497 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Deployment apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s + +Sep 5 12:24:10.497 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] StatefulSet apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s + +Sep 5 12:24:10.497 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] StatefulSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s + +Sep 5 12:24:10.497 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] NetworkPolicy extensions/v1beta1 v1.9.0 v1.16.0 networking.k8s.io/v1 v1.8.0 k8s + +Sep 5 12:24:10.497 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Ingress extensions/v1beta1 v1.14.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s + +Sep 5 12:24:10.497 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Ingress networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s + +Sep 5 12:24:10.497 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] IngressClass networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s + +Sep 5 12:24:10.497 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] DaemonSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s + +Sep 5 12:24:10.497 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] DaemonSet extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s + +Sep 5 12:24:10.497 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] PodSecurityPolicy extensions/v1beta1 v1.10.0 v1.16.0 policy/v1beta1 v1.10.0 k8s + +Sep 5 12:24:10.497 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] PodSecurityPolicy policy/v1beta1 v1.21.0 v1.25.0 n/a n/a k8s + +Sep 5 12:24:10.497 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] ReplicaSet extensions/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s + +Sep 5 12:24:10.497 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] ReplicaSet apps/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s + +Sep 5 12:24:10.497 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] ReplicaSet apps/v1beta2 n/a v1.16.0 apps/v1 v1.9.0 k8s + +Sep 5 12:24:10.497 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] PriorityClass scheduling.k8s.io/v1beta1 v1.14.0 v1.22.0 scheduling.k8s.io/v1 v1.14.0 k8s + +Sep 5 12:24:10.497 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] PriorityClass scheduling.k8s.io/v1alpha1 v1.14.0 v1.17.0 scheduling.k8s.io/v1 n/a k8s + +Sep 5 12:24:10.497 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] CustomResourceDefinition apiextensions.k8s.io/v1beta1 v1.16.0 v1.22.0 apiextensions.k8s.io/v1 v1.16.0 k8s + +Sep 5 12:24:10.497 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] MutatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s + +Sep 5 12:24:10.497 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] ValidatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s + +Sep 5 12:24:10.497 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] ClusterRoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s + +Sep 5 12:24:10.497 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] ClusterRole rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s + +Sep 5 12:24:10.497 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] ClusterRoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:24:10.497 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] ClusterRoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:24:10.497 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Role rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s + +Sep 5 12:24:10.497 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] RoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s + +Sep 5 12:24:10.497 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] RoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:24:10.497 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] RoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:24:10.497 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] ClusterRoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:24:10.497 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] ClusterRole rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:24:10.497 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] ClusterRoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:24:10.497 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] ClusterRoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:24:10.497 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Role rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:24:10.498 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] RoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:24:10.498 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] RoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:24:10.498 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] RoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s + +Sep 5 12:24:10.498 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] RuntimeClass node.k8s.io/v1beta1 v1.22.0 v1.25.0 node.k8s.io/v1 v1.20.0 k8s + +Sep 5 12:24:10.498 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] PodDisruptionBudget policy/v1beta1 v1.21.0 v1.25.0 policy/v1 v1.21.0 k8s + +Sep 5 12:24:10.498 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] PodDisruptionBudgetList policy/v1beta1 v1.21.0 v1.25.0 policy/v1 n/a k8s + +Sep 5 12:24:10.498 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] HorizontalPodAutoscaler autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 v1.23.0 k8s + +Sep 5 12:24:10.498 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] HorizontalPodAutoscalerList autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 n/a k8s + +Sep 5 12:24:10.498 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] HorizontalPodAutoscaler autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s + +Sep 5 12:24:10.498 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] HorizontalPodAutoscalerList autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s + +Sep 5 12:24:10.498 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] CronJob batch/v1beta1 v1.21.0 v1.25.0 batch/v1 v1.21.0 k8s + +Sep 5 12:24:10.498 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] CronJobList batch/v1beta1 v1.21.0 v1.25.0 batch/v1 n/a k8s + +Sep 5 12:24:10.498 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] CSINode storage.k8s.io/v1beta1 v1.17.0 v1.22.0 storage.k8s.io/v1 v1.17.0 k8s + +Sep 5 12:24:10.498 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] CSIDriver storage.k8s.io/v1beta1 v1.19.0 v1.22.0 storage.k8s.io/v1 v1.19.0 k8s + +Sep 5 12:24:10.498 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] CSIStorageCapacity storage.k8s.io/v1beta1 v1.24.0 v1.27.0 storage.k8s.io/v1 v1.24.0 k8s + +Sep 5 12:24:10.498 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] StorageClass storage.k8s.io/v1beta1 v1.6.0 v1.22.0 storage.k8s.io/v1 v1.6.0 k8s + +Sep 5 12:24:10.498 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] VolumeAttachment storage.k8s.io/v1beta1 v1.13.0 v1.22.0 storage.k8s.io/v1 v1.13.0 k8s + +Sep 5 12:24:10.498 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] APIService apiregistration.k8s.io/v1beta1 v1.10.0 v1.22.0 apiregistration.k8s.io/v1 v1.10.0 k8s + +Sep 5 12:24:10.498 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] TokenReview authentication.k8s.io/v1beta1 v1.6.0 v1.22.0 authentication.k8s.io/v1 v1.6.0 k8s + +Sep 5 12:24:10.498 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] CertificateSigningRequest certificates.k8s.io/v1beta1 v1.19.0 v1.22.0 certificates.k8s.io/v1 v1.19.0 k8s + +Sep 5 12:24:10.498 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Lease coordination.k8s.io/v1beta1 v1.14.0 v1.22.0 coordination.k8s.io/v1 v1.14.0 k8s + +Sep 5 12:24:10.498 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Event events.k8s.io/v1beta1 v1.19.0 v1.25.0 events.k8s.io/v1 v1.19.0 k8s + +Sep 5 12:24:10.498 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] EndpointSlice discovery.k8s.io/v1beta1 v1.21.0 v1.25.0 discovery.k8s.io/v1 v1.21.0 k8s + +Sep 5 12:24:10.498 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] FlowControl flowcontrol.apiserver.k8s.io/v1beta1 v1.23.0 v1.26.0 flowcontrol.apiserver.k8s.io/v1beta2 n/a k8s + +Sep 5 12:24:10.498 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] AuthorizationPolicies rbac.istio.io v1.4.0 v1.4.0 security.istio.io/v1beta1 n/a istio + +Sep 5 12:24:10.498 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] authentication.istio.io/v1alpha1 v1.5.0 v1.6.0 security.istio.io/v1beta1 n/a istio + +Sep 5 12:24:10.498 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Certificate certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager + +Sep 5 12:24:10.498 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Issuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager + +Sep 5 12:24:10.498 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] ClusterIssuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager + +Sep 5 12:24:10.498 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] CertificateRequest certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager + +Sep 5 12:24:10.498 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Order certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager + +Sep 5 12:24:10.498 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Challenge certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager + +Sep 5 12:24:10.498 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Certificate cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:10.498 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Certificate cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:10.498 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Certificate cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:10.498 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Issuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:10.498 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Issuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:10.498 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Issuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:10.498 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] ClusterIssuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:10.498 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] ClusterIssuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:10.498 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] ClusterIssuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:10.498 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] CertificateRequest cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:10.498 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] CertificateRequest cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:10.498 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] CertificateRequest cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:10.498 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Order acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:10.498 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Order acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:10.498 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Order acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:10.498 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Challenge acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:10.498 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Challenge acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:10.498 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Challenge acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager + +Sep 5 12:24:10.498 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] FlowSchema flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s + +Sep 5 12:24:10.498 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s + +Sep 5 12:24:10.498 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s + +Sep 5 12:24:10.498 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] FLowSchema flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s + +Sep 5 12:24:10.498 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] AnotherCRD someother/v1beta1 v1.9.0 v1.16.0 apps/v1 n/a other + +Sep 5 12:24:10.498 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] + +Sep 5 12:24:10.498 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] + +Sep 5 12:24:10.498 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] Want more? Automate Pluto for free with Fairwinds Insights! + +Sep 5 12:24:10.498 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] 🚀 https://fairwinds.com/insights-signup/pluto 🚀 + +Sep 5 12:24:10.499 [DEBU] [CLI Validation] [list-versions-additional-file] [exec] result of runTestStepExecutor: {Systemout:KIND NAME DEPRECATED IN REMOVED IN REPLACEMENT REPL AVAIL IN COMPONENT +Deployment extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +NetworkPolicy extensions/v1beta1 v1.9.0 v1.16.0 networking.k8s.io/v1 v1.8.0 k8s +Ingress extensions/v1beta1 v1.14.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +Ingress networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +IngressClass networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +DaemonSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +DaemonSet extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +PodSecurityPolicy extensions/v1beta1 v1.10.0 v1.16.0 policy/v1beta1 v1.10.0 k8s +PodSecurityPolicy policy/v1beta1 v1.21.0 v1.25.0 n/a n/a k8s +ReplicaSet extensions/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta2 n/a v1.16.0 apps/v1 v1.9.0 k8s +PriorityClass scheduling.k8s.io/v1beta1 v1.14.0 v1.22.0 scheduling.k8s.io/v1 v1.14.0 k8s +PriorityClass scheduling.k8s.io/v1alpha1 v1.14.0 v1.17.0 scheduling.k8s.io/v1 n/a k8s +CustomResourceDefinition apiextensions.k8s.io/v1beta1 v1.16.0 v1.22.0 apiextensions.k8s.io/v1 v1.16.0 k8s +MutatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ValidatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRole rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRole rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RuntimeClass node.k8s.io/v1beta1 v1.22.0 v1.25.0 node.k8s.io/v1 v1.20.0 k8s +PodDisruptionBudget policy/v1beta1 v1.21.0 v1.25.0 policy/v1 v1.21.0 k8s +PodDisruptionBudgetList policy/v1beta1 v1.21.0 v1.25.0 policy/v1 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 v1.23.0 k8s +HorizontalPodAutoscalerList autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscalerList autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +CronJob batch/v1beta1 v1.21.0 v1.25.0 batch/v1 v1.21.0 k8s +CronJobList batch/v1beta1 v1.21.0 v1.25.0 batch/v1 n/a k8s +CSINode storage.k8s.io/v1beta1 v1.17.0 v1.22.0 storage.k8s.io/v1 v1.17.0 k8s +CSIDriver storage.k8s.io/v1beta1 v1.19.0 v1.22.0 storage.k8s.io/v1 v1.19.0 k8s +CSIStorageCapacity storage.k8s.io/v1beta1 v1.24.0 v1.27.0 storage.k8s.io/v1 v1.24.0 k8s +StorageClass storage.k8s.io/v1beta1 v1.6.0 v1.22.0 storage.k8s.io/v1 v1.6.0 k8s +VolumeAttachment storage.k8s.io/v1beta1 v1.13.0 v1.22.0 storage.k8s.io/v1 v1.13.0 k8s +APIService apiregistration.k8s.io/v1beta1 v1.10.0 v1.22.0 apiregistration.k8s.io/v1 v1.10.0 k8s +TokenReview authentication.k8s.io/v1beta1 v1.6.0 v1.22.0 authentication.k8s.io/v1 v1.6.0 k8s +CertificateSigningRequest certificates.k8s.io/v1beta1 v1.19.0 v1.22.0 certificates.k8s.io/v1 v1.19.0 k8s +Lease coordination.k8s.io/v1beta1 v1.14.0 v1.22.0 coordination.k8s.io/v1 v1.14.0 k8s +Event events.k8s.io/v1beta1 v1.19.0 v1.25.0 events.k8s.io/v1 v1.19.0 k8s +EndpointSlice discovery.k8s.io/v1beta1 v1.21.0 v1.25.0 discovery.k8s.io/v1 v1.21.0 k8s +FlowControl flowcontrol.apiserver.k8s.io/v1beta1 v1.23.0 v1.26.0 flowcontrol.apiserver.k8s.io/v1beta2 n/a k8s +AuthorizationPolicies rbac.istio.io v1.4.0 v1.4.0 security.istio.io/v1beta1 n/a istio + authentication.istio.io/v1alpha1 v1.5.0 v1.6.0 security.istio.io/v1beta1 n/a istio +Certificate certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Issuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +ClusterIssuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +CertificateRequest certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Order certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Challenge certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Certificate cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +FlowSchema flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +FLowSchema flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +AnotherCRD someother/v1beta1 v1.9.0 v1.16.0 apps/v1 n/a other SystemoutJSON: Systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 SystemerrJSON: Err: Code:0 TimeSeconds:0.114023958} +Sep 5 12:24:10.499 [INFO] [CLI Validation] [list-versions-additional-file] Ending testcase +Sep 5 12:24:10.499 [INFO] [CLI Validation] [Pass-bad-column-list-to-custom] Starting testcase +Sep 5 12:24:10.499 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-additional-file-duplicate.result.systemerrjson: +Sep 5 12:24:10.499 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-additional-file.result.systemout: KIND NAME DEPRECATED IN REMOVED IN REPLACEMENT REPL AVAIL IN COMPONENT +Deployment extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +NetworkPolicy extensions/v1beta1 v1.9.0 v1.16.0 networking.k8s.io/v1 v1.8.0 k8s +Ingress extensions/v1beta1 v1.14.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +Ingress networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +IngressClass networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +DaemonSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +DaemonSet extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +PodSecurityPolicy extensions/v1beta1 v1.10.0 v1.16.0 policy/v1beta1 v1.10.0 k8s +PodSecurityPolicy policy/v1beta1 v1.21.0 v1.25.0 n/a n/a k8s +ReplicaSet extensions/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta2 n/a v1.16.0 apps/v1 v1.9.0 k8s +PriorityClass scheduling.k8s.io/v1beta1 v1.14.0 v1.22.0 scheduling.k8s.io/v1 v1.14.0 k8s +PriorityClass scheduling.k8s.io/v1alpha1 v1.14.0 v1.17.0 scheduling.k8s.io/v1 n/a k8s +CustomResourceDefinition apiextensions.k8s.io/v1beta1 v1.16.0 v1.22.0 apiextensions.k8s.io/v1 v1.16.0 k8s +MutatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ValidatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRole rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRole rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RuntimeClass node.k8s.io/v1beta1 v1.22.0 v1.25.0 node.k8s.io/v1 v1.20.0 k8s +PodDisruptionBudget policy/v1beta1 v1.21.0 v1.25.0 policy/v1 v1.21.0 k8s +PodDisruptionBudgetList policy/v1beta1 v1.21.0 v1.25.0 policy/v1 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 v1.23.0 k8s +HorizontalPodAutoscalerList autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscalerList autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +CronJob batch/v1beta1 v1.21.0 v1.25.0 batch/v1 v1.21.0 k8s +CronJobList batch/v1beta1 v1.21.0 v1.25.0 batch/v1 n/a k8s +CSINode storage.k8s.io/v1beta1 v1.17.0 v1.22.0 storage.k8s.io/v1 v1.17.0 k8s +CSIDriver storage.k8s.io/v1beta1 v1.19.0 v1.22.0 storage.k8s.io/v1 v1.19.0 k8s +CSIStorageCapacity storage.k8s.io/v1beta1 v1.24.0 v1.27.0 storage.k8s.io/v1 v1.24.0 k8s +StorageClass storage.k8s.io/v1beta1 v1.6.0 v1.22.0 storage.k8s.io/v1 v1.6.0 k8s +VolumeAttachment storage.k8s.io/v1beta1 v1.13.0 v1.22.0 storage.k8s.io/v1 v1.13.0 k8s +APIService apiregistration.k8s.io/v1beta1 v1.10.0 v1.22.0 apiregistration.k8s.io/v1 v1.10.0 k8s +TokenReview authentication.k8s.io/v1beta1 v1.6.0 v1.22.0 authentication.k8s.io/v1 v1.6.0 k8s +CertificateSigningRequest certificates.k8s.io/v1beta1 v1.19.0 v1.22.0 certificates.k8s.io/v1 v1.19.0 k8s +Lease coordination.k8s.io/v1beta1 v1.14.0 v1.22.0 coordination.k8s.io/v1 v1.14.0 k8s +Event events.k8s.io/v1beta1 v1.19.0 v1.25.0 events.k8s.io/v1 v1.19.0 k8s +EndpointSlice discovery.k8s.io/v1beta1 v1.21.0 v1.25.0 discovery.k8s.io/v1 v1.21.0 k8s +FlowControl flowcontrol.apiserver.k8s.io/v1beta1 v1.23.0 v1.26.0 flowcontrol.apiserver.k8s.io/v1beta2 n/a k8s +AuthorizationPolicies rbac.istio.io v1.4.0 v1.4.0 security.istio.io/v1beta1 n/a istio + authentication.istio.io/v1alpha1 v1.5.0 v1.6.0 security.istio.io/v1beta1 n/a istio +Certificate certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Issuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +ClusterIssuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +CertificateRequest certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Order certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Challenge certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Certificate cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +FlowSchema flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +FLowSchema flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +AnotherCRD someother/v1beta1 v1.9.0 v1.16.0 apps/v1 n/a other +Sep 5 12:24:10.499 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable Pass-bad-semver-with-no-v.result.timeseconds: 0.130391333 +Sep 5 12:24:10.499 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable Pass-bad-semver-starting-with-v.result.timeseconds: 0.116887792 +Sep 5 12:24:10.499 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemerr: Error: you must use valid semver for all target versions with a leading 'v' - got foo vfoo +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:10.154991 91573 root.go:471] you must use valid semver for all target versions with a leading 'v' - got foo vfoo +Sep 5 12:24:10.499 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-ojson.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:10.499 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemerrjson: +Sep 5 12:24:10.499 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable __Type__: Map +Sep 5 12:24:10.499 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable Pass-bad-semver-with-no-v.__type__: Result +Sep 5 12:24:10.499 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-ojson.result.code: 0 +Sep 5 12:24:10.499 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable venom.libdir: +Sep 5 12:24:10.499 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-additional-file.result.timeseconds: 0.114023958 +Sep 5 12:24:10.499 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable venom.testcase: Pass-bad-column-list-to-custom +Sep 5 12:24:10.499 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable Pass-bad-semver-with-no-v.result.systemout: +Sep 5 12:24:10.499 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable Pass-bad-semver-with-no-v.result.systemerr: Error: you must use valid semver for all target versions with a leading 'v' - got foo 1.0.0 +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:10.037390 91435 root.go:471] you must use valid semver for all target versions with a leading 'v' - got foo 1.0.0 +Sep 5 12:24:10.499 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable Pass-bad-semver-starting-with-v.result.code: 1 +Sep 5 12:24:10.499 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable venom.timestamp: 1693938241 +Sep 5 12:24:10.499 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable __Len__: 8 +Sep 5 12:24:10.499 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-additional-file-duplicate.result.timeseconds: 0.112189708 +Sep 5 12:24:10.499 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable Pass-bad-semver-with-no-v.result.systemerrjson: +Sep 5 12:24:10.499 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-additional-file.result.systemerrjson: +Sep 5 12:24:10.499 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemout: +Sep 5 12:24:10.499 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable venom.outputdir: +Sep 5 12:24:10.499 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable venom.testsuite.name: CLI Validation +Sep 5 12:24:10.499 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-additional-file.result.systemoutjson: +Sep 5 12:24:10.499 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-additional-file-duplicate.result.systemoutjson: +Sep 5 12:24:10.499 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-additional-file-duplicate.result.__len__: 7 +Sep 5 12:24:10.499 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable venom.datetime: 2023-09-05T12:24:01-06:00 +Sep 5 12:24:10.499 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable Pass-bad-semver-starting-with-v.__type__: Result +Sep 5 12:24:10.499 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-additional-file-duplicate.result.systemout: +Sep 5 12:24:10.499 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-ojson.result.err: +Sep 5 12:24:10.499 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable Pass-bad-semver-starting-with-v.result.err: +Sep 5 12:24:10.499 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-additional-file.result.err: +Sep 5 12:24:10.499 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-additional-file-duplicate.result.code: 1 +Sep 5 12:24:10.499 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:24:10.499 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable venom.testsuite.filepath: tests/03-cli-validation.yaml +Sep 5 12:24:10.499 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable Pass-bad-semver-with-no-v.result.code: 1 +Sep 5 12:24:10.499 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-ojson.result.timeseconds: 0.113857417 +Sep 5 12:24:10.499 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-additional-file.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:10.499 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable Pass-bad-semver-with-no-v.result.systemoutjson: +Sep 5 12:24:10.499 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable Pass-bad-semver-with-no-v.result.__len__: 7 +Sep 5 12:24:10.499 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-additional-file-duplicate.result.systemerr: Error: duplicate cannot be added to defaults: Deployment extensions/v1beta1 +Usage: + pluto list-versions [flags] + +Flags: + -h, --help help for list-versions + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:10.383613 91849 root.go:471] duplicate cannot be added to defaults: Deployment extensions/v1beta1 +Sep 5 12:24:10.499 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable venom.testsuite.shortName: 03-cli-validation +Sep 5 12:24:10.499 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-additional-file-duplicate.result.err: +Sep 5 12:24:10.499 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-ojson.result.__len__: 7 +Sep 5 12:24:10.499 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemoutjson: +Sep 5 12:24:10.499 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-ojson.result.systemoutjson: +Sep 5 12:24:10.499 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable Pass-bad-semver-starting-with-v.result.__len__: 7 +Sep 5 12:24:10.499 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:24:10.499 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-additional-file-duplicate.__type__: Result +Sep 5 12:24:10.499 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable Pass-bad-semver-with-no-v.result.err: +Sep 5 12:24:10.499 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-additional-file.result.code: 0 +Sep 5 12:24:10.499 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-additional-file.result.__len__: 7 +Sep 5 12:24:10.499 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-additional-file.__type__: Result +Sep 5 12:24:10.499 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable venom.testsuite: CLI Validation +Sep 5 12:24:10.499 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-ojson.__type__: Result +Sep 5 12:24:10.499 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-ojson.result.systemout: KIND NAME DEPRECATED IN REMOVED IN REPLACEMENT REPL AVAIL IN COMPONENT +Deployment extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +NetworkPolicy extensions/v1beta1 v1.9.0 v1.16.0 networking.k8s.io/v1 v1.8.0 k8s +Ingress extensions/v1beta1 v1.14.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +Ingress networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +IngressClass networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +DaemonSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +DaemonSet extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +PodSecurityPolicy extensions/v1beta1 v1.10.0 v1.16.0 policy/v1beta1 v1.10.0 k8s +PodSecurityPolicy policy/v1beta1 v1.21.0 v1.25.0 n/a n/a k8s +ReplicaSet extensions/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta2 n/a v1.16.0 apps/v1 v1.9.0 k8s +PriorityClass scheduling.k8s.io/v1beta1 v1.14.0 v1.22.0 scheduling.k8s.io/v1 v1.14.0 k8s +PriorityClass scheduling.k8s.io/v1alpha1 v1.14.0 v1.17.0 scheduling.k8s.io/v1 n/a k8s +CustomResourceDefinition apiextensions.k8s.io/v1beta1 v1.16.0 v1.22.0 apiextensions.k8s.io/v1 v1.16.0 k8s +MutatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ValidatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRole rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRole rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RuntimeClass node.k8s.io/v1beta1 v1.22.0 v1.25.0 node.k8s.io/v1 v1.20.0 k8s +PodDisruptionBudget policy/v1beta1 v1.21.0 v1.25.0 policy/v1 v1.21.0 k8s +PodDisruptionBudgetList policy/v1beta1 v1.21.0 v1.25.0 policy/v1 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 v1.23.0 k8s +HorizontalPodAutoscalerList autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscalerList autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +CronJob batch/v1beta1 v1.21.0 v1.25.0 batch/v1 v1.21.0 k8s +CronJobList batch/v1beta1 v1.21.0 v1.25.0 batch/v1 n/a k8s +CSINode storage.k8s.io/v1beta1 v1.17.0 v1.22.0 storage.k8s.io/v1 v1.17.0 k8s +CSIDriver storage.k8s.io/v1beta1 v1.19.0 v1.22.0 storage.k8s.io/v1 v1.19.0 k8s +CSIStorageCapacity storage.k8s.io/v1beta1 v1.24.0 v1.27.0 storage.k8s.io/v1 v1.24.0 k8s +StorageClass storage.k8s.io/v1beta1 v1.6.0 v1.22.0 storage.k8s.io/v1 v1.6.0 k8s +VolumeAttachment storage.k8s.io/v1beta1 v1.13.0 v1.22.0 storage.k8s.io/v1 v1.13.0 k8s +APIService apiregistration.k8s.io/v1beta1 v1.10.0 v1.22.0 apiregistration.k8s.io/v1 v1.10.0 k8s +TokenReview authentication.k8s.io/v1beta1 v1.6.0 v1.22.0 authentication.k8s.io/v1 v1.6.0 k8s +CertificateSigningRequest certificates.k8s.io/v1beta1 v1.19.0 v1.22.0 certificates.k8s.io/v1 v1.19.0 k8s +Lease coordination.k8s.io/v1beta1 v1.14.0 v1.22.0 coordination.k8s.io/v1 v1.14.0 k8s +Event events.k8s.io/v1beta1 v1.19.0 v1.25.0 events.k8s.io/v1 v1.19.0 k8s +EndpointSlice discovery.k8s.io/v1beta1 v1.21.0 v1.25.0 discovery.k8s.io/v1 v1.21.0 k8s +FlowControl flowcontrol.apiserver.k8s.io/v1beta1 v1.23.0 v1.26.0 flowcontrol.apiserver.k8s.io/v1beta2 n/a k8s +AuthorizationPolicies rbac.istio.io v1.4.0 v1.4.0 security.istio.io/v1beta1 n/a istio + authentication.istio.io/v1alpha1 v1.5.0 v1.6.0 security.istio.io/v1beta1 n/a istio +Certificate certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Issuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +ClusterIssuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +CertificateRequest certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Order certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Challenge certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Certificate cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +FlowSchema flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +FLowSchema flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +Sep 5 12:24:10.499 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable venom.testsuite.filename: 03-cli-validation.yaml +Sep 5 12:24:10.499 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] Running testcase with variable list-versions-ojson.result.systemerrjson: +Sep 5 12:24:10.499 [INFO] [CLI Validation] [Pass-bad-column-list-to-custom] Step #0 content is: {"assertions":["result.code ShouldEqual 1","result.systemerr ShouldContainSubstring \"invalid custom column option FOO\""],"script":"pluto detect-files -d assets/deprecated116 --target-versions foo=vfoo -o custom --columns \"FOO\""} +Sep 5 12:24:10.500 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-3265810578 +Sep 5 12:24:10.500 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-3265810578' +Sep 5 12:24:10.611 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] Error: invalid custom column option FOO - must be one of [NAME FILEPATH NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN COMPONENT REPL AVAIL REPL AVAIL IN] + +Sep 5 12:24:10.611 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] Usage: + +Sep 5 12:24:10.611 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] pluto detect-files [flags] + +Sep 5 12:24:10.611 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] + +Sep 5 12:24:10.611 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] Flags: + +Sep 5 12:24:10.611 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] -d, --directory string The directory to scan. If blank, defaults to current working dir. + +Sep 5 12:24:10.611 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] -h, --help help for detect-files + +Sep 5 12:24:10.611 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] + +Sep 5 12:24:10.611 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] Global Flags: + +Sep 5 12:24:10.611 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + +Sep 5 12:24:10.611 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + +Sep 5 12:24:10.611 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] --components strings A list of components to run checks for. If nil, will check for all found in versions. + +Sep 5 12:24:10.611 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + +Sep 5 12:24:10.611 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + +Sep 5 12:24:10.611 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + +Sep 5 12:24:10.611 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] --no-footer Disable footer output + +Sep 5 12:24:10.611 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + +Sep 5 12:24:10.611 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + +Sep 5 12:24:10.611 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + +Sep 5 12:24:10.611 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + +Sep 5 12:24:10.611 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] -v, --v Level number for the log level verbosity + +Sep 5 12:24:10.611 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] + +Sep 5 12:24:10.611 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] E0905 12:24:10.611775 92125 root.go:471] invalid custom column option FOO - must be one of [NAME FILEPATH NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN COMPONENT REPL AVAIL REPL AVAIL IN] + +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-custom] [exec] result of runTestStepExecutor: {Systemout: SystemoutJSON: Systemerr:Error: invalid custom column option FOO - must be one of [NAME FILEPATH NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN COMPONENT REPL AVAIL REPL AVAIL IN] +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:10.611775 92125 root.go:471] invalid custom column option FOO - must be one of [NAME FILEPATH NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN COMPONENT REPL AVAIL REPL AVAIL IN] SystemerrJSON: Err: Code:1 TimeSeconds:0.112155375} +Sep 5 12:24:10.612 [INFO] [CLI Validation] [Pass-bad-column-list-to-custom] Ending testcase +Sep 5 12:24:10.612 [INFO] [CLI Validation] [Pass-bad-column-list-to-markdown] Starting testcase +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-semver-with-no-v.result.systemout: +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-additional-file-duplicate.result.err: +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-ojson.result.timeseconds: 0.113857417 +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-additional-file-duplicate.result.code: 1 +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-additional-file.result.systemoutjson: +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-semver-with-no-v.result.err: +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable venom.testsuite.filename: 03-cli-validation.yaml +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-semver-starting-with-v.__type__: Result +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-column-list-to-custom.result.systemerr: Error: invalid custom column option FOO - must be one of [NAME FILEPATH NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN COMPONENT REPL AVAIL REPL AVAIL IN] +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:10.611775 92125 root.go:471] invalid custom column option FOO - must be one of [NAME FILEPATH NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN COMPONENT REPL AVAIL REPL AVAIL IN] +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-additional-file.result.code: 0 +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-column-list-to-custom.result.timeseconds: 0.112155375 +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-additional-file-duplicate.result.systemerrjson: +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable venom.datetime: 2023-09-05T12:24:01-06:00 +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-semver-with-no-v.result.timeseconds: 0.130391333 +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-ojson.result.systemoutjson: +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-additional-file.__type__: Result +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-semver-starting-with-v.result.timeseconds: 0.116887792 +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-ojson.result.systemout: KIND NAME DEPRECATED IN REMOVED IN REPLACEMENT REPL AVAIL IN COMPONENT +Deployment extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +NetworkPolicy extensions/v1beta1 v1.9.0 v1.16.0 networking.k8s.io/v1 v1.8.0 k8s +Ingress extensions/v1beta1 v1.14.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +Ingress networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +IngressClass networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +DaemonSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +DaemonSet extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +PodSecurityPolicy extensions/v1beta1 v1.10.0 v1.16.0 policy/v1beta1 v1.10.0 k8s +PodSecurityPolicy policy/v1beta1 v1.21.0 v1.25.0 n/a n/a k8s +ReplicaSet extensions/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta2 n/a v1.16.0 apps/v1 v1.9.0 k8s +PriorityClass scheduling.k8s.io/v1beta1 v1.14.0 v1.22.0 scheduling.k8s.io/v1 v1.14.0 k8s +PriorityClass scheduling.k8s.io/v1alpha1 v1.14.0 v1.17.0 scheduling.k8s.io/v1 n/a k8s +CustomResourceDefinition apiextensions.k8s.io/v1beta1 v1.16.0 v1.22.0 apiextensions.k8s.io/v1 v1.16.0 k8s +MutatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ValidatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRole rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRole rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RuntimeClass node.k8s.io/v1beta1 v1.22.0 v1.25.0 node.k8s.io/v1 v1.20.0 k8s +PodDisruptionBudget policy/v1beta1 v1.21.0 v1.25.0 policy/v1 v1.21.0 k8s +PodDisruptionBudgetList policy/v1beta1 v1.21.0 v1.25.0 policy/v1 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 v1.23.0 k8s +HorizontalPodAutoscalerList autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscalerList autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +CronJob batch/v1beta1 v1.21.0 v1.25.0 batch/v1 v1.21.0 k8s +CronJobList batch/v1beta1 v1.21.0 v1.25.0 batch/v1 n/a k8s +CSINode storage.k8s.io/v1beta1 v1.17.0 v1.22.0 storage.k8s.io/v1 v1.17.0 k8s +CSIDriver storage.k8s.io/v1beta1 v1.19.0 v1.22.0 storage.k8s.io/v1 v1.19.0 k8s +CSIStorageCapacity storage.k8s.io/v1beta1 v1.24.0 v1.27.0 storage.k8s.io/v1 v1.24.0 k8s +StorageClass storage.k8s.io/v1beta1 v1.6.0 v1.22.0 storage.k8s.io/v1 v1.6.0 k8s +VolumeAttachment storage.k8s.io/v1beta1 v1.13.0 v1.22.0 storage.k8s.io/v1 v1.13.0 k8s +APIService apiregistration.k8s.io/v1beta1 v1.10.0 v1.22.0 apiregistration.k8s.io/v1 v1.10.0 k8s +TokenReview authentication.k8s.io/v1beta1 v1.6.0 v1.22.0 authentication.k8s.io/v1 v1.6.0 k8s +CertificateSigningRequest certificates.k8s.io/v1beta1 v1.19.0 v1.22.0 certificates.k8s.io/v1 v1.19.0 k8s +Lease coordination.k8s.io/v1beta1 v1.14.0 v1.22.0 coordination.k8s.io/v1 v1.14.0 k8s +Event events.k8s.io/v1beta1 v1.19.0 v1.25.0 events.k8s.io/v1 v1.19.0 k8s +EndpointSlice discovery.k8s.io/v1beta1 v1.21.0 v1.25.0 discovery.k8s.io/v1 v1.21.0 k8s +FlowControl flowcontrol.apiserver.k8s.io/v1beta1 v1.23.0 v1.26.0 flowcontrol.apiserver.k8s.io/v1beta2 n/a k8s +AuthorizationPolicies rbac.istio.io v1.4.0 v1.4.0 security.istio.io/v1beta1 n/a istio + authentication.istio.io/v1alpha1 v1.5.0 v1.6.0 security.istio.io/v1beta1 n/a istio +Certificate certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Issuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +ClusterIssuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +CertificateRequest certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Order certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Challenge certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Certificate cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +FlowSchema flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +FLowSchema flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable venom.testsuite.name: CLI Validation +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemerr: Error: you must use valid semver for all target versions with a leading 'v' - got foo vfoo +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:10.154991 91573 root.go:471] you must use valid semver for all target versions with a leading 'v' - got foo vfoo +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-additional-file-duplicate.__type__: Result +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-semver-with-no-v.result.systemerrjson: +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-ojson.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable venom.timestamp: 1693938241 +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-additional-file.result.__len__: 7 +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-additional-file.result.timeseconds: 0.114023958 +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-column-list-to-custom.result.systemoutjson: +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-column-list-to-custom.__type__: Result +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable venom.libdir: +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-semver-with-no-v.result.systemerr: Error: you must use valid semver for all target versions with a leading 'v' - got foo 1.0.0 +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:10.037390 91435 root.go:471] you must use valid semver for all target versions with a leading 'v' - got foo 1.0.0 +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-column-list-to-custom.result.__len__: 7 +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-semver-with-no-v.__type__: Result +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-additional-file.result.systemout: KIND NAME DEPRECATED IN REMOVED IN REPLACEMENT REPL AVAIL IN COMPONENT +Deployment extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +NetworkPolicy extensions/v1beta1 v1.9.0 v1.16.0 networking.k8s.io/v1 v1.8.0 k8s +Ingress extensions/v1beta1 v1.14.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +Ingress networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +IngressClass networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +DaemonSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +DaemonSet extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +PodSecurityPolicy extensions/v1beta1 v1.10.0 v1.16.0 policy/v1beta1 v1.10.0 k8s +PodSecurityPolicy policy/v1beta1 v1.21.0 v1.25.0 n/a n/a k8s +ReplicaSet extensions/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta2 n/a v1.16.0 apps/v1 v1.9.0 k8s +PriorityClass scheduling.k8s.io/v1beta1 v1.14.0 v1.22.0 scheduling.k8s.io/v1 v1.14.0 k8s +PriorityClass scheduling.k8s.io/v1alpha1 v1.14.0 v1.17.0 scheduling.k8s.io/v1 n/a k8s +CustomResourceDefinition apiextensions.k8s.io/v1beta1 v1.16.0 v1.22.0 apiextensions.k8s.io/v1 v1.16.0 k8s +MutatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ValidatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRole rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRole rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RuntimeClass node.k8s.io/v1beta1 v1.22.0 v1.25.0 node.k8s.io/v1 v1.20.0 k8s +PodDisruptionBudget policy/v1beta1 v1.21.0 v1.25.0 policy/v1 v1.21.0 k8s +PodDisruptionBudgetList policy/v1beta1 v1.21.0 v1.25.0 policy/v1 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 v1.23.0 k8s +HorizontalPodAutoscalerList autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscalerList autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +CronJob batch/v1beta1 v1.21.0 v1.25.0 batch/v1 v1.21.0 k8s +CronJobList batch/v1beta1 v1.21.0 v1.25.0 batch/v1 n/a k8s +CSINode storage.k8s.io/v1beta1 v1.17.0 v1.22.0 storage.k8s.io/v1 v1.17.0 k8s +CSIDriver storage.k8s.io/v1beta1 v1.19.0 v1.22.0 storage.k8s.io/v1 v1.19.0 k8s +CSIStorageCapacity storage.k8s.io/v1beta1 v1.24.0 v1.27.0 storage.k8s.io/v1 v1.24.0 k8s +StorageClass storage.k8s.io/v1beta1 v1.6.0 v1.22.0 storage.k8s.io/v1 v1.6.0 k8s +VolumeAttachment storage.k8s.io/v1beta1 v1.13.0 v1.22.0 storage.k8s.io/v1 v1.13.0 k8s +APIService apiregistration.k8s.io/v1beta1 v1.10.0 v1.22.0 apiregistration.k8s.io/v1 v1.10.0 k8s +TokenReview authentication.k8s.io/v1beta1 v1.6.0 v1.22.0 authentication.k8s.io/v1 v1.6.0 k8s +CertificateSigningRequest certificates.k8s.io/v1beta1 v1.19.0 v1.22.0 certificates.k8s.io/v1 v1.19.0 k8s +Lease coordination.k8s.io/v1beta1 v1.14.0 v1.22.0 coordination.k8s.io/v1 v1.14.0 k8s +Event events.k8s.io/v1beta1 v1.19.0 v1.25.0 events.k8s.io/v1 v1.19.0 k8s +EndpointSlice discovery.k8s.io/v1beta1 v1.21.0 v1.25.0 discovery.k8s.io/v1 v1.21.0 k8s +FlowControl flowcontrol.apiserver.k8s.io/v1beta1 v1.23.0 v1.26.0 flowcontrol.apiserver.k8s.io/v1beta2 n/a k8s +AuthorizationPolicies rbac.istio.io v1.4.0 v1.4.0 security.istio.io/v1beta1 n/a istio + authentication.istio.io/v1alpha1 v1.5.0 v1.6.0 security.istio.io/v1beta1 n/a istio +Certificate certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Issuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +ClusterIssuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +CertificateRequest certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Order certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Challenge certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Certificate cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +FlowSchema flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +FLowSchema flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +AnotherCRD someother/v1beta1 v1.9.0 v1.16.0 apps/v1 n/a other +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-ojson.result.code: 0 +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable venom.testcase: Pass-bad-column-list-to-markdown +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-semver-with-no-v.result.systemoutjson: +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemerrjson: +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-column-list-to-custom.result.systemerrjson: +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-ojson.result.__len__: 7 +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-additional-file-duplicate.result.systemout: +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-ojson.result.err: +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-additional-file-duplicate.result.systemerr: Error: duplicate cannot be added to defaults: Deployment extensions/v1beta1 +Usage: + pluto list-versions [flags] + +Flags: + -h, --help help for list-versions + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:10.383613 91849 root.go:471] duplicate cannot be added to defaults: Deployment extensions/v1beta1 +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-column-list-to-custom.result.code: 1 +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-additional-file-duplicate.result.systemoutjson: +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable venom.testsuite.filepath: tests/03-cli-validation.yaml +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-additional-file.result.err: +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-ojson.result.systemerrjson: +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-additional-file-duplicate.result.timeseconds: 0.112189708 +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-semver-starting-with-v.result.code: 1 +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-semver-with-no-v.result.__len__: 7 +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable venom.testsuite: CLI Validation +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable __Type__: Map +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-semver-starting-with-v.result.err: +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemoutjson: +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-ojson.__type__: Result +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable venom.outputdir: +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable venom.testsuite.shortName: 03-cli-validation +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-semver-starting-with-v.result.__len__: 7 +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemout: +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-semver-with-no-v.result.code: 1 +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-column-list-to-custom.result.systemout: +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-additional-file.result.systemerrjson: +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-additional-file.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable __Len__: 8 +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable list-versions-additional-file-duplicate.result.__len__: 7 +Sep 5 12:24:10.612 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] Running testcase with variable Pass-bad-column-list-to-custom.result.err: +Sep 5 12:24:10.612 [INFO] [CLI Validation] [Pass-bad-column-list-to-markdown] Step #0 content is: {"assertions":["result.code ShouldEqual 1","result.systemerr ShouldContainSubstring \"invalid custom column option FOO\""],"script":"pluto detect-files -d assets/deprecated116 --target-versions foo=vfoo -o markdown --columns \"FOO\""} +Sep 5 12:24:10.613 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-1248045541 +Sep 5 12:24:10.613 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-1248045541' +Sep 5 12:24:10.724 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] Error: invalid custom column option FOO - must be one of [NAME FILEPATH NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN COMPONENT REPL AVAIL REPL AVAIL IN] + +Sep 5 12:24:10.725 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] Usage: + +Sep 5 12:24:10.725 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] pluto detect-files [flags] + +Sep 5 12:24:10.725 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] + +Sep 5 12:24:10.725 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] Flags: + +Sep 5 12:24:10.725 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] -d, --directory string The directory to scan. If blank, defaults to current working dir. + +Sep 5 12:24:10.725 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] -h, --help help for detect-files + +Sep 5 12:24:10.725 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] + +Sep 5 12:24:10.725 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] Global Flags: + +Sep 5 12:24:10.725 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + +Sep 5 12:24:10.725 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + +Sep 5 12:24:10.725 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] --components strings A list of components to run checks for. If nil, will check for all found in versions. + +Sep 5 12:24:10.725 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + +Sep 5 12:24:10.725 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + +Sep 5 12:24:10.725 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + +Sep 5 12:24:10.725 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] --no-footer Disable footer output + +Sep 5 12:24:10.725 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + +Sep 5 12:24:10.725 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + +Sep 5 12:24:10.725 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + +Sep 5 12:24:10.725 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + +Sep 5 12:24:10.725 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] -v, --v Level number for the log level verbosity + +Sep 5 12:24:10.725 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] + +Sep 5 12:24:10.725 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] E0905 12:24:10.725212 92263 root.go:471] invalid custom column option FOO - must be one of [NAME FILEPATH NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN COMPONENT REPL AVAIL REPL AVAIL IN] + +Sep 5 12:24:10.725 [DEBU] [CLI Validation] [Pass-bad-column-list-to-markdown] [exec] result of runTestStepExecutor: {Systemout: SystemoutJSON: Systemerr:Error: invalid custom column option FOO - must be one of [NAME FILEPATH NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN COMPONENT REPL AVAIL REPL AVAIL IN] +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:10.725212 92263 root.go:471] invalid custom column option FOO - must be one of [NAME FILEPATH NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN COMPONENT REPL AVAIL REPL AVAIL IN] SystemerrJSON: Err: Code:1 TimeSeconds:0.112444} +Sep 5 12:24:10.726 [INFO] [CLI Validation] [Pass-bad-column-list-to-markdown] Ending testcase +Sep 5 12:24:10.726 [INFO] [CLI Validation] [Custom-output-with-no-columns-flag] Starting testcase +Sep 5 12:24:10.726 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-semver-with-no-v.result.systemout: +Sep 5 12:24:10.726 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-semver-with-no-v.__type__: Result +Sep 5 12:24:10.726 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-column-list-to-markdown.result.systemerr: Error: invalid custom column option FOO - must be one of [NAME FILEPATH NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN COMPONENT REPL AVAIL REPL AVAIL IN] +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:10.725212 92263 root.go:471] invalid custom column option FOO - must be one of [NAME FILEPATH NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN COMPONENT REPL AVAIL REPL AVAIL IN] +Sep 5 12:24:10.726 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable __Type__: Map +Sep 5 12:24:10.726 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-column-list-to-markdown.result.__len__: 7 +Sep 5 12:24:10.726 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-column-list-to-custom.result.systemoutjson: +Sep 5 12:24:10.726 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable venom.testsuite.filename: 03-cli-validation.yaml +Sep 5 12:24:10.726 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-additional-file-duplicate.result.timeseconds: 0.112189708 +Sep 5 12:24:10.726 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-additional-file-duplicate.result.err: +Sep 5 12:24:10.726 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-semver-starting-with-v.result.err: +Sep 5 12:24:10.726 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-column-list-to-markdown.result.systemerrjson: +Sep 5 12:24:10.726 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-additional-file-duplicate.result.systemerr: Error: duplicate cannot be added to defaults: Deployment extensions/v1beta1 +Usage: + pluto list-versions [flags] + +Flags: + -h, --help help for list-versions + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:10.383613 91849 root.go:471] duplicate cannot be added to defaults: Deployment extensions/v1beta1 +Sep 5 12:24:10.726 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-additional-file-duplicate.result.systemout: +Sep 5 12:24:10.726 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-column-list-to-custom.result.__len__: 7 +Sep 5 12:24:10.726 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-additional-file.result.systemout: KIND NAME DEPRECATED IN REMOVED IN REPLACEMENT REPL AVAIL IN COMPONENT +Deployment extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +NetworkPolicy extensions/v1beta1 v1.9.0 v1.16.0 networking.k8s.io/v1 v1.8.0 k8s +Ingress extensions/v1beta1 v1.14.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +Ingress networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +IngressClass networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +DaemonSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +DaemonSet extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +PodSecurityPolicy extensions/v1beta1 v1.10.0 v1.16.0 policy/v1beta1 v1.10.0 k8s +PodSecurityPolicy policy/v1beta1 v1.21.0 v1.25.0 n/a n/a k8s +ReplicaSet extensions/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta2 n/a v1.16.0 apps/v1 v1.9.0 k8s +PriorityClass scheduling.k8s.io/v1beta1 v1.14.0 v1.22.0 scheduling.k8s.io/v1 v1.14.0 k8s +PriorityClass scheduling.k8s.io/v1alpha1 v1.14.0 v1.17.0 scheduling.k8s.io/v1 n/a k8s +CustomResourceDefinition apiextensions.k8s.io/v1beta1 v1.16.0 v1.22.0 apiextensions.k8s.io/v1 v1.16.0 k8s +MutatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ValidatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRole rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRole rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RuntimeClass node.k8s.io/v1beta1 v1.22.0 v1.25.0 node.k8s.io/v1 v1.20.0 k8s +PodDisruptionBudget policy/v1beta1 v1.21.0 v1.25.0 policy/v1 v1.21.0 k8s +PodDisruptionBudgetList policy/v1beta1 v1.21.0 v1.25.0 policy/v1 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 v1.23.0 k8s +HorizontalPodAutoscalerList autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscalerList autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +CronJob batch/v1beta1 v1.21.0 v1.25.0 batch/v1 v1.21.0 k8s +CronJobList batch/v1beta1 v1.21.0 v1.25.0 batch/v1 n/a k8s +CSINode storage.k8s.io/v1beta1 v1.17.0 v1.22.0 storage.k8s.io/v1 v1.17.0 k8s +CSIDriver storage.k8s.io/v1beta1 v1.19.0 v1.22.0 storage.k8s.io/v1 v1.19.0 k8s +CSIStorageCapacity storage.k8s.io/v1beta1 v1.24.0 v1.27.0 storage.k8s.io/v1 v1.24.0 k8s +StorageClass storage.k8s.io/v1beta1 v1.6.0 v1.22.0 storage.k8s.io/v1 v1.6.0 k8s +VolumeAttachment storage.k8s.io/v1beta1 v1.13.0 v1.22.0 storage.k8s.io/v1 v1.13.0 k8s +APIService apiregistration.k8s.io/v1beta1 v1.10.0 v1.22.0 apiregistration.k8s.io/v1 v1.10.0 k8s +TokenReview authentication.k8s.io/v1beta1 v1.6.0 v1.22.0 authentication.k8s.io/v1 v1.6.0 k8s +CertificateSigningRequest certificates.k8s.io/v1beta1 v1.19.0 v1.22.0 certificates.k8s.io/v1 v1.19.0 k8s +Lease coordination.k8s.io/v1beta1 v1.14.0 v1.22.0 coordination.k8s.io/v1 v1.14.0 k8s +Event events.k8s.io/v1beta1 v1.19.0 v1.25.0 events.k8s.io/v1 v1.19.0 k8s +EndpointSlice discovery.k8s.io/v1beta1 v1.21.0 v1.25.0 discovery.k8s.io/v1 v1.21.0 k8s +FlowControl flowcontrol.apiserver.k8s.io/v1beta1 v1.23.0 v1.26.0 flowcontrol.apiserver.k8s.io/v1beta2 n/a k8s +AuthorizationPolicies rbac.istio.io v1.4.0 v1.4.0 security.istio.io/v1beta1 n/a istio + authentication.istio.io/v1alpha1 v1.5.0 v1.6.0 security.istio.io/v1beta1 n/a istio +Certificate certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Issuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +ClusterIssuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +CertificateRequest certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Order certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Challenge certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Certificate cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +FlowSchema flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +FLowSchema flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +AnotherCRD someother/v1beta1 v1.9.0 v1.16.0 apps/v1 n/a other +Sep 5 12:24:10.726 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-column-list-to-markdown.result.systemoutjson: +Sep 5 12:24:10.726 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-semver-with-no-v.result.systemoutjson: +Sep 5 12:24:10.726 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable venom.testsuite: CLI Validation +Sep 5 12:24:10.726 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-semver-starting-with-v.result.timeseconds: 0.116887792 +Sep 5 12:24:10.726 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-column-list-to-custom.result.systemout: +Sep 5 12:24:10.726 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-column-list-to-markdown.result.systemout: +Sep 5 12:24:10.726 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-semver-with-no-v.result.timeseconds: 0.130391333 +Sep 5 12:24:10.726 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-semver-starting-with-v.result.__len__: 7 +Sep 5 12:24:10.726 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable venom.outputdir: +Sep 5 12:24:10.726 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:24:10.726 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable venom.testcase: Custom-output-with-no-columns-flag +Sep 5 12:24:10.726 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-additional-file-duplicate.result.systemerrjson: +Sep 5 12:24:10.726 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemerr: Error: you must use valid semver for all target versions with a leading 'v' - got foo vfoo +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:10.154991 91573 root.go:471] you must use valid semver for all target versions with a leading 'v' - got foo vfoo +Sep 5 12:24:10.726 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-semver-with-no-v.result.systemerrjson: +Sep 5 12:24:10.726 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemerrjson: +Sep 5 12:24:10.726 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-semver-starting-with-v.result.code: 1 +Sep 5 12:24:10.726 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-column-list-to-custom.result.systemerr: Error: invalid custom column option FOO - must be one of [NAME FILEPATH NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN COMPONENT REPL AVAIL REPL AVAIL IN] +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:10.611775 92125 root.go:471] invalid custom column option FOO - must be one of [NAME FILEPATH NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN COMPONENT REPL AVAIL REPL AVAIL IN] +Sep 5 12:24:10.726 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-column-list-to-markdown.result.code: 1 +Sep 5 12:24:10.726 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-column-list-to-markdown.result.timeseconds: 0.112444 +Sep 5 12:24:10.726 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable __Len__: 8 +Sep 5 12:24:10.726 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:24:10.726 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-additional-file.result.__len__: 7 +Sep 5 12:24:10.726 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-additional-file-duplicate.__type__: Result +Sep 5 12:24:10.726 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-column-list-to-markdown.__type__: Result +Sep 5 12:24:10.726 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-ojson.result.timeseconds: 0.113857417 +Sep 5 12:24:10.726 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-additional-file.result.code: 0 +Sep 5 12:24:10.727 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-ojson.result.systemoutjson: +Sep 5 12:24:10.727 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-semver-with-no-v.result.err: +Sep 5 12:24:10.727 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-additional-file-duplicate.result.systemoutjson: +Sep 5 12:24:10.727 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable venom.datetime: 2023-09-05T12:24:01-06:00 +Sep 5 12:24:10.727 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-semver-with-no-v.result.systemerr: Error: you must use valid semver for all target versions with a leading 'v' - got foo 1.0.0 +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:10.037390 91435 root.go:471] you must use valid semver for all target versions with a leading 'v' - got foo 1.0.0 +Sep 5 12:24:10.727 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemout: +Sep 5 12:24:10.727 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-ojson.result.systemerrjson: +Sep 5 12:24:10.727 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-ojson.result.err: +Sep 5 12:24:10.727 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable venom.testsuite.shortName: 03-cli-validation +Sep 5 12:24:10.727 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemoutjson: +Sep 5 12:24:10.727 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-column-list-to-custom.result.timeseconds: 0.112155375 +Sep 5 12:24:10.727 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-additional-file.result.timeseconds: 0.114023958 +Sep 5 12:24:10.727 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-ojson.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:10.727 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable venom.testsuite.filepath: tests/03-cli-validation.yaml +Sep 5 12:24:10.727 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-column-list-to-custom.__type__: Result +Sep 5 12:24:10.727 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-semver-with-no-v.result.code: 1 +Sep 5 12:24:10.727 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-column-list-to-custom.result.code: 1 +Sep 5 12:24:10.727 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-additional-file-duplicate.result.code: 1 +Sep 5 12:24:10.727 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-additional-file.result.systemoutjson: +Sep 5 12:24:10.727 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-ojson.__type__: Result +Sep 5 12:24:10.727 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable venom.testsuite.name: CLI Validation +Sep 5 12:24:10.727 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-ojson.result.systemout: KIND NAME DEPRECATED IN REMOVED IN REPLACEMENT REPL AVAIL IN COMPONENT +Deployment extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +NetworkPolicy extensions/v1beta1 v1.9.0 v1.16.0 networking.k8s.io/v1 v1.8.0 k8s +Ingress extensions/v1beta1 v1.14.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +Ingress networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +IngressClass networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +DaemonSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +DaemonSet extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +PodSecurityPolicy extensions/v1beta1 v1.10.0 v1.16.0 policy/v1beta1 v1.10.0 k8s +PodSecurityPolicy policy/v1beta1 v1.21.0 v1.25.0 n/a n/a k8s +ReplicaSet extensions/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta2 n/a v1.16.0 apps/v1 v1.9.0 k8s +PriorityClass scheduling.k8s.io/v1beta1 v1.14.0 v1.22.0 scheduling.k8s.io/v1 v1.14.0 k8s +PriorityClass scheduling.k8s.io/v1alpha1 v1.14.0 v1.17.0 scheduling.k8s.io/v1 n/a k8s +CustomResourceDefinition apiextensions.k8s.io/v1beta1 v1.16.0 v1.22.0 apiextensions.k8s.io/v1 v1.16.0 k8s +MutatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ValidatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRole rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRole rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RuntimeClass node.k8s.io/v1beta1 v1.22.0 v1.25.0 node.k8s.io/v1 v1.20.0 k8s +PodDisruptionBudget policy/v1beta1 v1.21.0 v1.25.0 policy/v1 v1.21.0 k8s +PodDisruptionBudgetList policy/v1beta1 v1.21.0 v1.25.0 policy/v1 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 v1.23.0 k8s +HorizontalPodAutoscalerList autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscalerList autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +CronJob batch/v1beta1 v1.21.0 v1.25.0 batch/v1 v1.21.0 k8s +CronJobList batch/v1beta1 v1.21.0 v1.25.0 batch/v1 n/a k8s +CSINode storage.k8s.io/v1beta1 v1.17.0 v1.22.0 storage.k8s.io/v1 v1.17.0 k8s +CSIDriver storage.k8s.io/v1beta1 v1.19.0 v1.22.0 storage.k8s.io/v1 v1.19.0 k8s +CSIStorageCapacity storage.k8s.io/v1beta1 v1.24.0 v1.27.0 storage.k8s.io/v1 v1.24.0 k8s +StorageClass storage.k8s.io/v1beta1 v1.6.0 v1.22.0 storage.k8s.io/v1 v1.6.0 k8s +VolumeAttachment storage.k8s.io/v1beta1 v1.13.0 v1.22.0 storage.k8s.io/v1 v1.13.0 k8s +APIService apiregistration.k8s.io/v1beta1 v1.10.0 v1.22.0 apiregistration.k8s.io/v1 v1.10.0 k8s +TokenReview authentication.k8s.io/v1beta1 v1.6.0 v1.22.0 authentication.k8s.io/v1 v1.6.0 k8s +CertificateSigningRequest certificates.k8s.io/v1beta1 v1.19.0 v1.22.0 certificates.k8s.io/v1 v1.19.0 k8s +Lease coordination.k8s.io/v1beta1 v1.14.0 v1.22.0 coordination.k8s.io/v1 v1.14.0 k8s +Event events.k8s.io/v1beta1 v1.19.0 v1.25.0 events.k8s.io/v1 v1.19.0 k8s +EndpointSlice discovery.k8s.io/v1beta1 v1.21.0 v1.25.0 discovery.k8s.io/v1 v1.21.0 k8s +FlowControl flowcontrol.apiserver.k8s.io/v1beta1 v1.23.0 v1.26.0 flowcontrol.apiserver.k8s.io/v1beta2 n/a k8s +AuthorizationPolicies rbac.istio.io v1.4.0 v1.4.0 security.istio.io/v1beta1 n/a istio + authentication.istio.io/v1alpha1 v1.5.0 v1.6.0 security.istio.io/v1beta1 n/a istio +Certificate certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Issuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +ClusterIssuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +CertificateRequest certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Order certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Challenge certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Certificate cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +FlowSchema flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +FLowSchema flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +Sep 5 12:24:10.727 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-additional-file.result.err: +Sep 5 12:24:10.727 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-ojson.result.__len__: 7 +Sep 5 12:24:10.727 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-column-list-to-custom.result.systemerrjson: +Sep 5 12:24:10.727 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-semver-starting-with-v.__type__: Result +Sep 5 12:24:10.727 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-column-list-to-custom.result.err: +Sep 5 12:24:10.727 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable venom.timestamp: 1693938241 +Sep 5 12:24:10.727 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable venom.libdir: +Sep 5 12:24:10.727 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-additional-file.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:10.727 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-additional-file-duplicate.result.__len__: 7 +Sep 5 12:24:10.727 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-semver-with-no-v.result.__len__: 7 +Sep 5 12:24:10.727 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-ojson.result.code: 0 +Sep 5 12:24:10.727 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-additional-file.result.systemerrjson: +Sep 5 12:24:10.727 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable Pass-bad-column-list-to-markdown.result.err: +Sep 5 12:24:10.727 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] Running testcase with variable list-versions-additional-file.__type__: Result +Sep 5 12:24:10.727 [INFO] [CLI Validation] [Custom-output-with-no-columns-flag] Step #0 content is: {"assertions":["result.code ShouldEqual 1","result.systemerr ShouldContainSubstring \"when --output=custom you must specify --columns\""],"script":"pluto detect-files -d assets/deprecated116 --target-versions foo=vfoo -o custom"} +Sep 5 12:24:10.727 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-3418847389 +Sep 5 12:24:10.727 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-3418847389' +Sep 5 12:24:10.839 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] Error: when --output=custom you must specify --columns + +Sep 5 12:24:10.839 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] Usage: + +Sep 5 12:24:10.839 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] pluto detect-files [flags] + +Sep 5 12:24:10.839 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] + +Sep 5 12:24:10.839 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] Flags: + +Sep 5 12:24:10.839 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] -d, --directory string The directory to scan. If blank, defaults to current working dir. + +Sep 5 12:24:10.839 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] -h, --help help for detect-files + +Sep 5 12:24:10.839 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] + +Sep 5 12:24:10.839 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] Global Flags: + +Sep 5 12:24:10.839 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + +Sep 5 12:24:10.839 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + +Sep 5 12:24:10.839 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] --components strings A list of components to run checks for. If nil, will check for all found in versions. + +Sep 5 12:24:10.839 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + +Sep 5 12:24:10.839 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + +Sep 5 12:24:10.839 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + +Sep 5 12:24:10.839 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] --no-footer Disable footer output + +Sep 5 12:24:10.839 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + +Sep 5 12:24:10.839 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + +Sep 5 12:24:10.839 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + +Sep 5 12:24:10.839 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + +Sep 5 12:24:10.839 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] -v, --v Level number for the log level verbosity + +Sep 5 12:24:10.839 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] + +Sep 5 12:24:10.839 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] E0905 12:24:10.839706 92402 root.go:471] when --output=custom you must specify --columns + +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [Custom-output-with-no-columns-flag] [exec] result of runTestStepExecutor: {Systemout: SystemoutJSON: Systemerr:Error: when --output=custom you must specify --columns +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:10.839706 92402 root.go:471] when --output=custom you must specify --columns SystemerrJSON: Err: Code:1 TimeSeconds:0.112538958} +Sep 5 12:24:10.840 [INFO] [CLI Validation] [Custom-output-with-no-columns-flag] Ending testcase +Sep 5 12:24:10.840 [INFO] [CLI Validation] [no-output-due-to-bad-components-list] Starting testcase +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-column-list-to-custom.result.timeseconds: 0.112155375 +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable venom.testsuite.workdir: /Users/asuderma/go/src/github.com/fairwindsops/pluto/e2e/tests +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-column-list-to-custom.__type__: Result +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-semver-with-no-v.result.systemout: +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-column-list-to-custom.result.__len__: 7 +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Custom-output-with-no-columns-flag.result.__len__: 7 +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-semver-starting-with-v.result.__len__: 7 +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-semver-starting-with-v.__type__: Result +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-ojson.result.__len__: 7 +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-column-list-to-markdown.result.code: 1 +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-column-list-to-markdown.result.timeseconds: 0.112444 +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-additional-file.result.timeseconds: 0.114023958 +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable __Type__: Map +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Custom-output-with-no-columns-flag.result.systemoutjson: +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-additional-file-duplicate.result.err: +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-additional-file.result.systemerrjson: +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-column-list-to-markdown.result.err: +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable venom.datetime: 2023-09-05T12:24:01-06:00 +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-ojson.result.systemout: KIND NAME DEPRECATED IN REMOVED IN REPLACEMENT REPL AVAIL IN COMPONENT +Deployment extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +NetworkPolicy extensions/v1beta1 v1.9.0 v1.16.0 networking.k8s.io/v1 v1.8.0 k8s +Ingress extensions/v1beta1 v1.14.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +Ingress networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +IngressClass networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +DaemonSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +DaemonSet extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +PodSecurityPolicy extensions/v1beta1 v1.10.0 v1.16.0 policy/v1beta1 v1.10.0 k8s +PodSecurityPolicy policy/v1beta1 v1.21.0 v1.25.0 n/a n/a k8s +ReplicaSet extensions/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta2 n/a v1.16.0 apps/v1 v1.9.0 k8s +PriorityClass scheduling.k8s.io/v1beta1 v1.14.0 v1.22.0 scheduling.k8s.io/v1 v1.14.0 k8s +PriorityClass scheduling.k8s.io/v1alpha1 v1.14.0 v1.17.0 scheduling.k8s.io/v1 n/a k8s +CustomResourceDefinition apiextensions.k8s.io/v1beta1 v1.16.0 v1.22.0 apiextensions.k8s.io/v1 v1.16.0 k8s +MutatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ValidatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRole rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRole rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RuntimeClass node.k8s.io/v1beta1 v1.22.0 v1.25.0 node.k8s.io/v1 v1.20.0 k8s +PodDisruptionBudget policy/v1beta1 v1.21.0 v1.25.0 policy/v1 v1.21.0 k8s +PodDisruptionBudgetList policy/v1beta1 v1.21.0 v1.25.0 policy/v1 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 v1.23.0 k8s +HorizontalPodAutoscalerList autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscalerList autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +CronJob batch/v1beta1 v1.21.0 v1.25.0 batch/v1 v1.21.0 k8s +CronJobList batch/v1beta1 v1.21.0 v1.25.0 batch/v1 n/a k8s +CSINode storage.k8s.io/v1beta1 v1.17.0 v1.22.0 storage.k8s.io/v1 v1.17.0 k8s +CSIDriver storage.k8s.io/v1beta1 v1.19.0 v1.22.0 storage.k8s.io/v1 v1.19.0 k8s +CSIStorageCapacity storage.k8s.io/v1beta1 v1.24.0 v1.27.0 storage.k8s.io/v1 v1.24.0 k8s +StorageClass storage.k8s.io/v1beta1 v1.6.0 v1.22.0 storage.k8s.io/v1 v1.6.0 k8s +VolumeAttachment storage.k8s.io/v1beta1 v1.13.0 v1.22.0 storage.k8s.io/v1 v1.13.0 k8s +APIService apiregistration.k8s.io/v1beta1 v1.10.0 v1.22.0 apiregistration.k8s.io/v1 v1.10.0 k8s +TokenReview authentication.k8s.io/v1beta1 v1.6.0 v1.22.0 authentication.k8s.io/v1 v1.6.0 k8s +CertificateSigningRequest certificates.k8s.io/v1beta1 v1.19.0 v1.22.0 certificates.k8s.io/v1 v1.19.0 k8s +Lease coordination.k8s.io/v1beta1 v1.14.0 v1.22.0 coordination.k8s.io/v1 v1.14.0 k8s +Event events.k8s.io/v1beta1 v1.19.0 v1.25.0 events.k8s.io/v1 v1.19.0 k8s +EndpointSlice discovery.k8s.io/v1beta1 v1.21.0 v1.25.0 discovery.k8s.io/v1 v1.21.0 k8s +FlowControl flowcontrol.apiserver.k8s.io/v1beta1 v1.23.0 v1.26.0 flowcontrol.apiserver.k8s.io/v1beta2 n/a k8s +AuthorizationPolicies rbac.istio.io v1.4.0 v1.4.0 security.istio.io/v1beta1 n/a istio + authentication.istio.io/v1alpha1 v1.5.0 v1.6.0 security.istio.io/v1beta1 n/a istio +Certificate certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Issuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +ClusterIssuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +CertificateRequest certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Order certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Challenge certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Certificate cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +FlowSchema flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +FLowSchema flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Custom-output-with-no-columns-flag.__type__: Result +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-additional-file-duplicate.result.systemoutjson: +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-column-list-to-custom.result.systemoutjson: +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-additional-file-duplicate.result.__len__: 7 +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-column-list-to-markdown.result.systemerrjson: +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-semver-starting-with-v.result.timeseconds: 0.116887792 +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable venom.testsuite.filename: 03-cli-validation.yaml +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable venom.testsuite: CLI Validation +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-semver-with-no-v.result.__len__: 7 +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-column-list-to-markdown.result.systemout: +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-semver-with-no-v.result.systemerr: Error: you must use valid semver for all target versions with a leading 'v' - got foo 1.0.0 +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:10.037390 91435 root.go:471] you must use valid semver for all target versions with a leading 'v' - got foo 1.0.0 +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-column-list-to-markdown.result.__len__: 7 +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-semver-with-no-v.result.err: +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-additional-file-duplicate.result.systemerrjson: +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Custom-output-with-no-columns-flag.result.systemerr: Error: when --output=custom you must specify --columns +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:10.839706 92402 root.go:471] when --output=custom you must specify --columns +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-semver-with-no-v.result.systemerrjson: +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-additional-file.result.systemout: KIND NAME DEPRECATED IN REMOVED IN REPLACEMENT REPL AVAIL IN COMPONENT +Deployment extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +Deployment apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +StatefulSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +NetworkPolicy extensions/v1beta1 v1.9.0 v1.16.0 networking.k8s.io/v1 v1.8.0 k8s +Ingress extensions/v1beta1 v1.14.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +Ingress networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +IngressClass networking.k8s.io/v1beta1 v1.19.0 v1.22.0 networking.k8s.io/v1 v1.19.0 k8s +DaemonSet apps/v1beta2 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +DaemonSet extensions/v1beta1 v1.9.0 v1.16.0 apps/v1 v1.9.0 k8s +PodSecurityPolicy extensions/v1beta1 v1.10.0 v1.16.0 policy/v1beta1 v1.10.0 k8s +PodSecurityPolicy policy/v1beta1 v1.21.0 v1.25.0 n/a n/a k8s +ReplicaSet extensions/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta1 n/a v1.16.0 apps/v1 v1.9.0 k8s +ReplicaSet apps/v1beta2 n/a v1.16.0 apps/v1 v1.9.0 k8s +PriorityClass scheduling.k8s.io/v1beta1 v1.14.0 v1.22.0 scheduling.k8s.io/v1 v1.14.0 k8s +PriorityClass scheduling.k8s.io/v1alpha1 v1.14.0 v1.17.0 scheduling.k8s.io/v1 n/a k8s +CustomResourceDefinition apiextensions.k8s.io/v1beta1 v1.16.0 v1.22.0 apiextensions.k8s.io/v1 v1.16.0 k8s +MutatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ValidatingWebhookConfiguration admissionregistration.k8s.io/v1beta1 v1.16.0 v1.22.0 admissionregistration.k8s.io/v1 v1.16.0 k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRole rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleBinding rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 v1.8.0 k8s +RoleList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1alpha1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRole rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +ClusterRoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +Role rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBinding rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RoleBindingList rbac.authorization.k8s.io/v1beta1 v1.17.0 v1.22.0 rbac.authorization.k8s.io/v1 n/a k8s +RuntimeClass node.k8s.io/v1beta1 v1.22.0 v1.25.0 node.k8s.io/v1 v1.20.0 k8s +PodDisruptionBudget policy/v1beta1 v1.21.0 v1.25.0 policy/v1 v1.21.0 k8s +PodDisruptionBudgetList policy/v1beta1 v1.21.0 v1.25.0 policy/v1 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 v1.23.0 k8s +HorizontalPodAutoscalerList autoscaling/v2beta1 v1.22.0 v1.25.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscaler autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +HorizontalPodAutoscalerList autoscaling/v2beta2 v1.23.0 v1.26.0 autoscaling/v2 n/a k8s +CronJob batch/v1beta1 v1.21.0 v1.25.0 batch/v1 v1.21.0 k8s +CronJobList batch/v1beta1 v1.21.0 v1.25.0 batch/v1 n/a k8s +CSINode storage.k8s.io/v1beta1 v1.17.0 v1.22.0 storage.k8s.io/v1 v1.17.0 k8s +CSIDriver storage.k8s.io/v1beta1 v1.19.0 v1.22.0 storage.k8s.io/v1 v1.19.0 k8s +CSIStorageCapacity storage.k8s.io/v1beta1 v1.24.0 v1.27.0 storage.k8s.io/v1 v1.24.0 k8s +StorageClass storage.k8s.io/v1beta1 v1.6.0 v1.22.0 storage.k8s.io/v1 v1.6.0 k8s +VolumeAttachment storage.k8s.io/v1beta1 v1.13.0 v1.22.0 storage.k8s.io/v1 v1.13.0 k8s +APIService apiregistration.k8s.io/v1beta1 v1.10.0 v1.22.0 apiregistration.k8s.io/v1 v1.10.0 k8s +TokenReview authentication.k8s.io/v1beta1 v1.6.0 v1.22.0 authentication.k8s.io/v1 v1.6.0 k8s +CertificateSigningRequest certificates.k8s.io/v1beta1 v1.19.0 v1.22.0 certificates.k8s.io/v1 v1.19.0 k8s +Lease coordination.k8s.io/v1beta1 v1.14.0 v1.22.0 coordination.k8s.io/v1 v1.14.0 k8s +Event events.k8s.io/v1beta1 v1.19.0 v1.25.0 events.k8s.io/v1 v1.19.0 k8s +EndpointSlice discovery.k8s.io/v1beta1 v1.21.0 v1.25.0 discovery.k8s.io/v1 v1.21.0 k8s +FlowControl flowcontrol.apiserver.k8s.io/v1beta1 v1.23.0 v1.26.0 flowcontrol.apiserver.k8s.io/v1beta2 n/a k8s +AuthorizationPolicies rbac.istio.io v1.4.0 v1.4.0 security.istio.io/v1beta1 n/a istio + authentication.istio.io/v1alpha1 v1.5.0 v1.6.0 security.istio.io/v1beta1 n/a istio +Certificate certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Issuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +ClusterIssuer certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +CertificateRequest certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Order certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Challenge certmanager.k8s.io/v1alpha1 v0.11.0 v0.11.0 cert-manager.io/v1alpha2 n/a cert-manager +Certificate cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Certificate cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Issuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +ClusterIssuer cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +CertificateRequest cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Order acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha2 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1alpha3 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +Challenge acme.cert-manager.io/v1beta1 v1.4.0 v1.6.0 cert-manager.io/v1 n/a cert-manager +FlowSchema flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta2 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +PriorityLevelConfiguration flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +FLowSchema flowcontrol.apiserver.k8s.io/v1beta1 v1.24.0 v1.29.0 flowcontrol.apiserver.k8s.io/v1beta3 n/a k8s +AnotherCRD someother/v1beta1 v1.9.0 v1.16.0 apps/v1 n/a other +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-semver-with-no-v.result.systemoutjson: +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-ojson.__type__: Result +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-column-list-to-custom.result.systemout: +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable venom.testcase: no-output-due-to-bad-components-list +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-ojson.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-column-list-to-markdown.__type__: Result +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable venom.outputdir: +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-additional-file.result.systemerr: + +Want more? Automate Pluto for free with Fairwinds Insights! + 🚀 https://fairwinds.com/insights-signup/pluto 🚀 +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Custom-output-with-no-columns-flag.result.code: 1 +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-semver-with-no-v.result.code: 1 +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-ojson.result.err: +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable venom.testsuite.filepath: tests/03-cli-validation.yaml +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-ojson.result.timeseconds: 0.113857417 +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-additional-file.result.code: 0 +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemoutjson: +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemerrjson: +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-ojson.result.code: 0 +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-ojson.result.systemoutjson: +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-additional-file-duplicate.result.code: 1 +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-additional-file.result.systemoutjson: +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Custom-output-with-no-columns-flag.result.err: +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable venom.testsuite.name: CLI Validation +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemerr: Error: you must use valid semver for all target versions with a leading 'v' - got foo vfoo +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:10.154991 91573 root.go:471] you must use valid semver for all target versions with a leading 'v' - got foo vfoo +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-column-list-to-custom.result.systemerr: Error: invalid custom column option FOO - must be one of [NAME FILEPATH NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN COMPONENT REPL AVAIL REPL AVAIL IN] +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:10.611775 92125 root.go:471] invalid custom column option FOO - must be one of [NAME FILEPATH NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN COMPONENT REPL AVAIL REPL AVAIL IN] +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-ojson.result.systemerrjson: +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Custom-output-with-no-columns-flag.result.timeseconds: 0.112538958 +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-additional-file.result.err: +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-additional-file-duplicate.result.timeseconds: 0.112189708 +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-additional-file.__type__: Result +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-additional-file-duplicate.result.systemout: +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable venom.libdir: +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable venom.timestamp: 1693938241 +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-semver-starting-with-v.result.systemout: +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Custom-output-with-no-columns-flag.result.systemout: +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Custom-output-with-no-columns-flag.result.systemerrjson: +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-semver-with-no-v.__type__: Result +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-column-list-to-markdown.result.systemerr: Error: invalid custom column option FOO - must be one of [NAME FILEPATH NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN COMPONENT REPL AVAIL REPL AVAIL IN] +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:10.725212 92263 root.go:471] invalid custom column option FOO - must be one of [NAME FILEPATH NAMESPACE KIND VERSION REPLACEMENT DEPRECATED DEPRECATED IN REMOVED REMOVED IN COMPONENT REPL AVAIL REPL AVAIL IN] +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable venom.testsuite.shortName: 03-cli-validation +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-semver-with-no-v.result.timeseconds: 0.130391333 +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-semver-starting-with-v.result.err: +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-column-list-to-custom.result.err: +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-semver-starting-with-v.result.code: 1 +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-column-list-to-markdown.result.systemoutjson: +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-additional-file-duplicate.result.systemerr: Error: duplicate cannot be added to defaults: Deployment extensions/v1beta1 +Usage: + pluto list-versions [flags] + +Flags: + -h, --help help for list-versions + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:10.383613 91849 root.go:471] duplicate cannot be added to defaults: Deployment extensions/v1beta1 +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-column-list-to-custom.result.code: 1 +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable __Len__: 8 +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable venom.executable: /Users/asuderma/.asdf/installs/venom/1.1.0/bin/venom +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-additional-file.result.__len__: 7 +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable Pass-bad-column-list-to-custom.result.systemerrjson: +Sep 5 12:24:10.840 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] Running testcase with variable list-versions-additional-file-duplicate.__type__: Result +Sep 5 12:24:10.841 [INFO] [CLI Validation] [no-output-due-to-bad-components-list] Step #0 content is: {"assertions":["result.code ShouldEqual 1","result.systemerr ShouldContainSubstring \"cannot find deprecations for zero components\""],"script":"pluto detect-files -d assets/ --components=foo"} +Sep 5 12:24:10.841 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] work with tmp file /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-50974496 +Sep 5 12:24:10.841 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] teststep exec '/bin/sh /var/folders/ft/kymt56hj683cv6wxc1r8cl800000gn/T/venom-50974496' +Sep 5 12:24:10.954 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] Error: cannot find deprecations for zero components + +Sep 5 12:24:10.954 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] Usage: + +Sep 5 12:24:10.954 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] pluto detect-files [flags] + +Sep 5 12:24:10.954 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] + +Sep 5 12:24:10.954 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] Flags: + +Sep 5 12:24:10.954 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] -d, --directory string The directory to scan. If blank, defaults to current working dir. + +Sep 5 12:24:10.954 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] -h, --help help for detect-files + +Sep 5 12:24:10.954 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] + +Sep 5 12:24:10.954 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] Global Flags: + +Sep 5 12:24:10.954 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + +Sep 5 12:24:10.954 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + +Sep 5 12:24:10.954 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] --components strings A list of components to run checks for. If nil, will check for all found in versions. + +Sep 5 12:24:10.954 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + +Sep 5 12:24:10.954 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + +Sep 5 12:24:10.954 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + +Sep 5 12:24:10.954 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] --no-footer Disable footer output + +Sep 5 12:24:10.954 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + +Sep 5 12:24:10.954 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + +Sep 5 12:24:10.954 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + +Sep 5 12:24:10.954 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + +Sep 5 12:24:10.954 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] -v, --v Level number for the log level verbosity + +Sep 5 12:24:10.954 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] + +Sep 5 12:24:10.954 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] E0905 12:24:10.954631 92540 root.go:471] cannot find deprecations for zero components + +Sep 5 12:24:10.955 [DEBU] [CLI Validation] [no-output-due-to-bad-components-list] [exec] result of runTestStepExecutor: {Systemout: SystemoutJSON: Systemerr:Error: cannot find deprecations for zero components +Usage: + pluto detect-files [flags] + +Flags: + -d, --directory string The directory to scan. If blank, defaults to current working dir. + -h, --help help for detect-files + +Global Flags: + -f, --additional-versions string Additional deprecated versions file to add to the list. Cannot contain any existing versions + --columns strings A list of columns to print. Mandatory when using --output custom, optional with --output markdown + --components strings A list of components to run checks for. If nil, will check for all found in versions. + --ignore-deprecations Ignore the default behavior to exit 2 if deprecated apiVersions are found. + --ignore-removals Ignore the default behavior to exit 3 if removed apiVersions are found. + --ignore-unavailable-replacements Ignore the default behavior to exit 4 if deprecated but unavailable apiVersions are found. + --no-footer Disable footer output + -H, --no-headers When using the default or custom-column output format, don't print headers (default print headers). + -r, --only-show-removed Only display the apiVersions that have been removed in the target version. + -o, --output string The output format to use. (normal|wide|custom|json|yaml|markdown|csv) (default "normal") + -t, --target-versions stringToString A map of targetVersions to use. This flag supersedes all defaults in version files. (default []) + -v, --v Level number for the log level verbosity + +E0905 12:24:10.954631 92540 root.go:471] cannot find deprecations for zero components SystemerrJSON: Err: Code:1 TimeSeconds:0.113777292} +Sep 5 12:24:10.955 [INFO] [CLI Validation] [no-output-due-to-bad-components-list] Ending testcase +Sep 5 12:24:10.955 [INFO] [CLI Validation] Ending testsuite +Sep 5 12:24:10.955 [DEBU] final status: FAIL