You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Correct some Error and logging messages in quickstart.sh
* Add 'CLDR_PYTHON_PATH' option to quickstart.sh, which may be set to the mounted path of cdpy, e.g. /runner/project/cdpy/src
* Correct usage of inventory_static.ini in readme
Signed-off-by: Daniel Chaffelson <[email protected]>
{ docker info >/dev/null 2>&1;echo"Docker OK"; } || { echo"Docker is required and does not seem to be running - please start Docker and retry";exit 1; }
35
35
36
-
docker pull ${IMAGE_NAME}:"${IMAGE_TAG}"
36
+
echo"Checking for updated execution container image '${IMAGE_FULL_NAME}'"
37
+
docker pull "${IMAGE_FULL_NAME}"
37
38
38
39
echo"Ensuring default credential paths are available in calling using profile for mounting to execution environment"
Copy file name to clipboardExpand all lines: readme.adoc
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -460,7 +460,7 @@ Within the directory, you *must* supply the following files:
460
460
461
461
Optionally, if deploying a CDP Private Cloud cluster or need to set up adhoc IaaS infrastructure, you can supply the following :
462
462
463
-
* `inventory_static.ini`
463
+
* `inventory_template.ini`
464
464
* `inventory_template.ini`
465
465
466
466
The definition directory can host any other file or asset, such as data files, additional configuration details, additional playbooks. However, Cloudera Deploy will not operate unless the `definition.yml` and `application.yml` files are present.
@@ -501,7 +501,7 @@ NOTE: This file is a standard Ansible playbook, and when it is executed (via `im
501
501
502
502
=== `inventory_static.ini`
503
503
504
-
You may also include an `inventory_static.ini` file that describes your static Ansible inventory. This file will be automatically loaded and added to the Ansible inventory. Note that you can also use the standard Ansible `-i` switch to include other static inventory.
504
+
You may also include an `inventory_template.ini` file that describes your static Ansible inventory. This file will be automatically loaded and added to the Ansible inventory. Note that you can also use the standard Ansible `-i` switch to include other static inventory.
0 commit comments