We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e366267 commit c7a8a7cCopy full SHA for c7a8a7c
pkg/cmd/ssh-proxy.go
@@ -159,6 +159,7 @@ func (o *ProxyOptions) Run(args []string) error {
159
}
160
sshProxyPod = job.Spec.Template.ObjectMeta.Name
161
fmt.Printf("pod/%s created\n", sshProxyPod)
162
+ time.Sleep(2 * time.Second)
163
164
165
fmt.Printf("Connecting via pod/%s", sshProxyPod)
@@ -223,6 +224,7 @@ func getJobObject() *batchv1.Job {
223
224
},
225
Spec: v1.PodSpec{
226
RestartPolicy: v1.RestartPolicyNever,
227
+ Tolerations: []v1.Toleration{{Operator: v1.TolerationOpExists}},
228
Containers: []core.Container{
229
{
230
Name: "busybox",
0 commit comments