Giter Site home page Giter Site logo

astappiev / ansible-github Goto Github PK

View Code? Open in Web Editor NEW

This project forked from querateam/ansible-github

0.0 0.0 0.0 51 KB

Ansible module to download and install assets from Github releases page.

License: GNU General Public License v3.0

Python 100.00%

ansible-github's Introduction

Ansible Collection - astappiev.github

Download and install assets from Github releases page.

Note: Do not modify README.md directly. It is auto-generated by python generate_readme in readme_src folder.

Installation

Install the astappiev.github collection from Github

ansible-galaxy collection install git+https://github.com/astappiev/ansible-github.git

Install the install_release module as a local custom module

Alternatively, you may manually install the install_release module itself as a local custom module instead of installing the module through the astappiev.github Ansible collection. However, it is recommended to use astappiev.github collection unless you have a good reason not to. Here are the commands to install the install_release module as a local custom module:

# Create the user custom module directory
mkdir -p ~/.ansible/plugins/modules

# Install the install_release module into the user custom module directory
curl -o ~/.ansible/plugins/modules/install_release.py https://raw.githubusercontent.com/astappiev/ansible-github/main/plugins/modules/install_release.py

Ansible Module - astappiev.github.install_release

This module can be used to select a release from a Github repository, select an asset from that release based on OS and CPU architecture, download the asset, and install files/directories from the asset.

Options

Parameter Type Description
asset_arch_mapping Type: dict If the repo uses non-standard strings to specify CPU architecture, you can define a custom mapping between those and standard architectures. For example, if some repo uses 64 instead of x86_64 or amd64, you can set this option to amd64: "64" or x86_64: "64".
asset_regex Type: str
Required
A regex for selecting an asset (file name) from all the assets of selected release. If there are multiple assets for different OSes and CPU architectures, you don't need to specify OS (darwin, linux, ...) and architecture (x86_64, amd64, aarch64, arm64, ...) in your regex (just write .* in place of them). This module tries to narrow down assets based on the system's OS and CPU architecture.
move_rules Type: list
Required
You need to specify how individual items from an asset should be moved to the system. Privide a list of rules. Each rule should specify src_regex and dst, and could specify mode, owner, group. An asset can be a single file, or an archive (.zip, .tar.gz, ...). When asset is an archive, you select by src_regex some paths (directories or files) relative to archive root, and they will move to dst. Even if the asset is just a single file (not an archive), you should specify a rule to move that file (src_regex can be any regex mathing file name, e.g. .*).
repo Type: str
Required
The name of the repository in the format user_or_org/repo_name.
tag Type: str
Default: latest
The tag to select from releases page. The default (latest) means the most recent non-prerelease, non-draft release.
version_command Type: str The command to get the currently installed version. (e.g. some_command --version) If the output of this command matches the selected asset, downloading and installing the asset is skipped.
version_file Type: path Path to a file containing the version of currently installed version. The module reads the version from this file instead of version_command before installing (to skip download if the desired version is installed) and writes the installed version to this file after successful installation. This is useful for non-executable assets which don't have any --version command (e.g. fonts, ...). If you pass version_file, you can't pass version_command or version_regex options.
version_regex Type: str
Default: \d+\.\d+(?:\.\d+)?
A regex for extracting version from the output of version_command or tag name. The default is to match 2 or 3 numbers joined by .. E.g. 1.12.7 or 1.12

Examples

- name: install latest version of lego (ACME client)
  astappiev.github.install_release:
    repo: go-acme/lego
    asset_regex: lego.*\.tar\.gz
    version_command: lego --version
    move_rules:
      - src_regex: lego
        dst: /usr/local/bin
        mode: 0755

- name: install a specific version of sentry-cli
  astappiev.github.install_release:
    repo: getsentry/sentry-cli
    tag: "2.8.1"
    asset_regex: sentry-cli-.*
    version_command: sentry-cli --version
    move_rules:
      - src_regex: sentry-cli-.*
        dst: /usr/local/bin/sentry-cli
        mode: 0755

- name: install both executable and data
  astappiev.github.install_release:
    repo: example/example
    asset_regex: example-.*\.zip
    asset_arch_mapping:
      amd64: "64"  # This repo indicates amd64 as example-64.zip instead of example-amd64.zip or example-x86_64.zip.
    version_command: example --version
    move_rules:
      - src_regex: example
        dst: /usr/local/bin
        mode: 0755
      - src_regex: .*\.dat
        dst: /usr/local/share/example
        mode: 0644

- name: install some data file (e.g. font, ...)
  astappiev.github.install_release:
    repo: example/example
    asset_regex: exampledata.dat
    version_file: /usr/local/share/example/exampledata.dat.version
    move_rules:
      - src_regex: exampledata.dat
        dst: /usr/local/share/example

ansible-github's People

Contributors

mjnaderi avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.