可以在 StatefulSet 的 YAML 文件中使用 annotations 字段来指定 annotation。例如:
apiVersion: apps/v1
kind: StatefulSet
metadata:
name: my-statefulset
annotations:
mycompany.com/annotation1: value1
mycompany.com/annotation2: value2
spec:
replicas: 3
selector:
matchLabels:
app: my-app
template:
metadata:
labels:
app: my-app
spec:
containers:
- name: my-container
image: nginx
ports:
- containerPort: 80
在上面的示例中,StatefulSet 对象有两个注释:mycompany.com/annotation1 和 mycompany.com/annotation2。它们分别设置为 value1 和 value2。