Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
67f26571
Unverified
Commit
67f26571
authored
Apr 03, 2019
by
Kubernetes Prow Robot
Committed by
GitHub
Apr 03, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #75841 from javier-b-perez/automated-cherry-pick-of-#75269-upstream-release-1.14
Automated cherry pick of #75269: gce: configure: validate SA has storage scope
parents
8465371a
1d56d56f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
+7
-2
configure.sh
cluster/gce/gci/configure.sh
+7
-2
No files found.
cluster/gce/gci/configure.sh
View file @
67f26571
...
...
@@ -124,11 +124,16 @@ function validate-hash {
}
# Get default service account credentials of the VM.
GCE_METADATA_INTERNAL
=
"http://metadata.google.internal/computeMetadata/v1/instance"
function
get-credentials
{
curl
"
http://metadata.google.internal/computeMetadata/v1/instance
/service-accounts/default/token"
-H
"Metadata-Flavor: Google"
-s
| python
-c
\
curl
"
${
GCE_METADATA_INTERNAL
}
/service-accounts/default/token"
-H
"Metadata-Flavor: Google"
-s
| python
-c
\
'import sys; import json; print(json.loads(sys.stdin.read())["access_token"])'
}
function
valid-storage-scope
{
curl
"
${
GCE_METADATA_INTERNAL
}
/service-accounts/default/scopes"
-H
"Metadata-Flavor: Google"
-s
|
grep
-q
"auth/devstorage"
}
# Retry a download until we get it. Takes a hash and a set of URLs.
#
# $1 is the sha1 of the URL. Can be "" if the sha1 is unknown.
...
...
@@ -144,7 +149,7 @@ function download-or-bust {
rm
-f
"
${
file
}
"
# if the url belongs to GCS API we should use oauth2_token in the headers
local
curl_headers
=
""
if
[[
"
$url
"
=
~ ^https://storage.googleapis.com.
*
]]
;
then
if
[[
"
$url
"
=
~ ^https://storage.googleapis.com.
*
]]
&&
valid-storage-scope
;
then
curl_headers
=
"Authorization: Bearer
$(
get-credentials
)
"
fi
if
!
curl
${
curl_headers
:+-H
"
${
curl_headers
}
"
}
-f
--ipv4
-Lo
"
${
file
}
"
--connect-timeout
20
--max-time
300
--retry
6
--retry-delay
10
${
CURL_RETRY_CONNREFUSED
}
"
${
url
}
"
;
then
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment