-
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
Enable skaffold debug
for kustomize
#2043
Merged
Merged
Changes from 6 commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
50448b0
Enable `skaffold debug` for kustomize
briandealwis 9569696
Update pkg/skaffold/deploy/kustomize.go
tejal29 aa88291
Add integration test to check that the debugging annotation was added
briandealwis e9e92cf
Add kustomize test too
briandealwis 90670a3
include kustomization.yaml
briandealwis 58e73c9
tweak transformation error message
briandealwis f04193e
make linter happy
briandealwis 1b87aed
Merge remote-tracking branch 'origin/master' into HEAD
briandealwis 1880101
back out CombinedOutput change
briandealwis 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
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,73 @@ | ||
/* | ||
Copyright 2019 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 integration | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/GoogleContainerTools/skaffold/integration/skaffold" | ||
) | ||
|
||
func TestDebug(t *testing.T) { | ||
if testing.Short() { | ||
t.Skip("skipping integration test") | ||
} | ||
|
||
tests := []struct { | ||
description string | ||
dir string | ||
filename string | ||
args []string | ||
deployments []string | ||
pods []string | ||
env []string | ||
remoteOnly bool | ||
}{ | ||
{ | ||
description: "jib+kubectl", | ||
dir: "testdata/jib", | ||
deployments: []string{"web"}, | ||
}, | ||
{ | ||
description: "jib+kustomize", | ||
args: []string{"--profile", "kustomize"}, | ||
dir: "testdata/jib", | ||
deployments: []string{"web"}, | ||
}, | ||
} | ||
for _, test := range tests { | ||
t.Run(test.description, func(t *testing.T) { | ||
ns, client, deleteNs := SetupNamespace(t) | ||
defer deleteNs() | ||
|
||
stop := skaffold.Debug(test.args...).WithConfig(test.filename).InDir(test.dir).InNs(ns.Name).WithEnv(test.env).RunBackground(t) | ||
defer stop() | ||
|
||
client.WaitForPodsReady(test.pods...) | ||
client.WaitForDeploymentsToStabilize(test.deployments...) | ||
for _, depName := range test.deployments { | ||
deploy := client.GetDeployment(depName) | ||
annotations := deploy.Spec.Template.GetAnnotations() | ||
if _, found := annotations["debug.cloud.google.com/config"]; !found { | ||
t.Errorf("deployment missing debug annotation: %v", annotations) | ||
} | ||
} | ||
|
||
skaffold.Delete().WithConfig(test.filename).InDir(test.dir).InNs(ns.Name).WithEnv(test.env).RunOrFail(t) | ||
}) | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
resources: | ||
- k8s/web.yaml |
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 |
---|---|---|
|
@@ -12,3 +12,6 @@ profiles: | |
- name: gcb | ||
build: | ||
googleCloudBuild: {} | ||
- name: kustomize | ||
deploy: | ||
kustomize: {} |
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
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.
I assume these
manifestTransforms
are currently allskaffold debug
-related transformers (because otherwise, it appears to me that this code change will affect other flows thanskaffold debug
too.) That said, can this be any general transformers later? If so, the error message "debug transform of manifests" may look out of place?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.
Good point: although
debug
is the only user, it is a general facility. I'll revise it.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.
I also forgot to include the
kustomization.yaml
file.