Skip to content

Commit

Permalink
Allow for addons to prompt for data input
Browse files Browse the repository at this point in the history
  • Loading branch information
stevesloka committed Feb 25, 2017
1 parent 45262e8 commit 1430f35
Show file tree
Hide file tree
Showing 4 changed files with 361 additions and 16 deletions.
89 changes: 89 additions & 0 deletions cmd/minikube/cmd/config/prompt.go
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)
}
56 changes: 56 additions & 0 deletions cmd/minikube/cmd/config/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,67 @@ func GetClientType() machine.ClientType {
}

func EnableOrDisableAddon(name string, val string) error {

enable, err := strconv.ParseBool(val)
if err != nil {
errors.Wrapf(err, "error attempted to parse enabled/disable value addon %s", name)
}

// allows for additional prompting of information when enabling addons
if enable {
switch name {
case "registry-creds":
posResponses := []string{"yes", "y"}
negResponses := []string{"no", "n"}

enableAWSECR := AskForYesNoConfirmation("\nDo you want to enable AWS Elastic Container Registry?", posResponses, negResponses)
if enableAWSECR {
awsAccessID := AskForStaticValue("-- Enter AWS Access Key ID: ")
awsAccessKey := AskForStaticValue("-- Enter AWS Secret Access Key: ")
awsRegion := AskForStaticValue("-- Enter AWS Region: ")
awsAccount := AskForStaticValue("-- Enter 12 digit AWS Account ID: ")

cluster.CreateSecret(
"kube-system",
"registry-creds-ecr",
map[string]string{
"AWS_ACCESS_KEY_ID": awsAccessID,
"AWS_SECRET_ACCESS_KEY": awsAccessKey,
"aws-account": awsAccount,
"awsregion": awsRegion,
},
map[string]string{
"app": "registry-creds",
"cloud": "ecr",
"kubernetes.io/minikube-addons": "registry-creds",
})
}

enableGCR := AskForYesNoConfirmation("\nDo you want to enable Google Container Registry?", posResponses, negResponses)
if enableGCR {
fmt.Println("-- Enter applicatoin_default_credentials.json as base64 by running following command:")
gcrApplicationDefaultCredentials := AskForStaticValue(" base64 -w 0 $HOME/.config/gcloud/application_default_credentials.json: ")

cluster.CreateSecret(
"kube-system",
"registry-creds-gcr",
map[string]string{
"application_default_credentials.json": gcrApplicationDefaultCredentials,
},
map[string]string{
"app": "registry-creds",
"cloud": "gcr",
"kubernetes.io/minikube-addons": "registry-creds",
})
}
break
}
} else {
// Cleanup existing secrets
cluster.DeleteSecret("kube-system", "registry-creds-ecr")
cluster.DeleteSecret("kube-system", "registry-creds-gcr")
}

//TODO(r2d4): config package should not reference API, pull this out
api, err := machine.NewAPIClient(GetClientType())
if err != nil {
Expand Down
34 changes: 18 additions & 16 deletions deploy/addons/registry-creds/registry-creds-rc.yaml
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
Loading

0 comments on commit 1430f35

Please sign in to comment.