All Projects → ansible-collections → Community.kubernetes

ansible-collections / Community.kubernetes

Licence: gpl-3.0
Kubernetes Collection for Ansible

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Community.kubernetes

Community.vmware
Ansible Collection for VMWare
Stars: ✭ 104 (-51.4%)
Mutual labels:  automation, hacktoberfest, ansible
Tower Operator
DEPRECATED: This project was moved and renamed to: https://github.com/ansible/awx-operator
Stars: ✭ 87 (-59.35%)
Mutual labels:  automation, ansible, k8s
Proctoring Ai
Creating a software for automatic monitoring in online proctoring
Stars: ✭ 155 (-27.57%)
Mutual labels:  automation, hacktoberfest
Terrible
An Ansible playbook that apply the principle of the Infrastructure as Code on a QEMU/KVM environment.
Stars: ✭ 161 (-24.77%)
Mutual labels:  automation, ansible
Dellemc Openmanage Ansible Modules
Dell EMC OpenManage Ansible Modules
Stars: ✭ 169 (-21.03%)
Mutual labels:  automation, ansible
Easyengine
Command-line control panel for Nginx Server to manage WordPress sites running on Nginx, PHP, MySQL, and Let's Encrypt
Stars: ✭ 1,881 (+778.97%)
Mutual labels:  automation, hacktoberfest
Jetson
Helmut Hoffer von Ankershoffen experimenting with arm64 based NVIDIA Jetson (Nano and AGX Xavier) edge devices running Kubernetes (K8s) for machine learning (ML) including Jupyter Notebooks, TensorFlow Training and TensorFlow Serving using CUDA for smart IoT.
Stars: ✭ 151 (-29.44%)
Mutual labels:  ansible, k8s
Ansible Raspi Playbooks
Playbooks for setup and updating of raspberry pi projects.
Stars: ✭ 162 (-24.3%)
Mutual labels:  automation, ansible
Network
An ansible role to configure networking
Stars: ✭ 134 (-37.38%)
Mutual labels:  hacktoberfest, ansible
Promansible
PromAnsible, 集成了Prometheuse(基于时间序列数据的服务监控系统)和Ansible(超级简单好用的IT自动化系统),并通过事件报警机制把二者紧密的结合在一起,并配以简单易用的WebUI,真正实现了监控-报警-处理一条龙的全自动化服务。
Stars: ✭ 183 (-14.49%)
Mutual labels:  automation, ansible
Mad
Map PoGo stuff with Android devices
Stars: ✭ 171 (-20.09%)
Mutual labels:  automation, hacktoberfest
Tox
Command line driven CI frontend and development task automation tool.
Stars: ✭ 2,523 (+1078.97%)
Mutual labels:  automation, hacktoberfest
Faas Netes
Serverless on Kubernetes with OpenFaaS
Stars: ✭ 1,875 (+776.17%)
Mutual labels:  hacktoberfest, k8s
Td4a
Template designer for automation
Stars: ✭ 139 (-35.05%)
Mutual labels:  automation, ansible
K3s Ansible
Ansible playbook to deploy k3s kubernetes cluster
Stars: ✭ 153 (-28.5%)
Mutual labels:  ansible, k8s
Tensor
Tensor - Comprehensive web-based automation framework and Centralized infrastructure management platform
Stars: ✭ 136 (-36.45%)
Mutual labels:  automation, ansible
Netbox As Ansible Inventory
Ansible dynamic inventory script for Netbox.
Stars: ✭ 161 (-24.77%)
Mutual labels:  automation, ansible
Python Scripts
Collection of Various Python Script's.💻
Stars: ✭ 195 (-8.88%)
Mutual labels:  automation, hacktoberfest
Ansible Role K3s
Ansible role for installing k3s as either a standalone server or HA cluster.
Stars: ✭ 132 (-38.32%)
Mutual labels:  ansible, k8s
Whatsapp Bulk Sender
Send bulk messages right from your WhatsApp Android Client or WhatsApp Web
Stars: ✭ 135 (-36.92%)
Mutual labels:  automation, hacktoberfest

