Skip to content

Commit 0ecee11

Browse files
authored
Remove install plan info
Intention is to present instructions on installing Bolt and the module, and keep instructions about running the install plan separate in the install plan docs.
1 parent e00fce3 commit 0ecee11

File tree

1 file changed

+22
-6
lines changed

1 file changed

+22
-6
lines changed

README.md

Lines changed: 22 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,31 @@ PEADM is a supported PE module. If you are a PE customer with the standard or pr
2727

2828
## Overview
2929

30-
This is the standard workflow for using PEADM to deploy a new PE installation.
30+
This is the standard workflow for installing PEADM.
3131

3232
1. [Install Bolt](https://www.puppet.com/docs/bolt/latest/bolt_installing) on a jump host.
3333
2. To create a Bolt project that includes the PEADM module, run:</br>`mkdir <YOUR_PROJECT> && cd <YOUR_PROJECT> && bolt project init <YOUR_PROJECT> --modules puppetlabs-peadm`
34-
3. In the Bolt project directory, update the `inventory.yaml` file with connection information for the servers you plan to use for hosting PE infrastructure.
35-
4. In the Bolt project directory, create a `params.json` file containing the installation parameters.
36-
5. Run `peadm::install --params @params.json`.
37-
38-
Typically after using PEADM to install PE, the module is not required again until you want to automate an upgrade by using the `peadm::upgrade` plan.
34+
3. In the Bolt project directory, update the `inventory.yaml` file with connection information for the servers you plan to use for hosting PE infrastructure. For example:
35+
```yaml
36+
---
37+
groups:
38+
- name: puppet-enterprise-nodes
39+
config:
40+
transport: ssh
41+
ssh:
42+
host-key-check: false
43+
user: centos
44+
run-as: root
45+
targets:
46+
- pe-xl-core-0.lab1.puppet.vm
47+
- pe-xl-core-1.lab1.puppet.vm
48+
- pe-xl-core-2.lab1.puppet.vm
49+
- pe-xl-core-3.lab1.puppet.vm
50+
- name: pe-xl-compiler-0.lab1.puppet.vm
51+
uri: 10.234.6.45
52+
- name: pe-xl-compiler-1.lab1.puppet.vm
53+
uri: 10.234.14.131
54+
```
3955
4056
### What PEADM affects
4157

0 commit comments

Comments
 (0)