Skip to content

Commit

Permalink
Release v12.1 (#84)
Browse files Browse the repository at this point in the history
Release v12.1
  • Loading branch information
mliora authored Feb 17, 2021
1 parent 8f5c2fb commit 8b6e93f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ pipeline {
environment {
AWS_REGION = sh(script: 'curl -s http://169.254.169.254/latest/dynamic/instance-identity/document | python3 -c "import json,sys;obj=json.load(sys.stdin);print (obj[\'region\'])"', returnStdout: true).trim()
// shortCommit = sh(script: "git log -n 1 --pretty=format:'%h'", returnStdout: true).trim()
CYBERARK_VERSION = "v12.0"
CYBERARK_VERSION = "v12.1"
ENV_TIMESTAMP = sh(script: "date +%s", returnStdout: true).trim()
}
stages {
Expand Down
4 changes: 2 additions & 2 deletions requirements.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
# pvwa git repo
- src: https://github.com/cyberark/pvwa.git
scm: git
version: v12.0
version: v12.1

# cpm git repo
- src: https://github.com/cyberark/cpm.git
scm: git
version: v12.0
version: v12.1

# psm git repo
- src: https://github.com/cyberark/psm.git
Expand Down
3 changes: 2 additions & 1 deletion tests/playbooks/pas-infrastructure/ec2-infrastructure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@
$admin.PSBase.Invoke("SetPassword", "{{ ansible_password }}")
# Configure machine for ansible remoting
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
$url = "https://raw.githubusercontent.com/ansible/ansible/devel/examples/scripts/ConfigureRemotingForAnsible.ps1"
$file = "$env:temp\ConfigureRemotingForAnsible.ps1"
(New-Object -TypeName System.Net.WebClient).DownloadFile($url, $file)
Invoke-WebRequest -Uri $url -OutFile $file
powershell.exe -ExecutionPolicy ByPass -File $file -EnableCredSSP
</powershell>
Expand Down

0 comments on commit 8b6e93f

Please sign in to comment.