From f0a4f62c7eb0900ca1c3cdecffbacc46a72480d2 Mon Sep 17 00:00:00 2001 From: Job van der Voort Date: Tue, 15 Apr 2014 15:04:48 +0200 Subject: start writing deploy key to multiple projects --- doc/api/deploy_key_multiple_projects.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 doc/api/deploy_key_multiple_projects.md (limited to 'doc/api') diff --git a/doc/api/deploy_key_multiple_projects.md b/doc/api/deploy_key_multiple_projects.md new file mode 100644 index 00000000000..56d8d513946 --- /dev/null +++ b/doc/api/deploy_key_multiple_projects.md @@ -0,0 +1,22 @@ +# Adding deploy keys to multiple projects + +If you want to easily add the same deploy key to multiple projects in the same group, this can be achieved quite easily with the API. + +First, find the ID of the projects you're interested in, by either listing all projects: + +``` +curl https://gitlab.com/api/v3/projects?private_token=abcdef +``` + +Or finding the id of a group and then listing all projects in that group: + +``` +curl https://gitlab.com/api/v3/groups?private_token=abcdef + +curl https://gitlab.com/api/v3/groups/1234?private_token=abcdef # where the id of the group is 1234 +``` + +With those IDs, add the same deploy key to all: +``` +curl -X POST curl https://gitlab.com/api/v3/projects/321/deploy_key_here?private_token=abcdef +``` -- cgit v1.2.1 From 23665d2506cfb0d7d30c368f4d82699587b9f86b Mon Sep 17 00:00:00 2001 From: Job van der Voort Date: Mon, 5 May 2014 17:04:19 +0200 Subject: add loop to deploy key to multiple projects --- doc/api/deploy_key_multiple_projects.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'doc/api') diff --git a/doc/api/deploy_key_multiple_projects.md b/doc/api/deploy_key_multiple_projects.md index 56d8d513946..f4121a718e6 100644 --- a/doc/api/deploy_key_multiple_projects.md +++ b/doc/api/deploy_key_multiple_projects.md @@ -18,5 +18,7 @@ curl https://gitlab.com/api/v3/groups/1234?private_token=abcdef # where the id o With those IDs, add the same deploy key to all: ``` -curl -X POST curl https://gitlab.com/api/v3/projects/321/deploy_key_here?private_token=abcdef +for project_id in 321 456 987; do + curl -X POST --data '{"title": "my key", "key": "ssh-rsa AAAA..."}' --header 'PRIVATE-TOKEN: abcdef' https://gitlab.com/api/v3/projects/${project_id}/keys +done ``` -- cgit v1.2.1 From ea109704d10d7fc5e9808e5355df994a7f6e109b Mon Sep 17 00:00:00 2001 From: Job van der Voort Date: Mon, 19 May 2014 20:35:59 +0200 Subject: everything in header --- doc/api/deploy_key_multiple_projects.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'doc/api') diff --git a/doc/api/deploy_key_multiple_projects.md b/doc/api/deploy_key_multiple_projects.md index f4121a718e6..1a5a458905e 100644 --- a/doc/api/deploy_key_multiple_projects.md +++ b/doc/api/deploy_key_multiple_projects.md @@ -5,15 +5,16 @@ If you want to easily add the same deploy key to multiple projects in the same g First, find the ID of the projects you're interested in, by either listing all projects: ``` -curl https://gitlab.com/api/v3/projects?private_token=abcdef +curl --header 'PRIVATE-TOKEN: abcdef' https://gitlab.com/api/v3/projects ``` Or finding the id of a group and then listing all projects in that group: ``` -curl https://gitlab.com/api/v3/groups?private_token=abcdef +curl --header 'PRIVATE-TOKEN: abcdef' https://gitlab.com/api/v3/groups -curl https://gitlab.com/api/v3/groups/1234?private_token=abcdef # where the id of the group is 1234 +# For group 1234: +curl --header 'PRIVATE-TOKEN: abcdef' https://gitlab.com/api/v3/groups/1234 ``` With those IDs, add the same deploy key to all: -- cgit v1.2.1