Skip to content

darkwizard242/ansible-role-minikube

Repository files navigation

build-test release Ansible Role Maintainability Rating Reliability Rating Security Rating GitHub tag (latest SemVer) GitHub repo size

Ansible Role: minikube

Role to install (by default) minikube on Debian/Ubuntu and EL systems. minikube is a tool for running local Kubernetes Cluster.

Requirements

None.

Role Variables

Available variables are listed below (located in defaults/main.yml):

Variables list:

minikube_app: minikube
minikube_version: 1.33.1
minikube_os: linux
minikube_arch: amd64
minikube_dl_url: https://github.com/kubernetes/{{ minikube_app }}/releases/download/v{{ minikube_version }}/{{ minikube_app }}-{{ minikube_os }}-{{ minikube_arch }}
minikube_bin_path: "/usr/local/bin"
minikube_file_owner: root
minikube_file_group: root
minikube_file_mode: '0755'

Variables table:

Variable Description
minikube_app Defines the app to install i.e. minikube
minikube_version Defined to dynamically fetch the desired version to install. Defaults to: 1.33.1
minikube_os Defines os type. Defaults to: linux
minikube_arch Defines os architecture. Defaults to: amd64
minikube_dl_url Defines URL to download the minikube binary from.
minikube_bin_path Defined to dynamically set the appropriate path to store minikube binary into. Defaults to (as generally available on any user's PATH): /usr/local/bin
minikube_file_owner Owner for the binary file of minikube.
minikube_file_group Group for the binary file of minikube.
minikube_file_mode Mode for the binary file of minikube.

Dependencies

None

Example Playbook

For default behaviour of role (i.e. installation of minikube) in ansible playbooks.

- hosts: servers
  roles:
    - darkwizard242.minikube

For customizing behavior of role (i.e. specifying the desired minikube version) in ansible playbooks.

- hosts: servers
  roles:
    - darkwizard242.minikube
  vars:
    minikube_version: 1.23.0

For customizing behavior of role (i.e. placing binary of minikube package in different location) in ansible playbooks.

- hosts: servers
  roles:
    - darkwizard242.minikube
  vars:
    minikube_bin_path: /bin/

License

MIT

Author Information

This role was created by Ali Muhammad.