-
Notifications
You must be signed in to change notification settings - Fork 146
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #274 from verult/cloudconfig
Integration with GCE cloud config
- Loading branch information
Showing
21 changed files
with
2,476 additions
and
37 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
/* | ||
Copyright 2019 The Kubernetes Authors. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package gcecloudprovider | ||
|
||
import ( | ||
"encoding/json" | ||
"net/http" | ||
"strings" | ||
"time" | ||
|
||
"k8s.io/client-go/util/flowcontrol" | ||
|
||
"golang.org/x/oauth2" | ||
"golang.org/x/oauth2/google" | ||
"google.golang.org/api/googleapi" | ||
) | ||
|
||
const ( | ||
// Max QPS to allow through to the token URL. | ||
tokenURLQPS = .05 // back off to once every 20 seconds when failing | ||
// Maximum burst of requests to token URL before limiting. | ||
tokenURLBurst = 3 | ||
) | ||
|
||
// TODO(#276) add metrics around token requests once the driver integrates with Prometheus. | ||
|
||
// AltTokenSource is the structure holding the data for the functionality needed to generates tokens | ||
type AltTokenSource struct { | ||
oauthClient *http.Client | ||
tokenURL string | ||
tokenBody string | ||
throttle flowcontrol.RateLimiter | ||
} | ||
|
||
// Token returns a token which may be used for authentication | ||
func (a *AltTokenSource) Token() (*oauth2.Token, error) { | ||
a.throttle.Accept() | ||
return a.token() | ||
} | ||
|
||
func (a *AltTokenSource) token() (*oauth2.Token, error) { | ||
req, err := http.NewRequest("POST", a.tokenURL, strings.NewReader(a.tokenBody)) | ||
if err != nil { | ||
return nil, err | ||
} | ||
res, err := a.oauthClient.Do(req) | ||
if err != nil { | ||
return nil, err | ||
} | ||
defer res.Body.Close() | ||
if err := googleapi.CheckResponse(res); err != nil { | ||
return nil, err | ||
} | ||
var tok struct { | ||
AccessToken string `json:"accessToken"` | ||
ExpireTime time.Time `json:"expireTime"` | ||
} | ||
if err := json.NewDecoder(res.Body).Decode(&tok); err != nil { | ||
return nil, err | ||
} | ||
return &oauth2.Token{ | ||
AccessToken: tok.AccessToken, | ||
Expiry: tok.ExpireTime, | ||
}, nil | ||
} | ||
|
||
// NewAltTokenSource constructs a new alternate token source for generating tokens. | ||
func NewAltTokenSource(tokenURL, tokenBody string) oauth2.TokenSource { | ||
client := oauth2.NewClient(oauth2.NoContext, google.ComputeTokenSource("")) | ||
a := &AltTokenSource{ | ||
oauthClient: client, | ||
tokenURL: tokenURL, | ||
tokenBody: tokenBody, | ||
throttle: flowcontrol.NewTokenBucketRateLimiter(tokenURLQPS, tokenURLBurst), | ||
} | ||
return oauth2.ReuseTokenSource(nil, a) | ||
} |
Oops, something went wrong.