Skip to content

Commit d8d888f

Browse files
Merge pull request #1140 from klgill/implement-qe-feedback
implementing qe feedback
2 parents 499c70a + de3699b commit d8d888f

File tree

2 files changed

+13
-4
lines changed

2 files changed

+13
-4
lines changed

docs_user/modules/proc_enabling-high-availability-for-instances.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,12 +74,12 @@ metadata:
7474
namespace: openstack
7575
spec:
7676
caBundleSecretName: combined-ca-bundle
77-
instanceHaConfigMap: <instanceha-0-config>
77+
instanceHaConfigMap:
7878
fencingSecret: fencing-secret
7979
EOF
8080
----
8181
+
82-
* `instanceha-0-config`: Specifies the name of the Instance HA configuration map that you created. Leave blank to have the `infra-operator` automatically create a configuration map. You can then edit the values as needed.
82+
* `spec.instanceHaConfigMap` defines the name of the YAML file containing the Instance HA configuration map that you created. If you do not create this file, then a YAML file called `instanceha-config` is created automatically when the Instance HA service is installed, providing the default values of the Instance HA service parameters. You can then edit the values as needed.
8383

8484
. Deploy the Instance HA resource:
8585
+

docs_user/modules/proc_preventing-pacemaker-from-monitoring-compute-nodes.adoc

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@ $ sudo pcs property set stonith-enabled=false
2121
$ sudo pcs resource disable <compute_remote_resource>
2222
----
2323
+
24-
* Replace `<compute_remote_resource>` with the name of the Compute remote resource in your environment.
24+
where:
25+
26+
`<compute_remote_resource>`:: Specifies the name of the Compute remote resource in your environment.
2527

2628
. Retrieve the name of the Compute stonith resources:
2729
+
@@ -32,9 +34,16 @@ $ sudo pcs stonith |grep Level |grep fence_compute |awk '{print $4}' |awk -F ','
3234
. Remove the Compute node `pacemaker_remote` and fencing resources:
3335
+
3436
----
37+
$ sudo pcs stonith disable stonith-fence_compute-fence-nova
3538
$ sudo pcs stonith disable <compute_stonith_resource>
3639
$ sudo pcs stonith delete <compute_stonith_resource>
3740
$ sudo pcs resource delete <compute_remote_resource>
41+
$ sudo pcs resource disable compute-unfence-trigger-clone
42+
$ sudo pcs resource delete compute-unfence-trigger-clone
43+
$ sudo pcs resource disable nova-evacuate
44+
$ sudo pcs resource delete nova-evacuate
3845
----
3946
+
40-
* Replace `<compute_stonith_resource>` with the name of the Compute stonith resource in your environment.
47+
where:
48+
49+
`<compute_stonith_resource>`:: Specifies the name of the Compute stonith resource in your environment.

0 commit comments

Comments
 (0)