To help you find information quickly, we’ve remodeled the documentation to focus on how you work. Need help finding something?
Explore the updated navigation, use search, or get answers from Ask Red Hat.
Share Feedback to help us keep improving.
Add components to an existing deployment
You can link any components of the Ansible Automation Platform, that you have already installed to a new Ansible Automation Platform instance.
About this task
The following procedure simulates a scenario where you have automation controller as an existing component and want to add automation hub and Event-Driven Ansible.
Procedure
- Log in to Red Hat OpenShift Container Platform.
- Navigate to .
- Select your Ansible Automation Platform Operator deployment.
- Click Subscriptions and edit your Update channel to stable-2.6.
- Click Details and on the Ansible Automation Platform tile click Create instance.
- From the Create Ansible Automation Platform page enter a name for your instance in the Name field.
- When deploying an Ansible Automation Platform instance, ensure that
auto_update is set to the default value of false on your existing automation controller instance in order for the integration to work.
- Click YAML view and copy in the following:
apiVersion: aap.ansible.com/v1alpha1
kind: AnsibleAutomationPlatform
metadata:
name: example-aap
namespace: aap
spec:
database:
resource_requirements:
requests:
cpu: 200m
memory: 512Mi
storage_requirements:
requests:
storage: 100Gi
# Platform
image_pull_policy: IfNotPresent
# Components
controller:
disabled: false
name: existing-controller-name
eda:
disabled: false
hub:
disabled: false
## uncomment if using file storage for Content pod
storage_type: file
file_storage_storage_class: <your-read-write-many-storage-class>
file_storage_size: 10Gi
## uncomment if using S3 storage for Content pod
# storage_type: S3
# object_storage_s3_secret: example-galaxy-object-storage
## uncomment if using Azure storage
- For new components, if you do not specify a name, a default name is generated.
- Click Create.
- To access your new instance, see Accessing the platform gateway.
Note
If you have an existing controller with a managed Postgres pod, after creating the Ansible Automation Platform resource your automation controller instance will continue to use that original Postgres pod. If you were to do a fresh install you would have a single Postgres managed pod for all instances.