Shaare your links...
6218 links
Shared links on http://www.la-pub-dans-les-films.fr/shaarli/ Home Login RSS Feed ATOM Feed Tag cloud Picture wall Daily
Links per page: 20 50 100
page 1 / 1
4 results for tags ansible x
  • Note: ansible base de chez base own test
    sudo apt install ansible

    ansible --version

    sudo mkdir -p /etc/ansible/hosts

    cd /etc/ansible/hosts

    sudo touch inventory.yml

    sudo vi inventory.yml

    ansible-inventory -i inventory.yml --list


    -------------------------------------------------
    TEST

    ansible all -i inventory.yml -m command -a "hostname"

    OR

    ansible all -i inventory.yml -m raw -a "hostname"



    ----------------------------------------------


    mkdir ~/ansible_project


    cd ansible_project/
    touch hostname_playbook.yml

    vi hostname_playbook.yml

    cp /etc/ansible/hosts/inventory.yml /home/user/ansible_project/

    ansible-playbook -i inventory.yml hostname_playbook.yml

    -----------------------------
    inventory.yml exemple


    ```yaml
    all:
     children:
       webservers:
         hosts:
           xxx.xxx.xxx.xx:
             ansible_user: username
             ansible_password: password
           xxx.xxx.xxx.xx:
             ansible_user: username
             ansible_password: pissword
    ```


    ---------------------------
    hostname_playbook.yml exemple


    ```yaml
    ---
    - name: Get hostname of all servers
     hosts: all
     tasks:
       - name: Run hostname command
         command: hostname
         register: hostname_output

       - name: Display hostname
         debug:
           msg: "The hostname of {{ inventory_hostname }} is {{ hostname_output.stdout }}"
    ```
    Thu Sep 5 20:20:31 2024 - permalink -
    - http://www.la-pub-dans-les-films.fr/shaarli/?JUFwJA
    ansible
  • Roles (index) — DebOps v3.1.0-20-gc654fc6 documentation
    Fri Mar 29 07:48:48 2024 - permalink -
    - https://docs.debops.org/en/master/ansible/roles/index.html
    Ansible
  • Getting Started with Ansible and AOS-CX
    A check

    https://developer.arubanetworks.com/aruba-aoscx/docs/getting-started-with-ansible-and-aos-cx

    https://developer.arubanetworks.com/aruba-aoscx/docs/ansible-automation-platform-overview

    https://docs.ansible.com/ansible/latest/collections/community/network/aruba_config_module.html

    https://developer.arubanetworks.com/aruba-aoscx/docs/using-ansible-and-terraform-with-aos-cx

    https://www.perplexity.ai/search/Terraform-aruba-switch-EWsYS7QXRemLMDGXpOR.zg
    Wed Mar 27 23:31:21 2024 - permalink -
    - https://developer.arubanetworks.com/aruba-aoscx/docs/getting-started-with-ansible-and-aos-cx
    Ansible aruba terraform
  • Introduction aux modèles Jinja2 :: Infrastructure as Code
    Jinja2 permet aux utilisateurs de manipuler des variables, d’y appliquer une logique conditionnelle et répétitive et donc d’étendre la programmabilté dans l’automation du réseau.
    Wed Mar 27 23:16:03 2024 - permalink -
    - https://iac.goffinet.org/ansible-network/templating-jinja2/
    ansible Jinja2 network
Links per page: 20 50 100
page 1 / 1
Shaarli 0.0.41 beta - The personal, minimalist, super-fast, no-database delicious clone. By sebsauvage.net. Theme by idleman.fr.