Skip to content
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

Recognise *.gcr.io default-repo in suggestions #4208

Merged
merged 1 commit into from
May 18, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 4 additions & 6 deletions pkg/skaffold/errors/buildProblems.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ limitations under the License.
package errors

import (
"strings"

"github.com/GoogleContainerTools/skaffold/pkg/skaffold/config"
)

Expand All @@ -30,19 +28,19 @@ var (
func suggestBuildPushAccessDeniedAction(opts config.SkaffoldOptions) string {
action := "Trying running with `--default-repo` flag."
if opts.DefaultRepo.Value() != nil {
return curateErrorMessage(*opts.DefaultRepo.Value(), "Check your `--default-repo` value")
return errMessage(*opts.DefaultRepo.Value(), "Check your `--default-repo` value")
}
// check if global repo is set
if cfg, err := getConfigForCurrentContext(opts.GlobalConfig); err == nil {
if cfg.DefaultRepo != "" {
return curateErrorMessage(cfg.DefaultRepo, "Check your default-repo setting in skaffold config")
return errMessage(cfg.DefaultRepo, "Check your default-repo setting in skaffold config")
}
}
return action
}

func curateErrorMessage(repo string, prefix string) string {
if strings.HasPrefix(repo, "gcr.io") {
func errMessage(repo string, prefix string) string {
if re(`(.+\.)?gcr\.io.*`).MatchString(repo) {
return prefix + " or try `gcloud auth configure-docker`."
}
return prefix + " or try `docker login`."
Expand Down
29 changes: 29 additions & 0 deletions pkg/skaffold/errors/buildProblems_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
/*
Copyright 2020 The Skaffold 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 errors

import (
"testing"

"github.com/GoogleContainerTools/skaffold/testutil"
)

func TestErrMessage(t *testing.T) {
testutil.CheckDeepEqual(t, "do something or try `docker login`.", errMessage("", "do something"))
testutil.CheckDeepEqual(t, "do something or try `gcloud auth configure-docker`.", errMessage("gcr.io/test", "do something"))
testutil.CheckDeepEqual(t, "do something or try `gcloud auth configure-docker`.", errMessage("eu.gcr.io/test", "do something"))
}