This repository has been archived by the owner on Jun 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 105
Fixes #3: Add a README with relevant documentation links and usage instructions. #11
Merged
gundalow
merged 1 commit into
ansible-collections:master
from
geerlingguy:3-readme-updates
Feb 1, 2020
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,13 +4,87 @@ | |
|
||
This repo hosts the `community.kubernetes` Ansible Collection. | ||
|
||
As this is an independent Collection, it can be released on its own release cadence. | ||
The collection includes a variety of Ansible content to help automate the management of applications in Kubernetes and OpenShift clusters, as well as the provisioning and maintenance of clusters themselves. | ||
|
||
## Notes | ||
## Included content | ||
|
||
*WARNING* This is Work in progress | ||
Click on the name of a plugin or module to view that content's documentation: | ||
|
||
For more information see `#ansible-community` on Freenode IRC, or the [Kubernetes Working Group](https://github.com/ansible/community/wiki/Kubernetes) Community wiki page. | ||
- **Connection Plugins**: | ||
- [kubectl](https://docs.ansible.com/ansible/latest/plugins/connection/kubectl.html) | ||
- **Filter Plugins**: | ||
- [k8s_config_resource_name](https://docs.ansible.com/ansible/latest/user_guide/playbooks_filters.html#kubernetes-filters) | ||
- **Inventory Source**: | ||
- [k8s](https://docs.ansible.com/ansible/latest/plugins/inventory/k8s.html) | ||
- [openshift](https://docs.ansible.com/ansible/latest/plugins/inventory/openshift.html) | ||
- **Lookup Plugins**: | ||
- [k8s](https://docs.ansible.com/ansible/latest/plugins/lookup/k8s.html) | ||
- **Modules**: | ||
- [k8s](https://docs.ansible.com/ansible/latest/modules/k8s_module.html) | ||
- [k8s_auth](https://docs.ansible.com/ansible/latest/modules/k8s_auth_module.html) | ||
- [k8s_info](https://docs.ansible.com/ansible/latest/modules/k8s_info_module.html) | ||
- [k8s_scale](https://docs.ansible.com/ansible/latest/modules/k8s_scale_module.html) | ||
- [k8s_service](https://docs.ansible.com/ansible/latest/modules/k8s_service_module.html) | ||
|
||
## Installation and Usage | ||
|
||
### Installing the Collection from Ansible Galaxy | ||
|
||
Before using the Kuberentes collection, you need to install it with the Ansible Galaxy CLI: | ||
|
||
ansible-galaxy collection install community.kubernetes | ||
|
||
You can also include it in a `requirements.yml` file and install it via `ansible-galaxy collection install -r requirements.yml`, using the format: | ||
|
||
```yaml | ||
--- | ||
collections: | ||
- name: community.kubernetes | ||
version: 1.0.0 | ||
``` | ||
|
||
### Using modules from the Kubernetes Collection in your playbooks | ||
|
||
You can either call modules by their Fully Qualified Collection Namespace (FQCN), like `community.kubernetes.k8s_info`, or you can call modules by their short name if you list the `community.kubernetes` collection in the playbook's `collections`, like so: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm working on some docs, once done we can link to FQCN. |
||
|
||
```yaml | ||
--- | ||
- hosts: localhost | ||
gather_facts: false | ||
connection: local | ||
|
||
collections: | ||
- community.kubernetes | ||
|
||
tasks: | ||
- name: Get a list of all pods in the kube-system namespace. | ||
k8s_info: | ||
kind: Pod | ||
namespace: kube-system | ||
register: system_pods | ||
|
||
- name: Display pod information for pods in kube-system namespace. | ||
debug: | ||
var: system_pods.resources | count | ||
|
||
``` | ||
|
||
For documentation on how to use individual modules and other content included in this collection, please see the links in the 'Included content' section earlier in this README. | ||
|
||
## Testing and Development | ||
|
||
If you want to develop new content for this collection or improve what's already here, the easiest way to work on the collection is to clone it into one of the configured [`COLLECTIONS_PATHS`](https://docs.ansible.com/ansible/latest/reference_appendices/config.html#collections-paths), and work on it there. | ||
|
||
The `tests` directory contains configuration for running sanity and integration tests using [`ansible-test`](https://docs.ansible.com/ansible/latest/dev_guide/testing_integration.html). | ||
|
||
You can run the collection's test suites with the commands: | ||
|
||
ansible-test sanity --docker -v --color | ||
ansible-test integration --docker -v --color | ||
|
||
## More Information | ||
|
||
For more information about Ansible's Kubernetes integration, join the `#ansible-community` channel on Freenode IRC, and browse the resources in the [Kubernetes Working Group](https://github.com/ansible/community/wiki/Kubernetes) Community wiki page. | ||
|
||
## License | ||
|
||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice touch to list there here. Once the Collections docs are build we can update these link.