bitchecker

Results 51 comments of bitchecker

The big problem is that pve is not starting a new vm from the template...so it seems that nothing happens. I'm asking for `prepare.yml` and `destroy.yml` because of that.

`molecule.yml` file: ```yaml --- driver: name: molecule-proxmox options: api_host: xxxxxxxxx api_user: root@pam api_password: xxxxxxx node: proxmox ssh_user: root ssh_identity_file: /path/to/ssh/private/key platforms: - name: molecule template_name: Alma9-template ciuser: root cipassword: root...

Playing with `create.yml` and using `proxmox_kvm` module is it possible to manage the VM creation, also if after that I need to understand how to add them to molecule inventory.

Hi @meffie, in `create.yml` I'm adding something like that to manage the VMs creation: ```yaml - name: Clone cloud-init template community.general.proxmox_kvm: api_user: root@pam api_password: xxxxxxxxx api_host: xxxxxxxxxx node: proxmox vmid:...

@meffie , @IamLunchbox any news on this?

for molecule: ``` molecule==24.8.0 molecule-proxmox==1.0.0 ``` for galaxy `community.general` should not be necessary because everything is already available, but: ``` community.general:9.3.0 ``` proxmox: `8.2.4`

Hi, for what I can see, the `create.yml` is completely skipped (with default file): ```bash PLAYBOOK: create.yml *********************************************************** Positional arguments: /home/bitchecker/molecule/molecule/default/create.yml verbosity: 4 connection: ssh become_method: sudo tags: ('all',) skip_tags:...

When I created the env, I created a new scenario, and I'm using the default `create.yml` and others. The only files that I changed were `converge.yml` and `molecule.yml`. In on...

Hi, according to my point of view avoiding configuring the `create` file should be the default as the tool should directly take care of creating guests on proxmox in order...

Hi, yes, I'm using only `converge` and `molecule` but I would like to clarify a missing point: Is this software designed to test Ansible code interacting with proxmox and automatically...