Ansible

preya,
@preya@mastodon.social avatar

Trying to automatically/programmatically replicate stacks on the same host. E.g. I have an application that requires multiple containers, and I want to replicate the WHOLE application with its own volumes, networks, subdomain, etc. Any pointers on how to do that? ? Please don't say .

alper,
@alper@rls.social avatar

@preya I don’t really know why you want this but I’ve never really seen this work for any serious setup.

flohoff,
@flohoff@c.im avatar

Does anyone have a simple idea of using a gopass output as an vault instead of just as the password TO a vault.

So i'd like to put all variable settings e.g. a yaml into my gopass and include it instead of putting vaults into git repos.

I fail to find a (compatible) way of including variables from script output, or using an external vault application in ansible.

I already use a gopass script to fetch the vaults password, but i feel its a bit clumpsy to maintain a vault in the ansible git, and maintain the vault password in the gopass git.

@jpmens ?

flohoff,
@flohoff@c.im avatar

@jpmens gopass is basically a git/gpg command line based vault. Possible team password management. You can store arbitrary files in there although thought as a keepass similar password manager.

Got it to work with 10 lines of python in a vars plugin.

New customer using user logins + sudo and i am not going to type my sudo password over and over again using their ansible stuff.

My sudo password is in my gopass, and ansible may access it.

Thanks so far.

jpmens,
@jpmens@mastodon.social avatar

@flohoff I'd be interested in seeing your plugin if you'll share it with me (email fine)

schenklklopfer, German
@schenklklopfer@chaos.social avatar

Wenn ich mit #Ansible einen Ordner mit Dateien auf einen Server kopiere, warum dauert das so lange?

152 kleine Dateien und der kopiert da fast 3 Minuten...

ascherbaum,
@ascherbaum@mastodon.social avatar

@schenklklopfer wie genau kopierst du die Dateien?

LinuxGeek46,
@LinuxGeek46@linuxrocks.online avatar

Ansible #2 How to create an Ansible Playbook https://www.both.org/?p=5087 ,

jriou,
@jriou@hachyderm.io avatar

Segfault when running the apt module to remove wifi and Bluetooth related packages on my raspberry pi. But no problem using the equivalent apt commands. That's weird.

Anyway, this raspberry pi ("pilote") needs to be upgraded (Debian 10 to 12). A perfect time to install it from scratch and use Ansible.

As promised in my talk at , I've done a big refacto of this repository to publish it on github. Soon™ 🤞🏻

ara,
@ara@fosstodon.org avatar

A love letter to the community package: simplicity is a feature

https://ara.recordsansible.org/blog/2024/04/26/simplicity-is-a-feature/

geerlingguy,
@geerlingguy@mastodon.social avatar

Ubuntu 24.04 Noble Numbat's here—and so is my ansible testing container for it! https://hub.docker.com/r/geerlingguy/docker-ubuntu2404-ansible #ansible #ubuntu

markstos,
@markstos@urbanists.social avatar

Today in , I'm investigating why I got alerted that my aren't running.

The first task is determine if the backups really aren't running or whether there's a problem with monitoring/alerting.

I used to set up to backup to .

I think I'll start by checking in BackBlaze to see how fresh the backups are. 🧵

markstos,
@markstos@urbanists.social avatar

🧵 I've got a fresh #restic backup running for the service that wasn't set up before and I'll check my metrics tomorrow.

The #Ansible role I'm using is: https://github.com/roles-ansible/ansible_role_restic

The backup completed and I see fresh metrics in AWS Cloudwatch Metrics, but not in my Dashboard I just made. Sigh.

vwbusguy,
@vwbusguy@mastodon.online avatar

@markstos That's awesome! I'm also backing up mine with Backblaze via restic, but I'm doing mine old school with a bash script in crontab.

ansible,
@ansible@fosstodon.org avatar

There's an interesting discussion happening in the forum that we'd like you all to participate in, regarding the future of the Ansible community package (aka what you get if you pip install ansible).

Join the discussion: https://forum.ansible.com/t/future-of-the-ansible-community-package/4902

dustinrue,
@dustinrue@chateaude.luxe avatar

I find it annoying that is installed using an operator. What are people doing that they would adding or removing AWX instances so that an operator makes sense vs a normal Helm based workflow? What am I missing?

dustinrue,
@dustinrue@chateaude.luxe avatar

Mild sense does it make now. It is running Ansible to install AWX….very odd

dustinrue,
@dustinrue@chateaude.luxe avatar

Had to change the config, now I wait for Ansible to run again. I swear to you all I started using Kube and avoiding Ansible for this very reason.

me,
@me@social.taupehat.com avatar

I really wish module devs would make up their minds about how to pass stuff to it. So like the packages module? Pass it a list of packages, super easy
ansible.builtin.packages:

  • foo
  • bar
  • baz
    state: present

But say you want to create a bunch of directories? Well, sucks for you - the file module doesn't work that way:
ansible.builtin.file:
path: "{{item}}"
owner: larted
group: luser
mode: "0755"
state: directory
with_items:

  • "/haha"
  • "/fuck"
  • "/consistency"

And these are both BUILTIN modules. Seriously folks, make up your fucking minds. Shit like this makes being a pointlessly difficult.

mskoett,
@mskoett@fosstodon.org avatar

@me those two are doing things very differently.

Ansible.builtin.packages installs all the packages in one invocation. I.e. it's the equivalent of apt-get install foo bar baz.

Your example with ansible.builtin.file is using a loop construct iterating over a list of directories to create them one by one. The with_items is generic feature of Ansible and not something the file module is implementing. You could do the same when installing packages.

ascherbaum,
@ascherbaum@mastodon.social avatar

@mskoett @me Except when you do that with installing packages, it complains. Had to rewrite a couple of tasks because of that.

ansible,
@ansible@fosstodon.org avatar

📯 The Bullhorn 134

Releases:

  • Ansible 9.4.0
  • AWX 24.1.0 & Operator 2.14.0
  • ansible-core 2.14.15, 2.15.10 & 2.16.5

Collections:

  • community.routeros 2.14.0
  • community.general 8.5.0, 7.5.6 & 6.6.8

Participate:

  • vote on team rep in Steering Committee
  • discuss docker_compose deprecation
  • review collection inclusion requests
  • help with easyfix issues
  • Ansible München meetup

More:

  • Ansible Lightspeed update
  • Steampunk doc update

➡️ https://forum.ansible.com/t/the-bullhorn-134/4631

shane_kerr,
@shane_kerr@fosstodon.org avatar

I'm cleaning up problems reported by ansible-lint and am down to a couple of these:

https://ansible.readthedocs.io/projects/lint/rules/no-handler/

The problem that I have is that if I follow the recommendation and convert the tasks to handlers, then the handlers will be very far away in the playbook - way down at the bottom, hundreds of lines later.

I can silence the error, but I guess it is there for a reason.

Am I crazy? Or is the idea that I should be having smaller playbooks or what?

shane_kerr,
@shane_kerr@fosstodon.org avatar

@ascherbaum Well I basically have a playbook that sets up everything on a metal server in a cluster. So installing packages, configuring email, creating swap, changing from systemd timesync to ntpd and so on. It's a lot of simple things. I guess that I can split it up, but have never had any reason to... until now, and it feels a bit arbitrary. 🤔

ascherbaum,
@ascherbaum@mastodon.social avatar

@shane_kerr simple but many lines of code don't go well together ;-)

From your description that should be at least 5 different roles, possibly more.

thedoubl3j,
@thedoubl3j@fosstodon.org avatar

AWX 24.1.0 is out and fresh off the presses! py 3.9 -> 3.11 upgrade included as well as other fixes and new metrics support in awx-operator @ansible https://forum.ansible.com/t/announcing-awx-24-1-0-and-awx-operator-2-14-0/4581

zhenech,
@zhenech@chaos.social avatar

TIL: has a nice, "new" Debian repository configuration module: deb822_repository (https://docs.ansible.com/ansible/latest/collections/ansible/builtin/deb822_repository_module.html)

It even correctly handles signed_by entries and places the keys into /etc/apt/keyrings

  • All
  • Subscribed
  • Moderated
  • Favorites
  • Ansible
  • PowerRangers
  • DreamBathrooms
  • ngwrru68w68
  • magazineikmin
  • thenastyranch
  • InstantRegret
  • Youngstown
  • mdbf
  • slotface
  • rosin
  • GTA5RPClips
  • khanakhh
  • kavyap
  • Durango
  • anitta
  • modclub
  • ethstaker
  • cubers
  • vwfavf
  • everett
  • cisconetworking
  • tacticalgear
  • normalnudes
  • tester
  • osvaldo12
  • Leos
  • provamag3
  • megavids
  • All magazines