Skip to content

Commit

Permalink
Merge pull request #178 from tulibraries/DEVO-114-only-deploy-dags
Browse files Browse the repository at this point in the history
DEVO-114 Limit CD to only deploy dags
  • Loading branch information
Chad Nelson committed Jun 18, 2020
2 parents 80e5084 + 6877e17 commit 5b46039
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Expand Up @@ -37,7 +37,7 @@ jobs:
pipenv run ansible-galaxy install -r requirements.yml
cp .circleci/.vault ~/.vault;
chmod +x ~/.vault
pipenv run ansible-playbook -i inventory/qa/hosts playbook.yml --vault-password-file=~/.vault -e 'ansible_ssh_port=9229'
pipenv run ansible-playbook -i inventory/qa/hosts playbook.yml --tags "jumphost,role::airflow::dags" --vault-password-file=~/.vault -e 'ansible_ssh_port=9229'
prod_deploy:
docker:
- image: circleci/python:3.6
Expand All @@ -59,7 +59,7 @@ jobs:
pipenv run ansible-galaxy install -r requirements.yml
cp .circleci/.vault ~/.vault;
chmod +x ~/.vault
pipenv run ansible-playbook -i inventory/prod/hosts playbook.yml --vault-password-file=~/.vault -e 'ansible_ssh_port=9229' -e 'funcake_dags_branch=master'
pipenv run ansible-playbook -i inventory/prod/hosts playbook.yml --tags "jumphost,role::airflow::dags" --vault-password-file=~/.vault -e 'ansible_ssh_port=9229' -e 'funcake_dags_branch=master'
workflows:
version: 2
Expand Down

0 comments on commit 5b46039

Please sign in to comment.