如何自定义模板 metadata.annotations.tags

How to customize template metadata.annotations.tags

我有一个非常简单的问题:是否可以在 openshift 模板中创建一些自定义 metadata.annotations.tags(以便它们不会落入默认值 "Uncategorized" if none 匹配你想要的)?如果是怎么办?

提前致谢。

除非您将 Web 控制台配置为整个集群的管理员,否则您无法创建新类别,但您可以使用现有类别。例如:

        "kind": "Template",
        "apiVersion": "v1",
        "metadata": {
            "name": "notebook-builder",
            "annotations": {
                "openshift.io/display-name": "Jupyter Notebook Builder",
                "description": "Template for creating customised Jupyter Notebook images.",
                "iconClass": "icon-python",
                "tags": "python,jupyter"
            }
        },

这里的 python 标签导致它被添加到 Python 类别中。

参见 tag 中的示例说明: