我正计划在Kubernetes容器中运行的动态Jenkins代理中构建Docker EE映像,因此需要其中一个
jenkins/jnlp-agent:latest-windows
作为映像在Windows LTSC节点池上运行,该节点池似乎提供了足够的Jenkins代理功能或一种扩展jenkins/jnlp-agent:latest-windows
的方式,使其也可以运行Docker。我的天真方法
FROM jenkins/jnlp-agent:latest-windows
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'SilentlyContinue'; $ProgressPreference = 'SilentlyContinue';"]
USER ContainerAdministrator
COPY install-docker.ps1 .
RUN ./install-docker.ps1
RUN Remove-Item install-docker.ps1
其中install-docker.ps1
包含
Install-PackageProvider -Name NuGet -MinimumVersion 2.8.5.201 -Force -ErrorAction Continue
Install-Module -Name DockerMsftProvider -Repository PSGallery -Force -ErrorAction Continue
Install-Package -Force -ErrorAction Continue -Name docker -ProviderName DockerMsftProvider
> Start-Service Docker
Start-Service : Failed to start service 'Docker Engine (Docker)'.
At line:1 char:1
+ Start-Service Docker
+ ~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : OpenError: (System.ServiceProcess.ServiceController:ServiceController) [Start-Service],
ServiceCommandException
+ FullyQualifiedErrorId : StartServiceFailed,Microsoft.PowerShell.Commands.StartServiceCommand
或
用于Windows上Docker EE的Docker-in-Docker容器,它公开了Docker TCP套接字并允许Jenkins代理容器与其连接。
设置应在Google Kubernetes Engine提供的Windows Server 2019节点池上运行。我知道Windows池当前是beta。
如果有人对如何使第二种方法起作用有想法,为了提高安全性,仍然有必要以用户詹金斯而不是容器管理员的身份运行安装程序。
答案 0 :(得分:0)
尝试在Dockerfile中创建服务。
RUN powershell New-Service -Name “RSDataQualityWorkerPool” -BinaryPathName “C:\WWW\WinServices\RSDataQualityWorkerPool\RSDataQualityWorkerPool.exe”
在运行的容器中启动它。
Start-Service -Name “RSDataQualityWorkerPool”