creationTimestamp:Kubernetes 复制控制器模板为 null

creationTimestamp: null for Kubernetes replication controller template

模板的 creationTimestampnull 是什么意思?

"template": {
          "metadata": {
            "creationTimestamp": null,
            "labels": {
              "name": "kube-template"
            }
          },

ReplicationControllerSpec 中的模板定义了 ReplicationController 创建的 Pod 的模板,但由于它是一个抽象的 template,它它有一个创建时间是没有意义的。 ReplicationController 创建 Pod 后,CreationTimestamp 将设置为创建 Pod 的时间。

ReplicationController 也有自己的元数据(不在模板中),其中应包括 ReplicationController 对象的创建时间。