runner pod_annotations_overwrite_allowed 如何配置
时间: 2023-07-19 18:35:24 浏览: 173
Alien-Runner.zip_alien runn
runner pod_annotations_overwrite_allowed 是 GitLab Runner 的一个配置选项,用于控制 Runner 是否允许在创建或更新 Kubernetes Pod 时覆盖 Pod 的 annotations 字段。
要配置此选项,需要在 GitLab Runner 的配置文件中添加以下行:
```
[[runners.kubernetes.volumes.host_path]]
name = "runner-vol"
mount_path = "/etc/gitlab-runner"
host_path = "/etc/gitlab-runner"
[[runners.kubernetes]]
pod_annotations_overwrite_allowed = true
```
其中,pod_annotations_overwrite_allowed = true 表示允许 Runner 覆盖 Pod 的 annotations 字段。如果将其设置为 false,则 Runner 将忽略任何 annotations 字段的更改。
阅读全文