-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow for addons to prompt for data input #1143
Merged
aaron-prindle
merged 4 commits into
kubernetes:master
from
upmc-enterprises:registryCredsPrompt
Feb 27, 2017
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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,92 @@ | ||
/* | ||
Copyright 2016 The Kubernetes Authors All rights reserved. | ||
|
||
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 config | ||
|
||
import ( | ||
"bufio" | ||
"fmt" | ||
"log" | ||
"os" | ||
"strings" | ||
) | ||
|
||
// AskForYesNoConfirmation asks the user for confirmation. A user must type in "yes" or "no" and | ||
// then press enter. It has fuzzy matching, so "y", "Y", "yes", "YES", and "Yes" all count as | ||
// confirmations. If the input is not recognized, it will ask again. The function does not return | ||
// until it gets a valid response from the user. | ||
func AskForYesNoConfirmation(s string, posResponses, negResponses []string) bool { | ||
reader := bufio.NewReader(os.Stdin) | ||
|
||
for { | ||
fmt.Printf("%s [y/n]: ", s) | ||
|
||
response, err := reader.ReadString('\n') | ||
if err != nil { | ||
log.Fatal(err) | ||
} | ||
|
||
response = strings.ToLower(strings.TrimSpace(response)) | ||
|
||
if containsString(posResponses, response) { | ||
return true | ||
} else if containsString(negResponses, response) { | ||
return false | ||
} else { | ||
fmt.Println("Please type yes or no:") | ||
return AskForYesNoConfirmation(s, posResponses, negResponses) | ||
} | ||
} | ||
} | ||
|
||
// AskForStaticValue asks for a single value to enter | ||
func AskForStaticValue(s string) string { | ||
reader := bufio.NewReader(os.Stdin) | ||
|
||
for { | ||
fmt.Printf("%s", s) | ||
|
||
response, err := reader.ReadString('\n') | ||
if err != nil { | ||
log.Fatal(err) | ||
} | ||
|
||
response = strings.TrimSpace(response) | ||
|
||
// Can't have zero length | ||
if len(response) == 0 { | ||
fmt.Println("--Error, please enter a value:") | ||
return AskForStaticValue(s) | ||
} | ||
return response | ||
} | ||
} | ||
|
||
// posString returns the first index of element in slice. | ||
// If slice does not contain element, returns -1. | ||
func posString(slice []string, element string) int { | ||
for index, elem := range slice { | ||
if elem == element { | ||
return index | ||
} | ||
} | ||
return -1 | ||
} | ||
|
||
// containsString returns true iff slice contains element | ||
func containsString(slice []string, element string) bool { | ||
return !(posString(slice, element) == -1) | ||
} |
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 |
---|---|---|
@@ -1,52 +1,55 @@ | ||
|
||
apiVersion: v1 | ||
kind: ReplicationController | ||
metadata: | ||
name: registry-creds | ||
namespace: kube-system | ||
labels: | ||
app: registry-creds | ||
version: v1.5 | ||
version: v1.6 | ||
kubernetes.io/cluster-service: "true" | ||
kubernetes.io/minikube-addons: registry-creds | ||
spec: | ||
replicas: 1 | ||
selector: | ||
app: registry-creds | ||
version: v1.5 | ||
name: registry-creds | ||
version: v1.6 | ||
kubernetes.io/cluster-service: "true" | ||
template: | ||
metadata: | ||
labels: | ||
app: registry-creds | ||
version: v1.5 | ||
name: registry-creds | ||
version: v1.6 | ||
kubernetes.io/cluster-service: "true" | ||
spec: | ||
containers: | ||
- image: upmcenterprises/registry-creds:1.5 | ||
- image: upmcenterprises/registry-creds:1.6 | ||
name: registry-creds | ||
imagePullPolicy: Always | ||
env: | ||
- name: AWS_ACCESS_KEY_ID | ||
valueFrom: | ||
secretKeyRef: | ||
name: registry-creds | ||
name: registry-creds-ecr | ||
key: AWS_ACCESS_KEY_ID | ||
- name: AWS_SECRET_ACCESS_KEY | ||
valueFrom: | ||
secretKeyRef: | ||
name: registry-creds | ||
name: registry-creds-ecr | ||
key: AWS_SECRET_ACCESS_KEY | ||
- name: awsaccount | ||
valueFrom: | ||
secretKeyRef: | ||
name: registry-creds | ||
name: registry-creds-ecr | ||
key: aws-account | ||
- name: awsregion | ||
valueFrom: | ||
secretKeyRef: | ||
name: registry-creds-ecr | ||
key: aws-region | ||
volumeMounts: | ||
- name: gcr-creds | ||
mountPath: "/root/.config/gcloud" | ||
readOnly: true | ||
volumes: | ||
- name: gcr-creds | ||
secret: | ||
secretName: gcr-secret | ||
secretName: registry-creds-gcr |
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you add the Apache License to the top of this file? We have a test that this is at the top of every
.go
file in our repo, that's why the travis test is failing. This is the header: https://github.com/kubernetes/minikube/blob/master/pkg/minikube/cluster/cluster.go#L1