Utilise ansible-core included with Ubuntu
Closes #30201 Signed-off-by: Ryan Emerson <remerson@redhat.com>
This commit is contained in:
parent
2059d4d2ee
commit
25cf961114
2 changed files with 2 additions and 1 deletions
2
.github/scripts/ansible/aws_ec2.sh
vendored
2
.github/scripts/ansible/aws_ec2.sh
vendored
|
@ -12,7 +12,7 @@ REGION=$2
|
|||
case $OPERATION in
|
||||
requirements)
|
||||
ansible-galaxy collection install -r requirements.yml
|
||||
pip3 install --user ansible boto3 botocore
|
||||
pip3 install --user boto3 botocore
|
||||
;;
|
||||
create|delete|start|stop)
|
||||
if [ -f "env.yml" ]; then ANSIBLE_CUSTOM_VARS_ARG="-e @env.yml"; fi
|
||||
|
|
1
.github/workflows/ci.yml
vendored
1
.github/workflows/ci.yml
vendored
|
@ -424,6 +424,7 @@ jobs:
|
|||
export CLUSTER_NAME=keycloak_$(git rev-parse --short HEAD)
|
||||
echo "ec2_cluster=${CLUSTER_NAME}" >> $GITHUB_OUTPUT
|
||||
./aws_ec2.sh requirements
|
||||
pipx inject ansible-core boto3 botocore
|
||||
./aws_ec2.sh create ${REGION}
|
||||
./keycloak_ec2_installer.sh ${REGION} /tmp/keycloak.zip
|
||||
./mvn_ec2_runner.sh ${REGION} "clean install -B -DskipTests -Pdistribution"
|
||||
|
|
Loading…
Reference in a new issue