我已经在K8s上部署了Jenkins并执行了新的构建,Jenkins系统将调用K8s云来为构建创建一个k8s pod。
我已经使用git作为源管理控件创建了一个作业,但是在构建此作业时遇到了这个问题。
我试图通过下面的命令在Jenkins主服务器(k8s Jenkins pod)和从属服务器(在构建执行时调用该pod)上禁用git SSL,然后我尝试通过exec手动执行到Jenkins主服务器和从属服务器pod,以检查我的存储库它可以正常工作,但是当我执行工作时,仍然遇到了这个问题。
import math
import numpy as np
import matplotlib.pyplot as plt
from numpy.fft import fft, ifft
from scipy import signal
t=np.linspace(0,1,106)
Fs=1000
y=np.sin(2*math.pi*15*t) + np.sin(2*math.pi*30*t)
Y=fft(y,512)
f = np.arange(0,len(Y))*(Fs-1)/len(Y) #changed here
P = abs(Y)*2/len(Y)
plt.plot(f,P)
plt.show()
完整登录Jenkins:
git config --global http.sslVerify false
有什么建议吗?