How do you integrate a credential plugin in a EE

,

Hi,

The guide https://github.com/ansible/awx/blob/devel/docs/credentials/credential_plugins.md

says I should install in the awx-task container but how do you do this in a EE enviroment

Do I just add additional_build_steps:

additional_build_steps:
prepend: |
RUN pip3 install --upgrade pip setuptools
RUN pip3 install --upgrade pip setuptools
awx-manage setup_managed_credential_types

or are credential plugins no longer supported?

kind regards

Stefan

stefan....@gmail.com (stefan.coussens@gmail.com) said:

The guide
https://github.com/ansible/awx/blob/devel/docs/credentials/credential_plugins.md
says I should install in the awx-task container but how do you do this in a
EE enviroment

Do I just add additional_build_steps:

additional_build_steps:
  prepend: |
    RUN pip3 install --upgrade pip setuptools
    RUN pip3 install --upgrade pip setuptools
    awx-manage setup_managed_credential_types

or are credential plugins no longer supported?

It would go in the main AWX image, credential plugins do not run in the EE.

Bill

Hi,

But since you don’t have root access in the main AWX image you cannot install it (also awx-mange is not found).

Do I need to create a custom main image?

Kind regards

Stefan Coussens (stefan.coussens@gmail.com) said:

But since you don't have root access in the main AWX image you cannot
install it (also awx-mange is not found).

Do I need to create a custom main image?

Yes, you'd need to build a custom awx image.

Bill