├── .github ├── dependabot.yml └── workflows │ ├── ci-test.yml │ ├── codeql-analysis.yml │ ├── dependency-review.yml │ └── release.yml ├── .gitignore ├── .goreleaser.yml ├── .krew.yaml ├── .pre-commit-config.yaml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── assets ├── deployment-replicaset.png ├── pod.png ├── service.png └── statefulset.png ├── cmd ├── main.go └── main_test.go ├── deploy └── krew │ └── plugin.yaml ├── go.mod ├── go.sum ├── pkg ├── input │ └── input.go └── plugin │ ├── plugin.go │ ├── render_engine.go │ ├── render_engine_test.go │ ├── renderable.go │ ├── template_functions_dynamic.go │ ├── template_functions_static.go │ ├── template_functions_static_test.go │ ├── templates │ ├── CronJob.tmpl │ ├── DaemonSet.tmpl │ ├── Deployment.tmpl │ ├── Event.tmpl │ ├── HorizontalPodAutoscaler.tmpl │ ├── Ingress.tmpl │ ├── Job.tmpl │ ├── Lease.tmpl │ ├── NamespaceConfig.tmpl │ ├── Node.tmpl │ ├── PersistentVolume.tmpl │ ├── PersistentVolumeClaim.tmpl │ ├── Pod.tmpl │ ├── ReplicaSet.tmpl │ ├── ResourceQuota.tmpl │ ├── Service.tmpl │ ├── StatefulSet.tmpl │ └── common.tmpl │ └── templates_common_test.go ├── staticcheck.conf └── tests ├── artifacts ├── README.md ├── cr-dbconn-mymysql-deleted.out ├── cr-dbconn-mymysql-deleted.yaml ├── cr-dbconn-mymysql.out ├── cr-dbconn-mymysql.yaml ├── crd-dbconn.out ├── crd-dbconn.yaml ├── cronjob-regular-active.out ├── cronjob-regular-active.yaml ├── cronjob-regular-new.out ├── cronjob-regular-new.yaml ├── cronjob-regular-scheduled-and-active.out ├── cronjob-regular-scheduled-and-active.yaml ├── cronjob-regular-scheduled.out ├── cronjob-regular-scheduled.yaml ├── deployment-healthy.out ├── deployment-healthy.yaml ├── deployment-initial-progressing.out ├── deployment-initial-progressing.yaml ├── deployment-new.out ├── deployment-new.yaml ├── deployment-non-existing-image.out ├── deployment-non-existing-image.yaml ├── deployment-ongoing-rollout.out ├── deployment-ongoing-rollout.yaml ├── deployment-progressing.out ├── deployment-progressing.yaml ├── deployment-unavailable-replicas.out ├── deployment-unavailable-replicas.yaml ├── ingress-regular.out ├── ingress-regular.yaml ├── ingress-with-problems.out ├── ingress-with-problems.yaml ├── job-active.out ├── job-active.yaml ├── job-complete.out ├── job-complete.yaml ├── job-new.out ├── job-new.yaml ├── multiple-2-pods-docs.out ├── multiple-2-pods-docs.yaml ├── multiple-2-pods-list.out ├── multiple-2-pods-list.yaml ├── node-aks.out ├── node-aks.yaml ├── node-and-service.out ├── node-and-service.yaml ├── node-minikube-with-metrics.out ├── node-minikube-with-metrics.yaml ├── node-minikube.out ├── node-minikube.yaml ├── pod-deleted-due-to-missing-container.out ├── pod-deleted-due-to-missing-container.yaml ├── pod-job-completed.out ├── pod-job-completed.yaml ├── pod-marked-for-deletion-completed.out ├── pod-marked-for-deletion-completed.yaml ├── pod-marked-for-deletion.out ├── pod-marked-for-deletion.yaml ├── pod-missing-pvc.out ├── pod-missing-pvc.yaml ├── pod-non-existing-image.out ├── pod-non-existing-image.yaml ├── pod-pending-scheduled.out ├── pod-pending-scheduled.yaml ├── pod-pending-waiting-container.out ├── pod-pending-waiting-container.yaml ├── pod-pending.out ├── pod-pending.yaml ├── pod-standalone-ineractive.out ├── pod-standalone-ineractive.yaml ├── pod-standalone.out ├── pod-standalone.yaml ├── pod-with-metrics-and-events.out ├── pod-with-metrics-and-events.yaml ├── rs-all-replicas-ready.out ├── rs-all-replicas-ready.yaml ├── rs-no-ready-replicas.out ├── rs-no-ready-replicas.yaml ├── rs-non-existing-image.out ├── rs-non-existing-image.yaml ├── rs-not-all-replicas-ready.out ├── rs-not-all-replicas-ready.yaml ├── rs-ongoing-rollout.out ├── rs-ongoing-rollout.yaml ├── rs-replicas-0.out ├── rs-replicas-0.yaml ├── rs-superseeded.out ├── rs-superseeded.yaml ├── service-clusterip-missing-endpoint.out ├── service-clusterip-missing-endpoint.yaml ├── service-clusterip-multiport-with-endpoints.out ├── service-clusterip-multiport-with-endpoints.yaml ├── service-clusterip-with-endpoint.out ├── service-clusterip-with-endpoint.yaml ├── service-clusterip-with-no-endpoint.out ├── service-clusterip-with-no-endpoint.yaml ├── service-with-not-ready-addresses.out ├── service-with-not-ready-addresses.yaml ├── sts-inital-rollout-done.out ├── sts-inital-rollout-done.yaml ├── sts-new.out ├── sts-new.yaml ├── sts-ongoing-update-rollout-with-diff.out ├── sts-ongoing-update-rollout-with-diff.yaml ├── sts-ongoing-update-rollout.out ├── sts-ongoing-update-rollout.yaml ├── sts-stuck-initial-rollout.out ├── sts-stuck-initial-rollout.yaml ├── sts-suspended.out └── sts-suspended.yaml └── e2e-artifacts ├── sts-with-ingress.pod.out └── sts-with-ingress.yaml /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/.github/workflows/ci-test.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/dependency-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/.github/workflows/dependency-review.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/.gitignore -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /.krew.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/.krew.yaml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/README.md -------------------------------------------------------------------------------- /assets/deployment-replicaset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/assets/deployment-replicaset.png -------------------------------------------------------------------------------- /assets/pod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/assets/pod.png -------------------------------------------------------------------------------- /assets/service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/assets/service.png -------------------------------------------------------------------------------- /assets/statefulset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/assets/statefulset.png -------------------------------------------------------------------------------- /cmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/cmd/main.go -------------------------------------------------------------------------------- /cmd/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/cmd/main_test.go -------------------------------------------------------------------------------- /deploy/krew/plugin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/deploy/krew/plugin.yaml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/go.sum -------------------------------------------------------------------------------- /pkg/input/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/pkg/input/input.go -------------------------------------------------------------------------------- /pkg/plugin/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/pkg/plugin/plugin.go -------------------------------------------------------------------------------- /pkg/plugin/render_engine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/pkg/plugin/render_engine.go -------------------------------------------------------------------------------- /pkg/plugin/render_engine_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/pkg/plugin/render_engine_test.go -------------------------------------------------------------------------------- /pkg/plugin/renderable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/pkg/plugin/renderable.go -------------------------------------------------------------------------------- /pkg/plugin/template_functions_dynamic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/pkg/plugin/template_functions_dynamic.go -------------------------------------------------------------------------------- /pkg/plugin/template_functions_static.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/pkg/plugin/template_functions_static.go -------------------------------------------------------------------------------- /pkg/plugin/template_functions_static_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/pkg/plugin/template_functions_static_test.go -------------------------------------------------------------------------------- /pkg/plugin/templates/CronJob.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/pkg/plugin/templates/CronJob.tmpl -------------------------------------------------------------------------------- /pkg/plugin/templates/DaemonSet.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/pkg/plugin/templates/DaemonSet.tmpl -------------------------------------------------------------------------------- /pkg/plugin/templates/Deployment.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/pkg/plugin/templates/Deployment.tmpl -------------------------------------------------------------------------------- /pkg/plugin/templates/Event.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/pkg/plugin/templates/Event.tmpl -------------------------------------------------------------------------------- /pkg/plugin/templates/HorizontalPodAutoscaler.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/pkg/plugin/templates/HorizontalPodAutoscaler.tmpl -------------------------------------------------------------------------------- /pkg/plugin/templates/Ingress.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/pkg/plugin/templates/Ingress.tmpl -------------------------------------------------------------------------------- /pkg/plugin/templates/Job.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/pkg/plugin/templates/Job.tmpl -------------------------------------------------------------------------------- /pkg/plugin/templates/Lease.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/pkg/plugin/templates/Lease.tmpl -------------------------------------------------------------------------------- /pkg/plugin/templates/NamespaceConfig.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/pkg/plugin/templates/NamespaceConfig.tmpl -------------------------------------------------------------------------------- /pkg/plugin/templates/Node.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/pkg/plugin/templates/Node.tmpl -------------------------------------------------------------------------------- /pkg/plugin/templates/PersistentVolume.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/pkg/plugin/templates/PersistentVolume.tmpl -------------------------------------------------------------------------------- /pkg/plugin/templates/PersistentVolumeClaim.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/pkg/plugin/templates/PersistentVolumeClaim.tmpl -------------------------------------------------------------------------------- /pkg/plugin/templates/Pod.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/pkg/plugin/templates/Pod.tmpl -------------------------------------------------------------------------------- /pkg/plugin/templates/ReplicaSet.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/pkg/plugin/templates/ReplicaSet.tmpl -------------------------------------------------------------------------------- /pkg/plugin/templates/ResourceQuota.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/pkg/plugin/templates/ResourceQuota.tmpl -------------------------------------------------------------------------------- /pkg/plugin/templates/Service.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/pkg/plugin/templates/Service.tmpl -------------------------------------------------------------------------------- /pkg/plugin/templates/StatefulSet.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/pkg/plugin/templates/StatefulSet.tmpl -------------------------------------------------------------------------------- /pkg/plugin/templates/common.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/pkg/plugin/templates/common.tmpl -------------------------------------------------------------------------------- /pkg/plugin/templates_common_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/pkg/plugin/templates_common_test.go -------------------------------------------------------------------------------- /staticcheck.conf: -------------------------------------------------------------------------------- 1 | checks = ["all", "-ST1000"] 2 | -------------------------------------------------------------------------------- /tests/artifacts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/README.md -------------------------------------------------------------------------------- /tests/artifacts/cr-dbconn-mymysql-deleted.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/cr-dbconn-mymysql-deleted.out -------------------------------------------------------------------------------- /tests/artifacts/cr-dbconn-mymysql-deleted.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/cr-dbconn-mymysql-deleted.yaml -------------------------------------------------------------------------------- /tests/artifacts/cr-dbconn-mymysql.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/cr-dbconn-mymysql.out -------------------------------------------------------------------------------- /tests/artifacts/cr-dbconn-mymysql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/cr-dbconn-mymysql.yaml -------------------------------------------------------------------------------- /tests/artifacts/crd-dbconn.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/crd-dbconn.out -------------------------------------------------------------------------------- /tests/artifacts/crd-dbconn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/crd-dbconn.yaml -------------------------------------------------------------------------------- /tests/artifacts/cronjob-regular-active.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/cronjob-regular-active.out -------------------------------------------------------------------------------- /tests/artifacts/cronjob-regular-active.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/cronjob-regular-active.yaml -------------------------------------------------------------------------------- /tests/artifacts/cronjob-regular-new.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/cronjob-regular-new.out -------------------------------------------------------------------------------- /tests/artifacts/cronjob-regular-new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/cronjob-regular-new.yaml -------------------------------------------------------------------------------- /tests/artifacts/cronjob-regular-scheduled-and-active.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/cronjob-regular-scheduled-and-active.out -------------------------------------------------------------------------------- /tests/artifacts/cronjob-regular-scheduled-and-active.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/cronjob-regular-scheduled-and-active.yaml -------------------------------------------------------------------------------- /tests/artifacts/cronjob-regular-scheduled.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/cronjob-regular-scheduled.out -------------------------------------------------------------------------------- /tests/artifacts/cronjob-regular-scheduled.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/cronjob-regular-scheduled.yaml -------------------------------------------------------------------------------- /tests/artifacts/deployment-healthy.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/deployment-healthy.out -------------------------------------------------------------------------------- /tests/artifacts/deployment-healthy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/deployment-healthy.yaml -------------------------------------------------------------------------------- /tests/artifacts/deployment-initial-progressing.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/deployment-initial-progressing.out -------------------------------------------------------------------------------- /tests/artifacts/deployment-initial-progressing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/deployment-initial-progressing.yaml -------------------------------------------------------------------------------- /tests/artifacts/deployment-new.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/deployment-new.out -------------------------------------------------------------------------------- /tests/artifacts/deployment-new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/deployment-new.yaml -------------------------------------------------------------------------------- /tests/artifacts/deployment-non-existing-image.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/deployment-non-existing-image.out -------------------------------------------------------------------------------- /tests/artifacts/deployment-non-existing-image.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/deployment-non-existing-image.yaml -------------------------------------------------------------------------------- /tests/artifacts/deployment-ongoing-rollout.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/deployment-ongoing-rollout.out -------------------------------------------------------------------------------- /tests/artifacts/deployment-ongoing-rollout.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/deployment-ongoing-rollout.yaml -------------------------------------------------------------------------------- /tests/artifacts/deployment-progressing.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/deployment-progressing.out -------------------------------------------------------------------------------- /tests/artifacts/deployment-progressing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/deployment-progressing.yaml -------------------------------------------------------------------------------- /tests/artifacts/deployment-unavailable-replicas.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/deployment-unavailable-replicas.out -------------------------------------------------------------------------------- /tests/artifacts/deployment-unavailable-replicas.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/deployment-unavailable-replicas.yaml -------------------------------------------------------------------------------- /tests/artifacts/ingress-regular.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/ingress-regular.out -------------------------------------------------------------------------------- /tests/artifacts/ingress-regular.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/ingress-regular.yaml -------------------------------------------------------------------------------- /tests/artifacts/ingress-with-problems.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/ingress-with-problems.out -------------------------------------------------------------------------------- /tests/artifacts/ingress-with-problems.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/ingress-with-problems.yaml -------------------------------------------------------------------------------- /tests/artifacts/job-active.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/job-active.out -------------------------------------------------------------------------------- /tests/artifacts/job-active.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/job-active.yaml -------------------------------------------------------------------------------- /tests/artifacts/job-complete.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/job-complete.out -------------------------------------------------------------------------------- /tests/artifacts/job-complete.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/job-complete.yaml -------------------------------------------------------------------------------- /tests/artifacts/job-new.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/job-new.out -------------------------------------------------------------------------------- /tests/artifacts/job-new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/job-new.yaml -------------------------------------------------------------------------------- /tests/artifacts/multiple-2-pods-docs.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/multiple-2-pods-docs.out -------------------------------------------------------------------------------- /tests/artifacts/multiple-2-pods-docs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/multiple-2-pods-docs.yaml -------------------------------------------------------------------------------- /tests/artifacts/multiple-2-pods-list.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/multiple-2-pods-list.out -------------------------------------------------------------------------------- /tests/artifacts/multiple-2-pods-list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/multiple-2-pods-list.yaml -------------------------------------------------------------------------------- /tests/artifacts/node-aks.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/node-aks.out -------------------------------------------------------------------------------- /tests/artifacts/node-aks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/node-aks.yaml -------------------------------------------------------------------------------- /tests/artifacts/node-and-service.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/node-and-service.out -------------------------------------------------------------------------------- /tests/artifacts/node-and-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/node-and-service.yaml -------------------------------------------------------------------------------- /tests/artifacts/node-minikube-with-metrics.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/node-minikube-with-metrics.out -------------------------------------------------------------------------------- /tests/artifacts/node-minikube-with-metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/node-minikube-with-metrics.yaml -------------------------------------------------------------------------------- /tests/artifacts/node-minikube.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/node-minikube.out -------------------------------------------------------------------------------- /tests/artifacts/node-minikube.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/node-minikube.yaml -------------------------------------------------------------------------------- /tests/artifacts/pod-deleted-due-to-missing-container.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/pod-deleted-due-to-missing-container.out -------------------------------------------------------------------------------- /tests/artifacts/pod-deleted-due-to-missing-container.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/pod-deleted-due-to-missing-container.yaml -------------------------------------------------------------------------------- /tests/artifacts/pod-job-completed.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/pod-job-completed.out -------------------------------------------------------------------------------- /tests/artifacts/pod-job-completed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/pod-job-completed.yaml -------------------------------------------------------------------------------- /tests/artifacts/pod-marked-for-deletion-completed.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/pod-marked-for-deletion-completed.out -------------------------------------------------------------------------------- /tests/artifacts/pod-marked-for-deletion-completed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/pod-marked-for-deletion-completed.yaml -------------------------------------------------------------------------------- /tests/artifacts/pod-marked-for-deletion.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/pod-marked-for-deletion.out -------------------------------------------------------------------------------- /tests/artifacts/pod-marked-for-deletion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/pod-marked-for-deletion.yaml -------------------------------------------------------------------------------- /tests/artifacts/pod-missing-pvc.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/pod-missing-pvc.out -------------------------------------------------------------------------------- /tests/artifacts/pod-missing-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/pod-missing-pvc.yaml -------------------------------------------------------------------------------- /tests/artifacts/pod-non-existing-image.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/pod-non-existing-image.out -------------------------------------------------------------------------------- /tests/artifacts/pod-non-existing-image.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/pod-non-existing-image.yaml -------------------------------------------------------------------------------- /tests/artifacts/pod-pending-scheduled.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/pod-pending-scheduled.out -------------------------------------------------------------------------------- /tests/artifacts/pod-pending-scheduled.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/pod-pending-scheduled.yaml -------------------------------------------------------------------------------- /tests/artifacts/pod-pending-waiting-container.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/pod-pending-waiting-container.out -------------------------------------------------------------------------------- /tests/artifacts/pod-pending-waiting-container.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/pod-pending-waiting-container.yaml -------------------------------------------------------------------------------- /tests/artifacts/pod-pending.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/pod-pending.out -------------------------------------------------------------------------------- /tests/artifacts/pod-pending.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/pod-pending.yaml -------------------------------------------------------------------------------- /tests/artifacts/pod-standalone-ineractive.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/pod-standalone-ineractive.out -------------------------------------------------------------------------------- /tests/artifacts/pod-standalone-ineractive.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/pod-standalone-ineractive.yaml -------------------------------------------------------------------------------- /tests/artifacts/pod-standalone.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/pod-standalone.out -------------------------------------------------------------------------------- /tests/artifacts/pod-standalone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/pod-standalone.yaml -------------------------------------------------------------------------------- /tests/artifacts/pod-with-metrics-and-events.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/pod-with-metrics-and-events.out -------------------------------------------------------------------------------- /tests/artifacts/pod-with-metrics-and-events.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/pod-with-metrics-and-events.yaml -------------------------------------------------------------------------------- /tests/artifacts/rs-all-replicas-ready.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/rs-all-replicas-ready.out -------------------------------------------------------------------------------- /tests/artifacts/rs-all-replicas-ready.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/rs-all-replicas-ready.yaml -------------------------------------------------------------------------------- /tests/artifacts/rs-no-ready-replicas.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/rs-no-ready-replicas.out -------------------------------------------------------------------------------- /tests/artifacts/rs-no-ready-replicas.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/rs-no-ready-replicas.yaml -------------------------------------------------------------------------------- /tests/artifacts/rs-non-existing-image.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/rs-non-existing-image.out -------------------------------------------------------------------------------- /tests/artifacts/rs-non-existing-image.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/rs-non-existing-image.yaml -------------------------------------------------------------------------------- /tests/artifacts/rs-not-all-replicas-ready.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/rs-not-all-replicas-ready.out -------------------------------------------------------------------------------- /tests/artifacts/rs-not-all-replicas-ready.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/rs-not-all-replicas-ready.yaml -------------------------------------------------------------------------------- /tests/artifacts/rs-ongoing-rollout.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/rs-ongoing-rollout.out -------------------------------------------------------------------------------- /tests/artifacts/rs-ongoing-rollout.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/rs-ongoing-rollout.yaml -------------------------------------------------------------------------------- /tests/artifacts/rs-replicas-0.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/rs-replicas-0.out -------------------------------------------------------------------------------- /tests/artifacts/rs-replicas-0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/rs-replicas-0.yaml -------------------------------------------------------------------------------- /tests/artifacts/rs-superseeded.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/rs-superseeded.out -------------------------------------------------------------------------------- /tests/artifacts/rs-superseeded.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/rs-superseeded.yaml -------------------------------------------------------------------------------- /tests/artifacts/service-clusterip-missing-endpoint.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/service-clusterip-missing-endpoint.out -------------------------------------------------------------------------------- /tests/artifacts/service-clusterip-missing-endpoint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/service-clusterip-missing-endpoint.yaml -------------------------------------------------------------------------------- /tests/artifacts/service-clusterip-multiport-with-endpoints.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/service-clusterip-multiport-with-endpoints.out -------------------------------------------------------------------------------- /tests/artifacts/service-clusterip-multiport-with-endpoints.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/service-clusterip-multiport-with-endpoints.yaml -------------------------------------------------------------------------------- /tests/artifacts/service-clusterip-with-endpoint.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/service-clusterip-with-endpoint.out -------------------------------------------------------------------------------- /tests/artifacts/service-clusterip-with-endpoint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/service-clusterip-with-endpoint.yaml -------------------------------------------------------------------------------- /tests/artifacts/service-clusterip-with-no-endpoint.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/service-clusterip-with-no-endpoint.out -------------------------------------------------------------------------------- /tests/artifacts/service-clusterip-with-no-endpoint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/service-clusterip-with-no-endpoint.yaml -------------------------------------------------------------------------------- /tests/artifacts/service-with-not-ready-addresses.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/service-with-not-ready-addresses.out -------------------------------------------------------------------------------- /tests/artifacts/service-with-not-ready-addresses.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/service-with-not-ready-addresses.yaml -------------------------------------------------------------------------------- /tests/artifacts/sts-inital-rollout-done.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/sts-inital-rollout-done.out -------------------------------------------------------------------------------- /tests/artifacts/sts-inital-rollout-done.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/sts-inital-rollout-done.yaml -------------------------------------------------------------------------------- /tests/artifacts/sts-new.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/sts-new.out -------------------------------------------------------------------------------- /tests/artifacts/sts-new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/sts-new.yaml -------------------------------------------------------------------------------- /tests/artifacts/sts-ongoing-update-rollout-with-diff.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/sts-ongoing-update-rollout-with-diff.out -------------------------------------------------------------------------------- /tests/artifacts/sts-ongoing-update-rollout-with-diff.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/sts-ongoing-update-rollout-with-diff.yaml -------------------------------------------------------------------------------- /tests/artifacts/sts-ongoing-update-rollout.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/sts-ongoing-update-rollout.out -------------------------------------------------------------------------------- /tests/artifacts/sts-ongoing-update-rollout.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/sts-ongoing-update-rollout.yaml -------------------------------------------------------------------------------- /tests/artifacts/sts-stuck-initial-rollout.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/sts-stuck-initial-rollout.out -------------------------------------------------------------------------------- /tests/artifacts/sts-stuck-initial-rollout.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/sts-stuck-initial-rollout.yaml -------------------------------------------------------------------------------- /tests/artifacts/sts-suspended.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/sts-suspended.out -------------------------------------------------------------------------------- /tests/artifacts/sts-suspended.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/artifacts/sts-suspended.yaml -------------------------------------------------------------------------------- /tests/e2e-artifacts/sts-with-ingress.pod.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/e2e-artifacts/sts-with-ingress.pod.out -------------------------------------------------------------------------------- /tests/e2e-artifacts/sts-with-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergerx/kubectl-status/HEAD/tests/e2e-artifacts/sts-with-ingress.yaml --------------------------------------------------------------------------------