Skip to content

Commit

Permalink
feat: use component name as job id (#54)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrwils authored Oct 29, 2024
1 parent dc8a7b2 commit bf0e582
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pipelines/shared/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ pipeline {
-v \$(pwd)/infra/inventory:/ansible/inventory \
-v \$(pwd)/files/ansible/ansible.cfg:/etc/ansible/ansible.cfg \
-v \$(pwd)/downloads:/ansible/downloads \
-e PODMAN_* -e ACTION_TOKEN_*",
-e PODMAN_* -e ACTION_TOKEN_* -e COMPONENT*",
command: 'ansible-playbook -i inventory/${PODMAN_ANSIBLE_INVENTORY_PATH} \
app/playbooks/playbook.yaml --extra-vars "env_vars=dev"')
podman.logout(authfile: "${env.AUTHFILE}")
Expand Down Expand Up @@ -317,7 +317,7 @@ pipeline {
-v \$(pwd)/infra/inventory:/ansible/inventory \
-v \$(pwd)/files/ansible/ansible.cfg:/etc/ansible/ansible.cfg \
-v \$(pwd)/downloads:/ansible/downloads \
-e PODMAN_* -e ACTION_TOKEN_*",
-e PODMAN_* -e ACTION_TOKEN_* -e COMPONENT*",
command: 'ansible-playbook -i inventory/${PODMAN_ANSIBLE_INVENTORY_PATH} \
app/playbooks/playbook.yaml --extra-vars "env_vars=test"')
podman.logout(authfile: "${env.AUTHFILE}")
Expand Down Expand Up @@ -468,7 +468,7 @@ pipeline {
-v \$(pwd)/infra/inventory:/ansible/inventory \
-v \$(pwd)/files/ansible/ansible.cfg:/etc/ansible/ansible.cfg \
-v \$(pwd)/downloads:/ansible/downloads \
-e PODMAN_* -e ACTION_TOKEN_*",
-e PODMAN_* -e ACTION_TOKEN_* -e COMPONENT*",
command: 'ansible-playbook -i inventory/${PODMAN_ANSIBLE_INVENTORY_PATH} \
app/playbooks/playbook.yaml --extra-vars "env_vars=prod"')
podman.logout(authfile: "${env.AUTHFILE}")
Expand Down

0 comments on commit bf0e582

Please sign in to comment.