├── .github └── workflows │ ├── ci.yml │ └── lockdown.yml ├── .gitignore ├── .yamllint ├── CHANGELOG.rst ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── bindep.txt ├── changelogs ├── changelog.yaml └── config.yaml ├── codecov.yml ├── docs └── docsite │ ├── extra-docs.yml │ └── rst │ └── deprecation.rst ├── galaxy.yml ├── meta └── runtime.yml ├── requirements.txt ├── setup.cfg ├── test-requirements.txt └── tests └── sanity ├── ignore-2.10.txt ├── ignore-2.11.txt ├── ignore-2.12.txt └── ignore-2.9.txt /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-collections/community.kubernetes/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/lockdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-collections/community.kubernetes/HEAD/.github/workflows/lockdown.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-collections/community.kubernetes/HEAD/.gitignore -------------------------------------------------------------------------------- /.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-collections/community.kubernetes/HEAD/.yamllint -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-collections/community.kubernetes/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-collections/community.kubernetes/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-collections/community.kubernetes/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-collections/community.kubernetes/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-collections/community.kubernetes/HEAD/README.md -------------------------------------------------------------------------------- /bindep.txt: -------------------------------------------------------------------------------- 1 | kubernetes-client [platform:fedora] 2 | -------------------------------------------------------------------------------- /changelogs/changelog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-collections/community.kubernetes/HEAD/changelogs/changelog.yaml -------------------------------------------------------------------------------- /changelogs/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-collections/community.kubernetes/HEAD/changelogs/config.yaml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-collections/community.kubernetes/HEAD/codecov.yml -------------------------------------------------------------------------------- /docs/docsite/extra-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-collections/community.kubernetes/HEAD/docs/docsite/extra-docs.yml -------------------------------------------------------------------------------- /docs/docsite/rst/deprecation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-collections/community.kubernetes/HEAD/docs/docsite/rst/deprecation.rst -------------------------------------------------------------------------------- /galaxy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-collections/community.kubernetes/HEAD/galaxy.yml -------------------------------------------------------------------------------- /meta/runtime.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-collections/community.kubernetes/HEAD/meta/runtime.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | openshift>=0.6.2 2 | requests-oauthlib 3 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length = 160 3 | ignore = W503,E402 4 | -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- 1 | kubernetes-validate 2 | -------------------------------------------------------------------------------- /tests/sanity/ignore-2.10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-collections/community.kubernetes/HEAD/tests/sanity/ignore-2.10.txt -------------------------------------------------------------------------------- /tests/sanity/ignore-2.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-collections/community.kubernetes/HEAD/tests/sanity/ignore-2.11.txt -------------------------------------------------------------------------------- /tests/sanity/ignore-2.12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-collections/community.kubernetes/HEAD/tests/sanity/ignore-2.12.txt -------------------------------------------------------------------------------- /tests/sanity/ignore-2.9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-collections/community.kubernetes/HEAD/tests/sanity/ignore-2.9.txt --------------------------------------------------------------------------------