Last active
November 26, 2024 19:06
-
-
Save laurobmb/dd57802b1cdc73765405826ff62a2ff0 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| --- | |
| apiVersion: v1 | |
| kind: Namespace | |
| metadata: | |
| labels: | |
| openshift.io/cluster-monitoring: "true" | |
| name: ansible-automation-platform | |
| --- | |
| apiVersion: operators.coreos.com/v1 | |
| kind: OperatorGroup | |
| metadata: | |
| name: ansible-automation-platform-operator | |
| namespace: ansible-automation-platform | |
| spec: | |
| targetNamespaces: | |
| - ansible-automation-platform | |
| --- | |
| apiVersion: operators.coreos.com/v1alpha1 | |
| kind: Subscription | |
| metadata: | |
| name: ansible-automation-platform | |
| namespace: ansible-automation-platform | |
| spec: | |
| channel: 'stable-2.5' | |
| installPlanApproval: Automatic | |
| name: ansible-automation-platform-operator | |
| source: redhat-operators | |
| sourceNamespace: openshift-marketplace | |
| --- | |
| apiVersion: aap.ansible.com/v1alpha1 | |
| kind: AnsibleAutomationPlatform | |
| metadata: | |
| name: example | |
| namespace: ansible-automation-platform | |
| spec: | |
| # Platform | |
| image_pull_policy: IfNotPresent | |
| # Components | |
| controller: | |
| disabled: false | |
| eda: | |
| disabled: false | |
| hub: | |
| disabled: false | |
| ## Modify to contain your RWM storage class name | |
| 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 Content pod | |
| # storage_type: azure | |
| # object_storage_azure_secret: azure-secret-name | |
| lightspeed: | |
| disabled: true | |
| --- |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment