chore: fix some comments

Signed-off-by: closeobserve <pingcap@yahoo.com>
This commit is contained in:
closeobserve
2025-04-13 17:46:06 +08:00
parent fa55f38258
commit 9e2836fe7f
2 changed files with 2 additions and 2 deletions

View File

@@ -65,7 +65,7 @@ func CallSshCommand(input SshCommandInput) (SshResult, error) {
return CallSshCommandWithContext(context.Background(), input)
}
// CallSshCommand executes a command on a remote host via ssh with the given context
// CallSshCommandWithContext executes a command on a remote host via ssh with the given context
func CallSshCommandWithContext(ctx context.Context, input SshCommandInput) (SshResult, error) {
signals := make(chan os.Signal, 1)
signal.Notify(signals, os.Interrupt, syscall.SIGHUP,

View File

@@ -449,7 +449,7 @@ type GetPodInput struct {
Namespace string
}
// GetJob gets a Kubernetes job
// GetPod gets a Kubernetes pod
func (k KubernetesClient) GetPod(ctx context.Context, input GetPodInput) (corev1.Pod, error) {
pod, err := k.Client.CoreV1().Pods(input.Namespace).Get(ctx, input.Name, metav1.GetOptions{})
if err != nil {