File tree Expand file tree Collapse file tree 1 file changed +25
-2
lines changed Expand file tree Collapse file tree 1 file changed +25
-2
lines changed Original file line number Diff line number Diff line change @@ -111,13 +111,26 @@ Setup OpenBao on the seed node
111
111
Setup OpenBao HA on the overcloud hosts
112
112
---------------------------------------
113
113
114
- 1. Run secret-store-deploy-overcloud.yml custom playbook
114
+ 1. Ensure ``no_proxy `` has been configured to include the first controller's internal network IP if using walled garden append if necessary
115
+
116
+ .. code-block :: yaml
117
+ :caption : ` ` inventory/group_vars/overcloud/proxy.yml``
118
+
119
+ ---
120
+ no_proxy :
121
+ - " {{ lookup('vars', internal_net_name ~ '_ips')[groups.controllers.0] }}"
122
+
123
+ .. code-block :: bash
124
+
125
+ kayobe overcloud host configure -t proxy
126
+
127
+ 2. Run secret-store-deploy-overcloud.yml custom playbook
115
128
116
129
.. code-block :: bash
117
130
118
131
kayobe playbook run $KAYOBE_CONFIG_PATH /ansible/secret-store-deploy-overcloud.yml
119
132
120
- 2 . Encrypt overcloud openbao keys (use proper location of vault password file)
133
+ 3 . Encrypt overcloud openbao keys (use proper location of vault password file)
121
134
122
135
.. code-block :: bash
123
136
@@ -126,6 +139,16 @@ Setup OpenBao HA on the overcloud hosts
126
139
# For Hashicorp Vault
127
140
ansible-vault encrypt --vault-password-file ~ /vault.pass $KAYOBE_CONFIG_PATH /vault/overcloud-vault-keys.json
128
141
142
+
143
+ Or if environments are being used
144
+
145
+ .. code-block :: bash
146
+
147
+ ansible-vault encrypt --vault-password-file ~ /vault.pass $KAYOBE_CONFIG_PATH /environments/$KAYOBE_ENVIRONMENT /openbao/overcloud-openbao-keys.json
148
+
149
+ # For Hashicorp Vault
150
+ ansible-vault encrypt --vault-password-file ~ /vault.pass $KAYOBE_CONFIG_PATH /environments/$KAYOBE_ENVIRONMENT /vault/overcloud-vault-keys.json
151
+
129
152
Rotating OpenBao certificate on the overcloud hosts
130
153
---------------------------------------------------
131
154
You can’t perform that action at this time.
0 commit comments