KubeVela webservice 可以给 Service 打自定义的 label 或 annotation 嘛?
可以,KubeVela 在创建或更新 Service 时支持添加自定义的 label 和 annotation。您可以通过在 Service 的 YAML 配置中定义 metadata.labels 和 metadata.annotations 字段来实现
在这个示例中,custom-label-key: custom-label-value 是自定义的标签,而 service.beta.kubernetes.io/annotation-example: "annotation-value" 是自定义的注解。
KubeVela 的 webservice 组件支持给 Service 添加自定义的 label 和 annotation,无论是通过 YAML 文件声明还是在图形化界面操作,
apiVersion: core.oam.dev/v1beta1
kind: Application
metadata:
name: myapp
spec:
components:
- name: express-server
type: webservice
properties:
image: crccheck/hello-world
port: 8000
traits:
- type: labels
properties:
"release": "stable"
- type: annotations
properties:
"description": "web application"
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。