kubectl YAML config file equivalent of “kubectl ru

2019-02-13 17:05发布

I've been using "kubectl run" with assorted flags to run Jobs interactively, but have recently outgrown what I can do with those flags, and have graduated to using YAML config files to describe my jobs.

However, I can't find an equivalent to the "-i" and "--tty" flags, to attach to the Job I'm creating.

Is there an equivalent YAML spec for:

kubectl run myjob \
            -i \
            --tty \
            --image=grc.io/myproj/myimg:mytag \
            --restart=Never \
            --rm \
            -- \
            my_command

Or is this maybe not the right approach?

1条回答
够拽才男人
2楼-- · 2019-02-13 17:40

I think you are mentioning these fields. https://github.com/kubernetes/kubernetes/blob/master/pkg/api/types.go#L1004-L1006

You can define stdin and tty in yaml file.

apiVersion: v1 
kind: Pod 
metadata: 
  name: test 
spec: 
  containers: 
    - name: test 
      image: test 
      stdin: true 
      tty: true 
查看更多
登录 后发表回答