Skip to content

Commit 2f2886a

Browse files
update linting
1 parent f4c9cc7 commit 2f2886a

File tree

4 files changed

+9
-11
lines changed

4 files changed

+9
-11
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,16 @@ It is not listed as a dependency because of issues with syncing the validated co
2626

2727
| Collection Name | Purpose |
2828
|:--------------------------------------------------------------------------------------------:|:----------------------------------------:|
29-
| [awx.awx/Ansible.controller repo](https://github.com/ansible/awx/tree/devel/awx_collection) | Automation controller modules |
29+
| [awx.awx/Ansible.controller repo](https://github.com/ansible/awx/tree/devel/awx_collection) | Automation controller modules |
3030
| [Ansible Hub Configuration](https://github.com/ansible/automation_hub_collection) | Automation hub configuration |
3131

3232
## Links to other Validated Configuration Collections for Ansible Automation Platform
3333

3434
| Collection Name | Purpose |
3535
|:------------------------------------------------------------------------------------------:|:----------------------------------------:|
36-
| [Controller Configuration](https://github.com/redhat-cop/controller_configuration) | Automation controller configuration |
37-
| [EE Utilities](https://github.com/redhat-cop/ee_utilities) | Execution Environment creation utilities |
38-
| [AAP installation Utilities](https://github.com/redhat-cop/aap_utilities) | Ansible Automation Platform Utilities |
36+
| [Controller Configuration](https://github.com/redhat-cop/controller_configuration) | Automation controller configuration |
37+
| [EE Utilities](https://github.com/redhat-cop/ee_utilities) | Execution Environment creation utilities |
38+
| [AAP installation Utilities](https://github.com/redhat-cop/aap_utilities) | Ansible Automation Platform Utilities |
3939
| [AAP Configuration Template](https://github.com/redhat-cop/aap_configuration_template) | Configuration Template for this suite |
4040

4141
## Included content

galaxy.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@ build_ignore:
1616
- release.yml
1717
- .github
1818
- .markdownlint.yml
19-
- .ansible-lint
20-
- .yamllint.yml
2119
- .pre-commit-config.yaml
2220
- .gitignore
2321
- .gitattributes

roles/ee_builder/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Best practice is to use the default images, unless needing to pull from another
5858
|`ee_base_image`|registry.redhat.io/ansible-automation-platform-24/ee-minimal-rhel9:latest|no|str|Build arg specifies parent image for the execution environment. Use the images option to override this for an individual list item.||
5959
|`ee_base_registry_username`|ee_registry_username|no|str|Username to use when authenticating to base registries. If neither ee or base registry provided will be omitted.||
6060
|`ee_base_registry_password`|ee_registry_password|no|str|Password to use when authenticating to base registries. If neither ee or base registry provided will be omitted.||
61-
|`ee_pull_collections_from_hub`|true|no|bool|Whether or not to pull collections from a specific hub for use in building an Execution Environment. This will create entries that adds the ansible.cfg file into the EE. These can be hidden using environment variables as detailed [in this article](https://developers.redhat.com/articles/2025/01/23/strategies-eliminating-ansible-hardcoded-credentials) ||
61+
|`ee_pull_collections_from_hub`|true|no|bool|Whether or not to pull collections from a specific hub for use in building an Execution Environment. This will create entries that adds the ansible.cfg file into the EE. These can be hidden using environment variables as detailed [in this article](https://developers.redhat.com/articles/2025/01/23/strategies-eliminating-ansible-hardcoded-credentials)||
6262
|`ee_ah_host`|`aap_hostname`|no|str|Host to use for ansible config file. Alternative default is to use variable from infra.ah_configuration. (if AAP 2.5 use gateway host and infra.aap_configuration) Required if `ee_pull_collections_from_hub` is `True`.||
6363
|`ee_ah_token`|`aap_token`|no|str|Token to use for ansible config file. Alternative default is to use variable from infra.ah_configuration. Required if `ee_pull_collections_from_hub` is `True`.||
6464
|`ee_aap_version`|`2.4`|no|str|Changes what API endpoint to point to depending on AAP version||
@@ -106,12 +106,12 @@ These variables are only use in creating the Execution Environment 'controller_e
106106
|:---:|:---:|:---:|:---:|
107107
|`ee_registry_username`||no|Username to use when authenticating to destination registries.|
108108
|`ee_registry_password`||no|Password to use when authenticating to destination registries.|
109-
|`ee_registry_dest`||no|Path or URL where image will be pushed. Namespaces for containers go here. Examples: registry.redhat.io, registry.redhat.io/rh-custom , in AAP 2.5 containers.podman:1.14.0 require images be pushed to a namespace, such as the previous namespace rh-custom |
109+
|`ee_registry_dest`||no|Path or URL where image will be pushed. Namespaces for containers go here. Examples: registry.redhat.io, registry.redhat.io/rh-custom , in AAP 2.5 containers.podman:1.14.0 require images be pushed to a namespace, such as the previous namespace rh-custom|
110110
|`ee_image_push`|True|no|Control to choose whether to push image to registry or not.|
111111
|`ee_auth_file`||no|Path to file containing authorization credentials to the remote registry.|
112112
|`ee_executable`||no|Path to podman executable if it is not in the $PATH on the machine running podman.|
113113
|`ee_ca_cert_dir`||no|Path to directory containing TLS certificates and keys to use.|
114-
|`ee_validate_certs`||no|Require HTTPS and validate certificates when pulling or pushing. |
114+
|`ee_validate_certs`||no|Require HTTPS and validate certificates when pulling or pushing.|
115115
|`ee_sign_by`||no|Path to a key file to use to sign the image.|
116116

117117
## Example Playbook

roles/ee_builder/defaults/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ ee_create_controller_def: false
3636
# ee_registry_dest
3737

3838
# Hub host variables for ansible.cfgw
39-
ee_ah_host: "{{ ah_host | default(aap_hostname)}}"
40-
ee_ah_token: "{{ ah_token | default(aap_token)}}"
39+
ee_ah_host: "{{ ah_host | default(aap_hostname) }}"
40+
ee_ah_token: "{{ ah_token | default(aap_token) }}"
4141
ee_aap_version: 2.4
4242
...

0 commit comments

Comments
 (0)