Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

- Release 10.7 #21

Merged
merged 27 commits into from
Jan 22, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
6e58973
- Initial folder structure
Nov 26, 2018
f2bd68a
-Add hosts files with examples
Nov 26, 2018
0fe1cd6
- Added hosts and group_vars/windows.yml
Nov 26, 2018
4cd3e5f
- Add register_components.yml skeleton
Nov 26, 2018
44ff966
- Add requirements file
Nov 26, 2018
fb64748
- Update register components to run 1 by 1
Nov 26, 2018
202310a
- Supports components registration order
Dec 13, 2018
9eb1bac
- Enable components installation
Dec 13, 2018
b6c2942
Merge pull request #1 from cyberark/initial-folder-structure
nimrody15 Dec 19, 2018
a4eb4eb
cli-637, cli-670, Adding input parameters, aligning orchestrator, run…
nimrody15 Dec 25, 2018
51c916a
Cli 669 (#3)
nimrody15 Dec 26, 2018
6e0b89d
Added full Apache 2.0 License file (#4)
maishsk Dec 27, 2018
081707e
- Fixed templating error, fixed typo on readme (#6)
avishayil Dec 30, 2018
1b7f50d
set cpm registration to false (#5)
nimrody15 Dec 30, 2018
0accb69
- Added yamllint linter (#7)
avishayil Dec 30, 2018
efbc42b
-Add Jenkinsfile (#9)
zivshits Dec 30, 2018
ceee64a
- Add Cyberark EULA (#8)
zivshits Dec 30, 2018
73c9dbb
- Organized facts from prompt (#10)
avishayil Dec 30, 2018
2fedd7c
-Name set_facts task (ansible-lint issue) (#12)
zivshits Jan 2, 2019
f024724
Pas orchestrator readme changes (#11)
Jan 3, 2019
94c227e
-Add default values (#14)
zivshits Jan 6, 2019
b33d3fb
- Merge latest master to develop (#16)
zivshits Jan 6, 2019
7eefe61
Merge branch 'master' into develop
zivshits Jan 6, 2019
9c6d263
Change installation order for version 10.7 (#18)
nimrody15 Jan 9, 2019
28ae11d
- Update components versions to release 10.7 (#20)
zivshits Jan 21, 2019
66652fc
Merge branch 'master' into develop
zivshits Jan 21, 2019
38067a0
Merge branch 'master' into develop
zivshits Jan 21, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions requirements.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
# pvwa git repo
- src: https://github.com/cyberark/pvwa.git
scm: git
version: v10.6
version: v10.7

# cpm git repo
- src: https://github.com/cyberark/cpm.git
scm: git
version: v10.6
version: v10.7

# psm git repo
- src: https://github.com/cyberark/psm.git
scm: git
version: v10.6
version: v10.7
8 changes: 4 additions & 4 deletions tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
- name: Set required parameters from prompt
include_tasks: set_facts.yml

- hosts: cpm:pvwa:psm
- hosts: pvwa:cpm:psm
strategy: free

tasks:
Expand All @@ -62,14 +62,14 @@

# PSM Register Component Requires the First PVWA IP Address

- hosts: cpm:pvwa:psm
- hosts: pvwa:cpm:psm
serial: 1
tasks:

- include_tasks: register_cpm.yml
when: "'cpm' in group_names"
- include_tasks: register_pvwa.yml
when: "'pvwa' in group_names"
- include_tasks: register_cpm.yml
when: "'cpm' in group_names"
- include_tasks: register_psm.yml
vars:
pvwa_ip: "{{ groups['pvwa'][0] }}"
Expand Down