Skip to content

Commit e58bdea

Browse files
authored
2.5 Updating awx to AutomationController (#2867) (#2875)
1 parent 26729d7 commit e58bdea

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

downstream/modules/platform/proc-aap-controller-yaml-backup.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ See the following procedure for how to back up a deployment of the {ControllerNa
1212

1313
.Procedure
1414

15-
. Create a file named "backup-awx.yml" with the following contents:
15+
. Create a file named "backup-automation-controller.yml" with the following contents:
1616
+
1717
----
1818
---
1919
apiVersion: automationcontroller.ansible.com/v1beta1
20-
kind: AWXBackup
20+
kind: AutomationControllerBackup
2121
metadata:
22-
name: awxbackup-2024-07-15
22+
name: AutomationControllerBackup-2024-07-15
2323
namespace: my-namespace
2424
spec:
2525
deployment_name: controller
@@ -34,4 +34,4 @@ The namespace above is the one containing the {ControllerName} deployment you in
3434

3535
. Use the `oc apply` command to create the backup object in your cluster:
3636

37-
`$ oc apply -f backup-awx.yml`
37+
`$ oc apply -f backup-automation-controller.yml`

downstream/modules/platform/proc-aap-controller-yaml-restore.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ kind: AutomationControllerRestore
5050
apiVersion: automationcontroller.ansible.com/v1beta1
5151
metadata:
5252
namespace: my-namespace
53-
name: awxrestore-2024-07-15
53+
name: AutomationControllerRestore-2024-07-15
5454
spec:
5555
deployment_name: restored_controller
56-
backup_name: awxbackup-2024-07-15
56+
backup_name: AutomationControllerBackup-2024-07-15
5757
postgres_configuration_secret: 'external-restore-postgres-configuration'
5858
----

downstream/modules/platform/proc-configuring-controller-ldap-security.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ data:
2727
kind: Secret
2828
metadata:
2929
name: mycerts
30-
namespace: awx
30+
namespace: AutomationController
3131
type: Opaque
3232
----
3333
<1> {ControllerNameStart} looks for the data field `ldap-ca.crt` in the specified secret when using the `ldap_cacert_secret`.

downstream/modules/platform/proc-verify-network-connectivity.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ oc rsh dbchecker
4444
. After the shell session opens in the pod, verify that the new project can connect to your old project cluster:
4545
+
4646
-----
47-
pg_isready -h <old-host-address> -p <old-port-number> -U awx
47+
pg_isready -h <old-host-address> -p <old-port-number> -U AutomationContoller
4848
-----
4949
+
5050
.Example

0 commit comments

Comments
 (0)