mirror of
https://github.com/dokku/dokku.git
synced 2026-02-23 19:50:34 +01:00
chore: fix some comments
Signed-off-by: closeobserve <pingcap@yahoo.com>
This commit is contained in:
@@ -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,
|
||||
|
||||
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user