-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
Disable profiles with the command line #4054
Conversation
Fixes GoogleContainerTools#3988 Signed-off-by: David Gageot <[email protected]>
Codecov Report
|
How does that work? Things like |
You can use multiple I tried the Skaffold $ skaffold build
Generating tags...
- skaffold-hello -> skaffold-hello:v1.12.0-37-g6af3198f3
Checking cache...
- skaffold-hello: Not found. Building
Found [minikube] context, using local docker daemon.
Building [skaffold-hello]... I explicitly disable both the $ skaffold build -p -staging-profile,-minikube-profile
Generating tags...
- skaffold-world -> skaffold-world:v1.12.0-37-g6af3198f3
Checking cache...
- skaffold-world: Not found. Building
Found [minikube] context, using local docker daemon.
Building [skaffold-world]... And with separate $ skaffold build -p -minikube-profile -p -staging-profile
Generating tags...
- skaffold-world -> skaffold-world:v1.12.0-37-g6af3198f3
Checking cache...
- skaffold-world: Not found. Building
Found [minikube] context, using local docker daemon.
Building [skaffold-world]... |
@briandealwis Thanks for confirming. It seems profiles prefixed with Below is the error I am getting when running things like
|
@pierreyves-lebrun could you please open a new issue, link to this issue, and include your |
Fixes #3988
Signed-off-by: David Gageot [email protected]