我有一个 kustomization.yaml 文件,该文件使用私有存储库作为资源:
(is-non-neg -1)
=> #f
(is-non-neg 0)
=> #t
(is-non-neg 1)
=> #t
我想在Jenkins Pipeline上实现自动化。我不知道如何将Git凭证传递给kustomize build命令。有什么选择吗?
谢谢
答案 0 :(得分:2)
不能,您可以在启动Kustomize之前在git中设置凭据。在这种情况下,可能很简单,例如git config --global user.password "your password"
,但要查找credentials.helper
设置以获得更复杂的选项,可以从本地文件或直接从某些后备存储读取的工具中查找。