-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow for addons to prompt for data input
- Loading branch information
1 parent
45262e8
commit 1430f35
Showing
4 changed files
with
361 additions
and
16 deletions.
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,89 @@ | ||
/* | ||
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,54 @@ | ||
|
||
apiVersion: v1 | ||
kind: ReplicationController | ||
metadata: | ||
name: registry-creds | ||
namespace: kube-system | ||
labels: | ||
app: registry-creds | ||
version: v1.5 | ||
kubernetes.io/cluster-service: "true" | ||
kubernetes.io/minikube-addons: registry-creds | ||
version: v1.6 | ||
spec: | ||
replicas: 1 | ||
selector: | ||
app: registry-creds | ||
version: v1.5 | ||
kubernetes.io/cluster-service: "true" | ||
name: registry-creds | ||
version: v1.6 | ||
template: | ||
metadata: | ||
labels: | ||
app: registry-creds | ||
version: v1.5 | ||
kubernetes.io/cluster-service: "true" | ||
name: registry-creds | ||
version: v1.6 | ||
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 | ||
items: | ||
- key: application_default_credentials.json | ||
path: application_default_credentials.json |
Oops, something went wrong.