Kubernetes Collection for Ansible

CI Codecov

This repo hosts the community.kubernetes (a.k.a. kubernetes.core) Ansible Collection.

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.

Included content

Click on the name of a plugin or module to view that content's documentation:

Installation and Usage

Installing the Collection from Ansible Galaxy

Before using the Kubernetes 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:

---
collections:
  - name: community.kubernetes
    version: 1.2.0

Installing the OpenShift Python Library

Content in this collection requires the OpenShift Python client to interact with Kubernetes' APIs. You can install it with:

pip3 install openshift

Using modules from the Kubernetes Collection in your playbooks

It's preferable to use content in this collection using their Fully Qualified Collection Namespace (FQCN), for example community.kubernetes.k8s_info:

---
- hosts: localhost
  gather_facts: false
  connection: local

  tasks:
    - name: Ensure the myapp Namespace exists.
      community.kubernetes.k8s:
        api_version: v1
        kind: Namespace
        name: myapp
        state: present

    - name: Ensure the myapp Service exists in the myapp Namespace.
      community.kubernetes.k8s:
        state: present
        definition:
          apiVersion: v1
          kind: Service
          metadata:
            name: myapp
            namespace: myapp
          spec:
            type: LoadBalancer
            ports:
            - port: 8080
              targetPort: 8080
            selector:
              app: myapp

    - name: Get a list of all Services in the myapp namespace.
      community.kubernetes.k8s_info:
        kind: Service
        namespace: myapp
      register: myapp_services

    - name: Display number of Services in the myapp namespace.
      debug:
        var: myapp_services.resources | count

If upgrading older playbooks which were built prior to Ansible 2.10 and this collection's existence, you can also define collections in your play and refer to this collection's modules as you did in Ansible 2.9 and below, as in this example:

---
- hosts: localhost
  gather_facts: false
  connection: local

  collections:
    - community.kubernetes

  tasks:
    - name: Ensure the myapp Namespace exists.
      k8s:
        api_version: v1
        kind: Namespace
        name: myapp
        state: present

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, and work on it there.

See Contributing to community.kubernetes.

Testing with ansible-test

The tests directory contains configuration for running sanity and integration tests using ansible-test.

You can run the collection's test suites with the commands:

make test-sanity
make test-integration

Testing with molecule

There are also integration tests in the molecule directory which are meant to be run against a local Kubernetes cluster, e.g. using KinD or Minikube. To setup a local cluster using KinD and run Molecule:

kind create cluster
make test-molecule

Publishing New Versions

Releases are automatically built and pushed to Ansible Galaxy for any new tag. Before tagging a release, make sure to do the following:

  1. Update the version in the following places:
    1. The version in galaxy.yml
    2. This README's requirements.yml example
    3. The DOWNSTREAM_VERSION in utils/downstream.sh
    4. The VERSION in Makefile
  2. Update the CHANGELOG:
    1. Make sure you have antsibull-changelog installed.
    2. Make sure there are fragments for all known changes in changelogs/fragments.
    3. Run antsibull-changelog release.
  3. Commit the changes and create a PR with the changes. Wait for tests to pass, then merge it once they have.
  4. Tag the version in Git and push to GitHub.
  5. Manually build and release the kubernetes.core collection (see following section).

After the version is published, verify it exists on the Kubernetes Collection Galaxy page.

Publishing kubernetes.core

Until the contents of repository are moved into a new kubernetes.core repository on GitHub, this repository is the source of both the kubernetes.core and community.kubernetes repositories on Ansible Galaxy.

To publish the kubernetes.core collection on Ansible Galaxy, do the following:

  1. Run make downstream-release (on macOS, add LC_ALL=C before the command).

The process for uploading a supported release to Automation Hub is documented separately.

More Information

For more information about Ansible's Kubernetes integration, join the #ansible-kubernetes channel on Freenode IRC, and browse the resources in the Kubernetes Working Group Community wiki page.

License

GNU General Public License v3.0 or later

See LICENCE to see the full text.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].