├── .circleci └── config.yml ├── .coveragerc ├── .flake8 ├── .github └── pull_request_template.md ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── docs └── index.html ├── requirements-dev.txt ├── requirements.txt ├── setup.py ├── src └── KubeLibrary │ ├── KubeLibrary.py │ ├── __init__.py │ ├── exceptions.py │ └── version.py ├── test-objects-chart ├── .helmignore ├── Chart.yaml ├── README.md ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── cluster_role.yaml │ ├── cluster_role_bind.yaml │ ├── cronjob.yaml │ ├── daemonset.yaml │ ├── deployment.yaml │ ├── hpa.yaml │ ├── ingress.yaml │ ├── job.yml │ ├── role.yaml │ ├── rolebinding.yaml │ ├── service.yaml │ ├── serviceaccount.yaml │ └── tests │ │ └── test-connection.yaml └── values.yaml ├── test ├── __init__.py ├── resources │ ├── cluster_role.json │ ├── cluster_role_bind.json │ ├── configmap.json │ ├── cronjob.json │ ├── cronjob_details.json │ ├── daemonset.json │ ├── daemonset_details.json │ ├── deployment.json │ ├── endpoints.json │ ├── hpa.json │ ├── hpa_details.json │ ├── ingress.json │ ├── ingress_details.json │ ├── jobs.json │ ├── k3d │ ├── multiple_context │ ├── namespaces.json │ ├── node_info.json │ ├── pod.json │ ├── pod_status.json │ ├── pods.json │ ├── pvc.json │ ├── replicaset.json │ ├── role.json │ ├── rolebinding.json │ ├── secrets.json │ ├── service.json │ ├── service_accounts.json │ ├── service_details.json │ └── sts.json └── test_KubeLibrary.py └── testcases ├── Dockerfile ├── cluster_role ├── cluster_role.robot └── cluster_role_kw.robot ├── configmap ├── configmap.robot └── configmap_kw.robot ├── connect_GKE_clusters.robot ├── cronjob ├── cronjob.robot └── cronjob_kw.robot ├── custom_objects ├── ambassador_crds.robot └── custom_objects.robot ├── daemonset ├── daemonsets.robot └── daemonsets_kw.robot ├── deployment ├── deployment.robot └── deployment_kw.robot ├── dynamic_client ├── dynamic_client.robot ├── dynamic_client_kw.robot └── resources │ ├── pod.yaml │ ├── pod_generated_name.yaml │ ├── svc.yaml │ └── svc_lookup.yaml ├── exec ├── exec.robot └── exec_kw.robot ├── grafana ├── demo-UI-test.robot └── values.yaml ├── healthcheck ├── healthcheck.robot └── healthcheck_kw.robot ├── horizontalPodAutoscaler ├── hpa.robot └── hpa_kw.robot ├── ingress ├── ingress.robot └── ingress_kw.robot ├── job ├── job.robot └── job_kw.robot ├── namespace ├── namespace.robot └── namespace_kw.robot ├── pod ├── pod.robot └── pod_kw.robot ├── pvc ├── pvc.robot └── pvc_kw.robot ├── reload-config ├── reload-config.robot ├── reload-config_kw.robot └── sa.yaml ├── replicaset ├── replicaset.robot └── replicaset_kw.robot ├── requirements.txt ├── role ├── role.robot └── role_kw.robot ├── secrets ├── secret.robot └── secret_kw.robot ├── service ├── service.robot └── service_kw.robot ├── service_account ├── service_account.robot └── service_account_kw.robot ├── sts ├── sts.robot └── sts_kw.robot ├── system_smoke.robot └── system_smoke_kw.robot /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/.coveragerc -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length = 160 -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/README.md -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/docs/index.html -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/setup.py -------------------------------------------------------------------------------- /src/KubeLibrary/KubeLibrary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/src/KubeLibrary/KubeLibrary.py -------------------------------------------------------------------------------- /src/KubeLibrary/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/src/KubeLibrary/__init__.py -------------------------------------------------------------------------------- /src/KubeLibrary/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/src/KubeLibrary/exceptions.py -------------------------------------------------------------------------------- /src/KubeLibrary/version.py: -------------------------------------------------------------------------------- 1 | version = "0.8.9" 2 | -------------------------------------------------------------------------------- /test-objects-chart/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/test-objects-chart/.helmignore -------------------------------------------------------------------------------- /test-objects-chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/test-objects-chart/Chart.yaml -------------------------------------------------------------------------------- /test-objects-chart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/test-objects-chart/README.md -------------------------------------------------------------------------------- /test-objects-chart/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/test-objects-chart/templates/NOTES.txt -------------------------------------------------------------------------------- /test-objects-chart/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/test-objects-chart/templates/_helpers.tpl -------------------------------------------------------------------------------- /test-objects-chart/templates/cluster_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/test-objects-chart/templates/cluster_role.yaml -------------------------------------------------------------------------------- /test-objects-chart/templates/cluster_role_bind.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/test-objects-chart/templates/cluster_role_bind.yaml -------------------------------------------------------------------------------- /test-objects-chart/templates/cronjob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/test-objects-chart/templates/cronjob.yaml -------------------------------------------------------------------------------- /test-objects-chart/templates/daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/test-objects-chart/templates/daemonset.yaml -------------------------------------------------------------------------------- /test-objects-chart/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/test-objects-chart/templates/deployment.yaml -------------------------------------------------------------------------------- /test-objects-chart/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/test-objects-chart/templates/hpa.yaml -------------------------------------------------------------------------------- /test-objects-chart/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/test-objects-chart/templates/ingress.yaml -------------------------------------------------------------------------------- /test-objects-chart/templates/job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/test-objects-chart/templates/job.yml -------------------------------------------------------------------------------- /test-objects-chart/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/test-objects-chart/templates/role.yaml -------------------------------------------------------------------------------- /test-objects-chart/templates/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/test-objects-chart/templates/rolebinding.yaml -------------------------------------------------------------------------------- /test-objects-chart/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/test-objects-chart/templates/service.yaml -------------------------------------------------------------------------------- /test-objects-chart/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/test-objects-chart/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /test-objects-chart/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/test-objects-chart/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /test-objects-chart/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/test-objects-chart/values.yaml -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/resources/cluster_role.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/test/resources/cluster_role.json -------------------------------------------------------------------------------- /test/resources/cluster_role_bind.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/test/resources/cluster_role_bind.json -------------------------------------------------------------------------------- /test/resources/configmap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/test/resources/configmap.json -------------------------------------------------------------------------------- /test/resources/cronjob.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/test/resources/cronjob.json -------------------------------------------------------------------------------- /test/resources/cronjob_details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/test/resources/cronjob_details.json -------------------------------------------------------------------------------- /test/resources/daemonset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/test/resources/daemonset.json -------------------------------------------------------------------------------- /test/resources/daemonset_details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/test/resources/daemonset_details.json -------------------------------------------------------------------------------- /test/resources/deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/test/resources/deployment.json -------------------------------------------------------------------------------- /test/resources/endpoints.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/test/resources/endpoints.json -------------------------------------------------------------------------------- /test/resources/hpa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/test/resources/hpa.json -------------------------------------------------------------------------------- /test/resources/hpa_details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/test/resources/hpa_details.json -------------------------------------------------------------------------------- /test/resources/ingress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/test/resources/ingress.json -------------------------------------------------------------------------------- /test/resources/ingress_details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/test/resources/ingress_details.json -------------------------------------------------------------------------------- /test/resources/jobs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/test/resources/jobs.json -------------------------------------------------------------------------------- /test/resources/k3d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/test/resources/k3d -------------------------------------------------------------------------------- /test/resources/multiple_context: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/test/resources/multiple_context -------------------------------------------------------------------------------- /test/resources/namespaces.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/test/resources/namespaces.json -------------------------------------------------------------------------------- /test/resources/node_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/test/resources/node_info.json -------------------------------------------------------------------------------- /test/resources/pod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/test/resources/pod.json -------------------------------------------------------------------------------- /test/resources/pod_status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/test/resources/pod_status.json -------------------------------------------------------------------------------- /test/resources/pods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/test/resources/pods.json -------------------------------------------------------------------------------- /test/resources/pvc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/test/resources/pvc.json -------------------------------------------------------------------------------- /test/resources/replicaset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/test/resources/replicaset.json -------------------------------------------------------------------------------- /test/resources/role.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/test/resources/role.json -------------------------------------------------------------------------------- /test/resources/rolebinding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/test/resources/rolebinding.json -------------------------------------------------------------------------------- /test/resources/secrets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/test/resources/secrets.json -------------------------------------------------------------------------------- /test/resources/service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/test/resources/service.json -------------------------------------------------------------------------------- /test/resources/service_accounts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/test/resources/service_accounts.json -------------------------------------------------------------------------------- /test/resources/service_details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/test/resources/service_details.json -------------------------------------------------------------------------------- /test/resources/sts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/test/resources/sts.json -------------------------------------------------------------------------------- /test/test_KubeLibrary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/test/test_KubeLibrary.py -------------------------------------------------------------------------------- /testcases/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/testcases/Dockerfile -------------------------------------------------------------------------------- /testcases/cluster_role/cluster_role.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/testcases/cluster_role/cluster_role.robot -------------------------------------------------------------------------------- /testcases/cluster_role/cluster_role_kw.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/testcases/cluster_role/cluster_role_kw.robot -------------------------------------------------------------------------------- /testcases/configmap/configmap.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/testcases/configmap/configmap.robot -------------------------------------------------------------------------------- /testcases/configmap/configmap_kw.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/testcases/configmap/configmap_kw.robot -------------------------------------------------------------------------------- /testcases/connect_GKE_clusters.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/testcases/connect_GKE_clusters.robot -------------------------------------------------------------------------------- /testcases/cronjob/cronjob.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/testcases/cronjob/cronjob.robot -------------------------------------------------------------------------------- /testcases/cronjob/cronjob_kw.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/testcases/cronjob/cronjob_kw.robot -------------------------------------------------------------------------------- /testcases/custom_objects/ambassador_crds.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/testcases/custom_objects/ambassador_crds.robot -------------------------------------------------------------------------------- /testcases/custom_objects/custom_objects.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/testcases/custom_objects/custom_objects.robot -------------------------------------------------------------------------------- /testcases/daemonset/daemonsets.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/testcases/daemonset/daemonsets.robot -------------------------------------------------------------------------------- /testcases/daemonset/daemonsets_kw.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/testcases/daemonset/daemonsets_kw.robot -------------------------------------------------------------------------------- /testcases/deployment/deployment.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/testcases/deployment/deployment.robot -------------------------------------------------------------------------------- /testcases/deployment/deployment_kw.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/testcases/deployment/deployment_kw.robot -------------------------------------------------------------------------------- /testcases/dynamic_client/dynamic_client.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/testcases/dynamic_client/dynamic_client.robot -------------------------------------------------------------------------------- /testcases/dynamic_client/dynamic_client_kw.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/testcases/dynamic_client/dynamic_client_kw.robot -------------------------------------------------------------------------------- /testcases/dynamic_client/resources/pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/testcases/dynamic_client/resources/pod.yaml -------------------------------------------------------------------------------- /testcases/dynamic_client/resources/pod_generated_name.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/testcases/dynamic_client/resources/pod_generated_name.yaml -------------------------------------------------------------------------------- /testcases/dynamic_client/resources/svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/testcases/dynamic_client/resources/svc.yaml -------------------------------------------------------------------------------- /testcases/dynamic_client/resources/svc_lookup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/testcases/dynamic_client/resources/svc_lookup.yaml -------------------------------------------------------------------------------- /testcases/exec/exec.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/testcases/exec/exec.robot -------------------------------------------------------------------------------- /testcases/exec/exec_kw.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/testcases/exec/exec_kw.robot -------------------------------------------------------------------------------- /testcases/grafana/demo-UI-test.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/testcases/grafana/demo-UI-test.robot -------------------------------------------------------------------------------- /testcases/grafana/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/testcases/grafana/values.yaml -------------------------------------------------------------------------------- /testcases/healthcheck/healthcheck.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/testcases/healthcheck/healthcheck.robot -------------------------------------------------------------------------------- /testcases/healthcheck/healthcheck_kw.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/testcases/healthcheck/healthcheck_kw.robot -------------------------------------------------------------------------------- /testcases/horizontalPodAutoscaler/hpa.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/testcases/horizontalPodAutoscaler/hpa.robot -------------------------------------------------------------------------------- /testcases/horizontalPodAutoscaler/hpa_kw.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/testcases/horizontalPodAutoscaler/hpa_kw.robot -------------------------------------------------------------------------------- /testcases/ingress/ingress.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/testcases/ingress/ingress.robot -------------------------------------------------------------------------------- /testcases/ingress/ingress_kw.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/testcases/ingress/ingress_kw.robot -------------------------------------------------------------------------------- /testcases/job/job.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/testcases/job/job.robot -------------------------------------------------------------------------------- /testcases/job/job_kw.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/testcases/job/job_kw.robot -------------------------------------------------------------------------------- /testcases/namespace/namespace.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/testcases/namespace/namespace.robot -------------------------------------------------------------------------------- /testcases/namespace/namespace_kw.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/testcases/namespace/namespace_kw.robot -------------------------------------------------------------------------------- /testcases/pod/pod.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/testcases/pod/pod.robot -------------------------------------------------------------------------------- /testcases/pod/pod_kw.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/testcases/pod/pod_kw.robot -------------------------------------------------------------------------------- /testcases/pvc/pvc.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/testcases/pvc/pvc.robot -------------------------------------------------------------------------------- /testcases/pvc/pvc_kw.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/testcases/pvc/pvc_kw.robot -------------------------------------------------------------------------------- /testcases/reload-config/reload-config.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/testcases/reload-config/reload-config.robot -------------------------------------------------------------------------------- /testcases/reload-config/reload-config_kw.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/testcases/reload-config/reload-config_kw.robot -------------------------------------------------------------------------------- /testcases/reload-config/sa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/testcases/reload-config/sa.yaml -------------------------------------------------------------------------------- /testcases/replicaset/replicaset.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/testcases/replicaset/replicaset.robot -------------------------------------------------------------------------------- /testcases/replicaset/replicaset_kw.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/testcases/replicaset/replicaset_kw.robot -------------------------------------------------------------------------------- /testcases/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/testcases/requirements.txt -------------------------------------------------------------------------------- /testcases/role/role.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/testcases/role/role.robot -------------------------------------------------------------------------------- /testcases/role/role_kw.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/testcases/role/role_kw.robot -------------------------------------------------------------------------------- /testcases/secrets/secret.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/testcases/secrets/secret.robot -------------------------------------------------------------------------------- /testcases/secrets/secret_kw.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/testcases/secrets/secret_kw.robot -------------------------------------------------------------------------------- /testcases/service/service.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/testcases/service/service.robot -------------------------------------------------------------------------------- /testcases/service/service_kw.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/testcases/service/service_kw.robot -------------------------------------------------------------------------------- /testcases/service_account/service_account.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/testcases/service_account/service_account.robot -------------------------------------------------------------------------------- /testcases/service_account/service_account_kw.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/testcases/service_account/service_account_kw.robot -------------------------------------------------------------------------------- /testcases/sts/sts.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/testcases/sts/sts.robot -------------------------------------------------------------------------------- /testcases/sts/sts_kw.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/testcases/sts/sts_kw.robot -------------------------------------------------------------------------------- /testcases/system_smoke.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/testcases/system_smoke.robot -------------------------------------------------------------------------------- /testcases/system_smoke_kw.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsspiral/KubeLibrary/HEAD/testcases/system_smoke_kw.robot --------------------------------------------------------------------------------