Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for PodExecCommands (0.14 sec)

  1. pkg/kube/client.go

    	GetProxyPods(ctx context.Context, limit int64, token string) (*v1.PodList, error)
    
    	// PodExecCommands takes a list of commands and the pod data to run the commands in the specified pod.
    	PodExecCommands(podName, podNamespace, container string, commands []string) (stdout string, stderr string, err error)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 39K bytes
    - Viewed (0)
  2. tests/integration/security/fuzz/fuzz_test.go

    		"--noproxy",
    		"--headers",
    		fmt.Sprintf("Authorization: Bearer %s", jwtToken),
    		"--mode",
    		"at",
    	}
    	stdout, stderr, err := t.Clusters().Default().PodExecCommands(pods.Items[0].Name, ns, jwtTool, commands)
    	if err != nil {
    		t.Fatalf("failed to run jwttool: %v", err)
    	}
    	t.Logf("%s\n%s\n", stdout, stderr)
    	t.Logf("jwttool fuzz test completed for %s", server)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 12.9K bytes
    - Viewed (0)
Back to top