gpt4 book ai didi

docker - Jenkins Kubernetes插件安全上下文

转载 作者:行者123 更新时间:2023-12-02 11:44:16 24 4
gpt4 key购买 nike

如何更改安全性Jenkins Kubernetes插件中的pod的上下文。例如,在Docker环境中以特权模式在Docker镜像中运行docker。

最佳答案

我相信this应该工作(根据文档):

def label = "mypod-${UUID.randomUUID().toString()}"
podTemplate(label: label, yaml: """
apiVersion: v1
kind: Pod
metadata:
labels:
some-label: some-label-value
spec:
containers:
- name: busybox
image: busybox
command:
- cat
tty: true
securityContext:
allowPrivilegeEscalation: true
"""
) {
node (label) {
container('busybox') {
sh "hostname"
}
}
}

关于docker - Jenkins Kubernetes插件安全上下文,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53031914/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com