We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The dispatcher role is missing an entry for the eda_event_streams and eda_credential_types role to configure EDA as code.
eda_event_streams
eda_credential_types
ansible --version ansible [core 2.16.3] ansible-galaxy collection list Collection Version ---------------------------------------- ------- amazon.aws 8.2.1 ansible.controller 4.6.2 ansible.eda 2.2.0 ansible.hub 1.0.0 ansible.netcommon 5.2.0 ansible.platform 2.5.3 ansible.posix 1.5.4 ansible.scm 1.2.1 ansible.utils 2.11.0 ansible.windows 1.13.0 infra.aap_configuration 3.1.0 infra.ah_configuration 2.0.4 infra.controller_configuration 2.11.0 infra.eda_configuration 1.1.0 infra.ee_utilities 3.0.0 redhat.openshift 2.3.0 redhat.rhel_system_roles 1.21.2 redhat_cop.controller_configuration 2.3.0 Controller version 4.6.2 Event Driven Automation Version 1.1.2 Automation Hub Version 4.10.1
MacOS Sequoia 15.1.1
boths roles should be called from dispatcher if relevant variables are defined
neither role is called from dispatcher when relevant variables are defined
Please give some details of what is actually happening. Include a [minimum complete verifiable example] with:
infra.aap_configuration.dispatch
This is due to the missing entry here:
infra.aap_configuration/roles/dispatch/defaults/main.yml
Line 175 in 05b8305
No error - role is never called
--- - name: Apply EDA Configuration-as-code hosts: localhost gather_facts: false become: false vars_files: - vars/eda_secrets.yml tasks: - name: Include EDA configuration files tags: always ansible.builtin.include_vars: dir: eda - name: Call dispatch role for EDA configuration tags: always ansible.builtin.include_role: name: infra.aap_configuration.dispatch ...
--- eda_event_streams: - name: Dynatrace Event Stream credential_name: Dynatrace Credential organization: Default forward_events: true eda_credential_types: - name: REST API Credential description: REST API Credential inputs: fields: - type: string id: rest_username label: REST Username - secret: true type: string id: rest_password label: REST Password required: - rest_username - rest_password injectors: extra_vars: rest_password: !unsafe "{{ rest_password }}" rest_username: !unsafe "{{ rest_username }}" ...
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Summary
The dispatcher role is missing an entry for the
eda_event_streams
andeda_credential_types
role to configure EDA as code.Issue Type
Ansible, Collection, Controller details
OS / ENVIRONMENT
MacOS Sequoia 15.1.1
Desired Behavior
boths roles should be called from dispatcher if relevant variables are defined
Actual Behavior
neither role is called from dispatcher when relevant variables are defined
Please give some details of what is actually happening.
Include a [minimum complete verifiable example] with:
infra.aap_configuration.dispatch
This is due to the missing entry here:
infra.aap_configuration/roles/dispatch/defaults/main.yml
Line 175 in 05b8305
No error - role is never called
STEPS TO REPRODUCE
The text was updated successfully, but these errors were encountered: