容器模板中没有对象的Cat命令

时间:2018-11-21 05:14:43

标签: jenkins kubernetes

我对这个仓库中的kubernetes中的詹金斯动态奴隶感兴趣

https://github.com/fabric8io/kubernetes-plugin

我知道cat后面会跟对象,但是在此模板中,cat只是后面没有对象。

那么下面的“ cat”命令的功能是什么?

def label = "mypod-${UUID.randomUUID().toString()}"
podTemplate(label: label, containers: [
    containerTemplate(name: 'maven', image: 'maven:3.3.9-jdk-8-alpine', ttyEnabled: true, **command: 'cat'**),
    containerTemplate(name: 'golang', image: 'golang:1.8.0', ttyEnabled: true, **command: 'cat'**)
  ]) {

______自己找到答案________

对于所有误解的人,所有反对我的问题的人

因此,该容器模板上的猫是要使该容器永远运行,因此在创建容器后将不会再次创建该容器

1 个答案:

答案 0 :(得分:1)

这是执行的命令。如果您不知道cat命令的作用,则提供以下信息:http://www.linfo.org/cat.html(最常用于显示文件)。

在上述情况下,它用于通过显示管道流来证明在另一个容器中运行命令的概念。