-
Notifications
You must be signed in to change notification settings - Fork 25
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
[VC-35738] Stop the API server when the context is cancelled #604
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
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,72 @@ | ||
package agent | ||
|
||
import ( | ||
"bytes" | ||
"context" | ||
"os" | ||
"os/exec" | ||
"testing" | ||
"time" | ||
|
||
"github.com/spf13/cobra" | ||
"github.com/stretchr/testify/require" | ||
"k8s.io/klog/v2" | ||
|
||
"github.com/jetstack/preflight/pkg/logs" | ||
) | ||
|
||
// TestRunOneShot runs the agent in `--one-shot` mode and verifies that it exits | ||
// after the first data gathering iteration. | ||
func TestRunOneShot(t *testing.T) { | ||
if _, found := os.LookupEnv("GO_CHILD"); found { | ||
// Silence the warning about missing pod name for event generation | ||
// TODO(wallrj): This should not be required when an `--input-file` has been supplied. | ||
t.Setenv("POD_NAME", "venafi-kubernetes-e2e") | ||
// Silence the error about missing kubeconfig. | ||
// TODO(wallrj): This should not be required when an `--input-file` has been supplied. | ||
t.Setenv("KUBECONFIG", "testdata/one-shot/success/kubeconfig.yaml") | ||
|
||
c := &cobra.Command{} | ||
InitAgentCmdFlags(c, &Flags) | ||
logs.AddFlags(c.Flags()) | ||
|
||
err := c.ParseFlags([]string{ | ||
"--one-shot", | ||
// TODO(wallrj): This should not be required when an `--input-file` has been supplied. | ||
"--api-token=should-not-be-required", | ||
// TODO(wallrj): This should not be required when an `--input-file` has been supplied. | ||
"--install-namespace=default", | ||
"--agent-config-file=testdata/one-shot/success/config.yaml", | ||
"--input-path=testdata/one-shot/success/input.json", | ||
"--output-path=/dev/null", | ||
"-v=1", | ||
}) | ||
require.NoError(t, err) | ||
|
||
logs.Initialize() | ||
Run(c, nil) | ||
klog.Flush() | ||
return | ||
} | ||
t.Log("Running child process") | ||
ctx, cancel := context.WithTimeout(context.Background(), time.Second*3) | ||
defer cancel() | ||
cmd := exec.CommandContext(ctx, os.Args[0], "-test.run=^TestRunOneShot$") | ||
var ( | ||
stdout bytes.Buffer | ||
stderr bytes.Buffer | ||
) | ||
cmd.Stdout = &stdout | ||
cmd.Stderr = &stderr | ||
cmd.Env = append( | ||
os.Environ(), | ||
"GO_CHILD=true", | ||
) | ||
err := cmd.Run() | ||
|
||
stdoutStr := stdout.String() | ||
stderrStr := stderr.String() | ||
t.Logf("STDOUT\n%s\n", stdoutStr) | ||
t.Logf("STDERR\n%s\n", stderrStr) | ||
require.NoError(t, err, context.Cause(ctx)) | ||
} |
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,4 @@ | ||
# Just enough venafi-kubernetes-agent config to allow it to run with an input | ||
# file in one-shot mode. | ||
cluster_id: "venafi-kubernetes-agent-e2e" | ||
organization_id: "venafi-kubernetes-agent-e2e" |
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 @@ | ||
[] |
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,15 @@ | ||
# Just enough kubeconfig to satisfy client-go | ||
apiVersion: v1 | ||
kind: Config | ||
current-context: cluster-1 | ||
contexts: | ||
- name: cluster-1 | ||
context: | ||
cluster: cluster-1 | ||
user: user-1 | ||
clusters: | ||
- name: cluster-1 | ||
cluster: | ||
server: https://192.0.2.1:8443 | ||
preferences: {} | ||
users: [] |
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.
Nit, unimportant: weird that we start a readiness and liveness server when running
--one-shot
, but that's all right IMOThere 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 agree it's weird, perhaps in a future PR we can make it so that the API server is not started in one-shot mode.