-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #64 from RedHatSatellite/rel3120
Release 3.12.0
- Loading branch information
Showing
149 changed files
with
15,336 additions
and
9,898 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,3 +29,4 @@ Lucas Bickel <[email protected]> | |
Lucas Bickel <[email protected]> <[email protected]> | ||
Kenny Tordeurs <[email protected]> <[email protected]> | ||
Paul Armstrong <[email protected]> <[email protected]> | ||
Lukas Magauer <[email protected]> <[email protected]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ description: Ansible Modules to manage Satellite installations | |
authors: | ||
- "@lessfoobar <[email protected]>" | ||
- "Adam Růžička <[email protected]>" | ||
- "Alan.Wong <[email protected]>" | ||
- "AlanCoding <[email protected]>" | ||
- "Andrew Kofink <[email protected]>" | ||
- "Anthony Green <[email protected]>" | ||
|
@@ -44,6 +45,7 @@ authors: | |
- "Lester Cheung <[email protected]>" | ||
- "Lester Claudio <[email protected]>" | ||
- "Lucas Bickel <[email protected]>" | ||
- "Lukas Magauer <[email protected]>" | ||
- "Lukáš Zapletal <[email protected]>" | ||
- "Manisha Singhal <[email protected]>" | ||
- "Manuel Bonk <[email protected]>" | ||
|
@@ -91,7 +93,7 @@ authors: | |
- "metalcated <[email protected]>" | ||
- "russianguppie <[email protected]>" | ||
- "willtome <[email protected]>" | ||
version: "3.11.0" | ||
version: "3.12.0" | ||
license: | ||
- "GPL-3.0-or-later" | ||
tags: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
redhat.satellite.locations | ||
=================================== | ||
|
||
This role creates and manages locations. | ||
|
||
Role Variables | ||
-------------- | ||
|
||
This role supports the [Common Role Variables](https://github.com/theforeman/foreman-ansible-modules/blob/develop/README.md#common-role-variables). | ||
|
||
The main data structure for this role is the list of `satellite_locations`. Each `location` requires the following fields: | ||
|
||
- `name`: The name of the location. | ||
|
||
For all other fields, see the `location` module. | ||
|
||
Example Playbook | ||
---------------- | ||
|
||
Create the 'UK' location and set its parent to EMEA. | ||
|
||
```yaml | ||
- hosts: localhost | ||
roles: | ||
- role: redhat.satellite.locations | ||
vars: | ||
satellite_server_url: https://satellite.example.com | ||
satellite_username: "admin" | ||
satellite_password: "changeme" | ||
satellite_locations: | ||
- name: UK | ||
organisations: | ||
- RedHat | ||
parent: EMEA | ||
parameters: | ||
- name: system_location | ||
value: UK | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
- name: Create locations # noqa: args[module] | ||
redhat.satellite.location: | ||
username: "{{ satellite_username | default(omit) }}" | ||
password: "{{ satellite_password | default(omit) }}" | ||
server_url: "{{ satellite_server_url | default(omit) }}" | ||
validate_certs: "{{ satellite_validate_certs | default(omit) }}" | ||
name: "{{ item.name }}" | ||
parent: "{{ item.parent | default(omit) }}" | ||
organizations: "{{ item.organizations | default(omit) }}" | ||
parameters: "{{ item.parameters | default(omit) }}" | ||
ignore_types: "{{ item.ignore_types | default(omit) }}" | ||
loop: "{{ satellite_locations }}" |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
foreman.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.