Skip to content

Commit

Permalink
changing the namespace from redhat_cop to cloud
Browse files Browse the repository at this point in the history
Signed-off-by: Danielle Barda <dbarda@redhat.com>
  • Loading branch information
bardielle committed Mar 3, 2024
1 parent 3ebef03 commit e5b88d6
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion execution-environment/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ To test the image locally using `ansible-runner` execute the image as follows:

```bash
$ export USER=yourdockerusername
$ ansible-runner run --container-image quay.io/$USER/vmware:mytest runner --inventory localhost, -p redhat_cop.vmware_ops.security
$ ansible-runner run --container-image quay.io/$USER/vmware:mytest runner --inventory localhost, -p cloud.vmware_ops.security
```

This will execute the `security.yml` playbook from playbooks directory. You can test with any playbook from this directory.
2 changes: 1 addition & 1 deletion playbooks/provision_vm/manage_vm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
hosts: all
gather_facts: false
roles:
- role: redhat_cop.vmware_ops.provision_vm
- role: cloud.vmware_ops.provision_vm
vars:
clone_from_template: false

Check failure on line 8 in playbooks/provision_vm/manage_vm.yml

View workflow job for this annotation

GitHub Actions / ansible-lint

var-naming[no-role-prefix]

Variables names from within roles should use provision_vm_ as a prefix. (vars: clone_from_template)
clone_from_vm: false

Check failure on line 9 in playbooks/provision_vm/manage_vm.yml

View workflow job for this annotation

GitHub Actions / ansible-lint

var-naming[no-role-prefix]

Variables names from within roles should use provision_vm_ as a prefix. (vars: clone_from_vm)

Check failure on line 9 in playbooks/provision_vm/manage_vm.yml

View workflow job for this annotation

GitHub Actions / ansible-lint

yaml[new-line-at-end-of-file]

No new line character at the end of file
2 changes: 1 addition & 1 deletion playbooks/provision_vm/provisioning_vm_from_template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
hosts: all
gather_facts: false
roles:
- role: redhat_cop.vmware_ops.provision_vm
- role: cloud.vmware_ops.provision_vm
vars:
clone_from_template: true

Check failure on line 8 in playbooks/provision_vm/provisioning_vm_from_template.yml

View workflow job for this annotation

GitHub Actions / ansible-lint

var-naming[no-role-prefix]

Variables names from within roles should use provision_vm_ as a prefix. (vars: clone_from_template)
clone_from_vm: false

Check failure on line 9 in playbooks/provision_vm/provisioning_vm_from_template.yml

View workflow job for this annotation

GitHub Actions / ansible-lint

var-naming[no-role-prefix]

Variables names from within roles should use provision_vm_ as a prefix. (vars: clone_from_vm)
2 changes: 1 addition & 1 deletion playbooks/provision_vm/provisioning_vm_from_vm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
hosts: all
gather_facts: false
roles:
- role: redhat_cop.vmware_ops.provision_vm
- role: cloud.vmware_ops.provision_vm
vars:
clone_from_template: false

Check failure on line 8 in playbooks/provision_vm/provisioning_vm_from_vm.yml

View workflow job for this annotation

GitHub Actions / ansible-lint

var-naming[no-role-prefix]

Variables names from within roles should use provision_vm_ as a prefix. (vars: clone_from_template)
clone_from_vm: true

Check failure on line 9 in playbooks/provision_vm/provisioning_vm_from_vm.yml

View workflow job for this annotation

GitHub Actions / ansible-lint

var-naming[no-role-prefix]

Variables names from within roles should use provision_vm_ as a prefix. (vars: clone_from_vm)
Expand Down
2 changes: 1 addition & 1 deletion playbooks/security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
gather_facts: false

roles:
- role: redhat_cop.vmware_ops.security
- role: cloud.vmware_ops.security
2 changes: 1 addition & 1 deletion playbooks/system_settings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
gather_facts: false

roles:
- role: redhat_cop.vmware_ops.system_settings
- role: cloud.vmware_ops.system_settings
2 changes: 1 addition & 1 deletion roles/security/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ N/A
gather_facts: false

roles:
- role: redhat_cop.vmware_ops.security
- role: cloud.vmware_ops.security
```
## License
Expand Down
2 changes: 1 addition & 1 deletion roles/system_settings/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ N/A
gather_facts: false

roles:
- role: redhat_cop.vmware_ops.system_settings
- role: cloud.vmware_ops.system_settings
```
## License
Expand Down

0 comments on commit e5b88d6

Please sign in to comment.