diff --git a/README.md b/README.md index 4c90fad..0ad817a 100644 --- a/README.md +++ b/README.md @@ -96,7 +96,10 @@ sudo snap install helm --classic - `effect`: Whether to schedule on node if key taint not matched. Usually: `NoSchedule`

- `commands`: The commands (git clones) to run on the deployed instances/images -7. Run the playbook: `ansible-playbook deploy_jhub.yml` +7. Run the playbook: + - To run the entire playbook: `ansible-playbook deploy_jhub.yml` + - To run only the deploy_hub role: `ansible-playbook deploy_jhub.yml --tags deploy_hub` + - To run only the deploy_jhub role: `ansible-playbook deploy_jhub.yml --tags deploy_jhub` ## Customising your jupyterhub deployment These are settings/variables to chagne/add to customise your jupyterhub deployment, and are optional. diff --git a/deploy_jhub.yml b/deploy_jhub.yml index 9853723..d1d6d6d 100644 --- a/deploy_jhub.yml +++ b/deploy_jhub.yml @@ -1,6 +1,8 @@ - hosts: all # Kubectl is configured from this machine roles: - deploy_jhub + tags: + - deploy_jhub - deploy_hub - - + tags: + - deploy_hub