This commit is contained in:
dengqichen 2025-12-17 19:33:47 +08:00
parent f5154b3c66
commit c3c9f9fabb
13 changed files with 546 additions and 272 deletions

View File

@ -106,15 +106,9 @@ public class TeamApplicationDTO extends BaseDTO {
@Schema(description = "K8s系统名称") @Schema(description = "K8s系统名称")
private String k8sSystemName; private String k8sSystemName;
@Schema(description = "K8s命名空间ID")
private Long k8sNamespaceId;
@Schema(description = "K8s命名空间名称") @Schema(description = "K8s命名空间名称")
private String k8sNamespaceName; private String k8sNamespaceName;
@Schema(description = "K8s Deployment ID")
private Long k8sDeploymentId;
@Schema(description = "K8s Deployment名称") @Schema(description = "K8s Deployment名称")
private String k8sDeploymentName; private String k8sDeploymentName;

View File

@ -135,18 +135,18 @@ public class TeamApplication extends Entity<Long> {
private Long k8sSystemId; private Long k8sSystemId;
/** /**
* K8s命名空间ID关联deploy_k8s_namespace * K8s命名空间名称
* 仅当 runtimeType=K8S 时使用 * 仅当 runtimeType=K8S 时使用
*/ */
@Column(name = "k8s_namespace_id") @Column(name = "k8s_namespace_name", length = 255)
private Long k8sNamespaceId; private String k8sNamespaceName;
/** /**
* K8s Deployment ID关联deploy_k8s_deployment * K8s Deployment名称
* 仅当 runtimeType=K8S 时使用 * 仅当 runtimeType=K8S 时使用
*/ */
@Column(name = "k8s_deployment_id") @Column(name = "k8s_deployment_name", length = 255)
private Long k8sDeploymentId; private String k8sDeploymentName;
// ==================== Docker运行时配置 ==================== // ==================== Docker运行时配置 ====================

View File

@ -119,7 +119,7 @@ public class TeamApplicationLogStreamWebSocketHandler extends AbstractLogStreamW
* 填充K8S目标信息 * 填充K8S目标信息
*/ */
private void fillK8sTarget(LogStreamTarget target, TeamApplication teamApp) { private void fillK8sTarget(LogStreamTarget target, TeamApplication teamApp) {
if (teamApp.getK8sSystemId() == null || teamApp.getK8sNamespaceId() == null) { if (teamApp.getK8sSystemId() == null || teamApp.getK8sNamespaceName() == null) {
throw new BusinessException(ResponseCode.TEAM_APP_K8S_CONFIG_INCOMPLETE); throw new BusinessException(ResponseCode.TEAM_APP_K8S_CONFIG_INCOMPLETE);
} }
@ -129,14 +129,9 @@ public class TeamApplicationLogStreamWebSocketHandler extends AbstractLogStreamW
new Object[]{"K8S运行时必须指定Pod名称name字段"}); new Object[]{"K8S运行时必须指定Pod名称name字段"});
} }
// 查询K8sNamespace获取实际的namespace名称 // 直接使用TeamApplication中的namespace名称
K8sNamespace k8sNamespace =
k8sNamespaceRepository.findById(teamApp.getK8sNamespaceId())
.orElseThrow(() -> new BusinessException(ResponseCode.K8S_NAMESPACE_NOT_FOUND));
target.setK8sSystemId(teamApp.getK8sSystemId()); target.setK8sSystemId(teamApp.getK8sSystemId());
target.setK8sNamespace(k8sNamespace.getNamespaceName()); target.setK8sNamespace(teamApp.getK8sNamespaceName());
target.setK8sDeploymentId(teamApp.getK8sDeploymentId());
} }
/** /**

View File

@ -72,6 +72,12 @@ public class K8sServiceIntegrationImpl extends BaseExternalSystemIntegration imp
if (cache == null || cache.isExpired()) { if (cache == null || cache.isExpired()) {
log.debug("K8S ApiClient缓存失效重新创建: systemId={}", systemId); log.debug("K8S ApiClient缓存失效重新创建: systemId={}", systemId);
// 关闭旧的ApiClient以释放OkHttp资源
if (cache != null && cache.isExpired()) {
log.debug("关闭过期的K8S ApiClient: systemId={}", systemId);
closeApiClient(cache.apiClient);
}
try { try {
ApiClient apiClient = createApiClientInternal(system); ApiClient apiClient = createApiClientInternal(system);
cache = new K8sApiClientCache(apiClient); cache = new K8sApiClientCache(apiClient);
@ -1177,4 +1183,35 @@ public class K8sServiceIntegrationImpl extends BaseExternalSystemIntegration imp
K8sApiClientCache cache = getApiClientCache(system); K8sApiClientCache cache = getApiClientCache(system);
return cache.apiClient; return cache.apiClient;
} }
/**
* 关闭K8S ApiClient释放OkHttp资源
* 包括连接池和调度器线程
*
* @param apiClient 要关闭的ApiClient
*/
private void closeApiClient(ApiClient apiClient) {
if (apiClient == null) {
return;
}
try {
okhttp3.OkHttpClient httpClient = apiClient.getHttpClient();
// 关闭连接池驱逐所有空闲连接
if (httpClient.connectionPool() != null) {
httpClient.connectionPool().evictAll();
log.debug("已关闭K8S ApiClient连接池");
}
// 关闭调度器线程池
if (httpClient.dispatcher() != null && httpClient.dispatcher().executorService() != null) {
httpClient.dispatcher().executorService().shutdown();
log.debug("已关闭K8S ApiClient调度器");
}
} catch (Exception e) {
log.warn("关闭K8S ApiClient时发生异常不影响主流程: {}", e.getMessage());
}
}
} }

View File

@ -26,6 +26,7 @@ import com.qqchen.deploy.backend.deploy.repository.IK8sNamespaceRepository;
import com.qqchen.deploy.backend.deploy.repository.IK8sDeploymentRepository; import com.qqchen.deploy.backend.deploy.repository.IK8sDeploymentRepository;
import com.qqchen.deploy.backend.deploy.repository.IServerRepository; import com.qqchen.deploy.backend.deploy.repository.IServerRepository;
import com.qqchen.deploy.backend.deploy.service.IK8sPodService; import com.qqchen.deploy.backend.deploy.service.IK8sPodService;
import com.qqchen.deploy.backend.deploy.integration.IK8sServiceIntegration;
import com.qqchen.deploy.backend.deploy.integration.response.K8sPodResponse; import com.qqchen.deploy.backend.deploy.integration.response.K8sPodResponse;
import com.qqchen.deploy.backend.deploy.service.ITeamApplicationService; import com.qqchen.deploy.backend.deploy.service.ITeamApplicationService;
import com.qqchen.deploy.backend.framework.enums.ResponseCode; import com.qqchen.deploy.backend.framework.enums.ResponseCode;
@ -86,6 +87,9 @@ public class TeamApplicationServiceImpl extends BaseServiceImpl<TeamApplication,
@Resource @Resource
private IK8sPodService k8sPodService; private IK8sPodService k8sPodService;
@Resource
private IK8sServiceIntegration k8sServiceIntegration;
@Override @Override
@Transactional @Transactional
public TeamApplicationDTO create(TeamApplicationDTO dto) { public TeamApplicationDTO create(TeamApplicationDTO dto) {
@ -107,11 +111,21 @@ public class TeamApplicationServiceImpl extends BaseServiceImpl<TeamApplication,
} }
// 3. K8S类型查询Pod列表 // 3. K8S类型查询Pod列表
if (teamApp.getK8sDeploymentId() == null) { if (teamApp.getK8sSystemId() == null || teamApp.getK8sNamespaceName() == null || teamApp.getK8sDeploymentName() == null) {
throw new BusinessException(ResponseCode.TEAM_APP_K8S_CONFIG_INCOMPLETE); throw new BusinessException(ResponseCode.TEAM_APP_K8S_CONFIG_INCOMPLETE);
} }
List<K8sPodResponse> pods = k8sPodService.listPodsByDeployment(teamApp.getK8sDeploymentId()); // 获取K8S系统
ExternalSystem k8sSystem = externalSystemRepository.findById(teamApp.getK8sSystemId())
.orElseThrow(() -> new BusinessException(ResponseCode.K8S_SYSTEM_NOT_FOUND));
// 直接使用namespace和deployment名称查询Pod列表
List<K8sPodResponse> pods = k8sServiceIntegration.listPodsByDeployment(
k8sSystem,
teamApp.getK8sNamespaceName(),
teamApp.getK8sDeploymentName()
);
List<String> podNames = pods.stream() List<String> podNames = pods.stream()
.map(K8sPodResponse::getName) .map(K8sPodResponse::getName)
.collect(Collectors.toList()); .collect(Collectors.toList());
@ -221,14 +235,9 @@ public class TeamApplicationServiceImpl extends BaseServiceImpl<TeamApplication,
.filter(Objects::nonNull) .filter(Objects::nonNull)
.collect(Collectors.toSet()); .collect(Collectors.toSet());
// 收集K8S相关ID // 收集K8S系统ID用于查询系统名称
Set<Long> k8sNamespaceIds = teamApps.stream() Set<Long> k8sSystemIds = teamApps.stream()
.map(TeamApplicationDTO::getK8sNamespaceId) .map(TeamApplicationDTO::getK8sSystemId)
.filter(Objects::nonNull)
.collect(Collectors.toSet());
Set<Long> k8sDeploymentIds = teamApps.stream()
.map(TeamApplicationDTO::getK8sDeploymentId)
.filter(Objects::nonNull) .filter(Objects::nonNull)
.collect(Collectors.toSet()); .collect(Collectors.toSet());
@ -319,19 +328,11 @@ public class TeamApplicationServiceImpl extends BaseServiceImpl<TeamApplication,
); );
} }
// 11. 批量查询K8S Namespace信息 // 11. 批量查询K8S系统信息
Map<Long, K8sNamespace> k8sNamespaceMap = new HashMap<>(); Map<Long, ExternalSystem> k8sSystemMap = new HashMap<>();
if (!k8sNamespaceIds.isEmpty()) { if (!k8sSystemIds.isEmpty()) {
k8sNamespaceRepository.findAllById(k8sNamespaceIds).forEach(namespace -> externalSystemRepository.findAllById(k8sSystemIds).forEach(system ->
k8sNamespaceMap.put(namespace.getId(), namespace) k8sSystemMap.put(system.getId(), system)
);
}
// 12. 批量查询K8S Deployment信息
Map<Long, K8sDeployment> k8sDeploymentMap = new HashMap<>();
if (!k8sDeploymentIds.isEmpty()) {
k8sDeploymentRepository.findAllById(k8sDeploymentIds).forEach(deployment ->
k8sDeploymentMap.put(deployment.getId(), deployment)
); );
} }
@ -423,19 +424,11 @@ public class TeamApplicationServiceImpl extends BaseServiceImpl<TeamApplication,
} }
} }
// 填充K8S Namespace名称 // 填充K8S系统名称
if (teamApp.getK8sNamespaceId() != null) { if (teamApp.getK8sSystemId() != null) {
K8sNamespace namespace = k8sNamespaceMap.get(teamApp.getK8sNamespaceId()); ExternalSystem k8sSystem = k8sSystemMap.get(teamApp.getK8sSystemId());
if (namespace != null) { if (k8sSystem != null) {
teamApp.setK8sNamespaceName(namespace.getNamespaceName()); teamApp.setK8sSystemName(k8sSystem.getName());
}
}
// 填充K8S Deployment名称
if (teamApp.getK8sDeploymentId() != null) {
K8sDeployment deployment = k8sDeploymentMap.get(teamApp.getK8sDeploymentId());
if (deployment != null) {
teamApp.setK8sDeploymentName(deployment.getDeploymentName());
} }
} }

View File

@ -33,6 +33,24 @@ public class DockerLogStreamStrategy implements ILogStreamStrategy {
@Resource @Resource
private SSHCommandServiceFactory sshCommandServiceFactory; private SSHCommandServiceFactory sshCommandServiceFactory;
/**
* 关键修复保存每个会话的SSH连接引用用于stop()时强制关闭
* sessionId SSHClient
*/
private final Map<String, SSHClient> sshClients = new ConcurrentHashMap<>();
/**
* 关键修复保存每个会话的SSH Session引用
* sessionId SSH Session
*/
private final Map<String, Session> sshSessions = new ConcurrentHashMap<>();
/**
* 关键修复保存每个会话的Command引用
* sessionId Session.Command
*/
private final Map<String, Session.Command> sshCommands = new ConcurrentHashMap<>();
@Override @Override
public RuntimeTypeEnum supportedType() { public RuntimeTypeEnum supportedType() {
return RuntimeTypeEnum.DOCKER; return RuntimeTypeEnum.DOCKER;
@ -44,14 +62,18 @@ public class DockerLogStreamStrategy implements ILogStreamStrategy {
AtomicBoolean paused, AtomicBoolean paused,
LogLineCallback callback) throws Exception { LogLineCallback callback) throws Exception {
// 注意: 不要使用session.getId()因为AbstractLogStreamWebSocketHandler使用的是增强后的sessionId // 关键修复从session attributes获取增强后的sessionId与AbstractLogStreamWebSocketHandler保持一致
// 这里仅用于日志输出实际的session管理由AbstractLogStreamWebSocketHandler负责 String sessionId = (String) session.getAttributes().get("logStreamSessionId");
String webSocketId = session.getId(); if (sessionId == null) {
log.info("开始Docker日志流: webSocketId={}, container={}, host={}, session.isOpen={}", sessionId = session.getId(); // 降级方案
webSocketId, target.getName(), target.getHost(), session.isOpen()); }
log.info("开始Docker日志流: sessionId={}, container={}, host={}, session.isOpen={}",
sessionId, target.getName(), target.getHost(), session.isOpen());
SSHClient sshClient = null; SSHClient sshClient = null;
Session sshSession = null; Session sshSession = null;
Session.Command cmd = null;
try { try {
// 1. 建立SSH连接 // 1. 建立SSH连接
@ -65,6 +87,9 @@ public class DockerLogStreamStrategy implements ILogStreamStrategy {
target.getPassphrase() target.getPassphrase()
); );
// 关键修复保存SSH连接引用供stop()方法使用
sshClients.put(sessionId, sshClient);
// 2. 构建docker logs命令 // 2. 构建docker logs命令
String command = String.format("docker logs -f %s --tail %d", String command = String.format("docker logs -f %s --tail %d",
target.getName(), target.getLines()); target.getName(), target.getLines());
@ -73,15 +98,26 @@ public class DockerLogStreamStrategy implements ILogStreamStrategy {
// 3. 执行命令 // 3. 执行命令
sshSession = sshClient.startSession(); sshSession = sshClient.startSession();
sshSessions.put(sessionId, sshSession);
Session.Command cmd = sshSession.exec(command); cmd = sshSession.exec(command);
sshCommands.put(sessionId, cmd);
// 4. 持续读取输出流 // 4. 持续读取输出流
try (BufferedReader reader = new BufferedReader( try (BufferedReader reader = new BufferedReader(
new InputStreamReader(cmd.getInputStream()))) { new InputStreamReader(cmd.getInputStream()))) {
String line; String line;
while (session.isOpen() && (line = reader.readLine()) != null) { // 关键修复增加线程中断检查确保stop()能够中断阻塞的readLine()
while (session.isOpen() && !Thread.currentThread().isInterrupted()) {
line = reader.readLine();
// readLine()返回null表示流已关闭
if (line == null) {
log.debug("SSH输出流已关闭: sessionId={}", sessionId);
break;
}
// 检查暂停标志 // 检查暂停标志
if (paused.get()) { if (paused.get()) {
Thread.sleep(100); Thread.sleep(100);
@ -92,41 +128,98 @@ public class DockerLogStreamStrategy implements ILogStreamStrategy {
callback.sendLogLine(Instant.now().toString(), line); callback.sendLogLine(Instant.now().toString(), line);
} }
log.debug("Docker日志流正常结束: webSocketId={}, session.isOpen={}", log.debug("Docker日志流正常结束: sessionId={}, session.isOpen={}, interrupted={}",
webSocketId, session.isOpen()); sessionId, session.isOpen(), Thread.currentThread().isInterrupted());
} }
log.debug("Docker日志流退出while循环: webSocketId={}, session.isOpen={}", } catch (java.net.SocketException e) {
webSocketId, session.isOpen()); // Socket关闭是正常的清理流程
log.debug("SSH Socket已关闭: sessionId={}", sessionId);
} catch (java.io.InterruptedIOException e) {
// 线程被中断正常的清理流程
log.debug("Docker日志流线程被中断: sessionId={}", sessionId);
} catch (InterruptedException e) {
// 恢复中断状态
Thread.currentThread().interrupt();
log.debug("Docker日志流线程被中断(sleep): sessionId={}", sessionId);
} catch (Exception e) { } catch (Exception e) {
log.error("Docker日志流异常: webSocketId={}", webSocketId, e); if (session.isOpen()) {
throw e; log.error("Docker日志流异常: sessionId={}", sessionId, e);
throw e;
} else {
log.debug("Docker日志流异常(session已关闭): sessionId={}", sessionId);
}
} finally { } finally {
// 清理SSH资源 // 关键修复确保资源被清理
if (sshSession != null) { cleanupResources(sessionId, cmd, sshSession, sshClient);
try {
sshSession.close();
log.debug("SSH Session已关闭: webSocketId={}", webSocketId);
} catch (Exception e) {
log.error("关闭SSH Session失败: webSocketId={}", webSocketId, e);
}
}
if (sshClient != null) {
try {
sshClient.disconnect();
log.debug("SSH Client已断开: webSocketId={}", webSocketId);
} catch (Exception e) {
log.error("断开SSH Client失败: webSocketId={}", webSocketId, e);
}
}
} }
} }
@Override @Override
public void stop(String sessionId) { public void stop(String sessionId) {
log.info("停止Docker日志流: logStreamSessionId={}", sessionId); log.info("停止Docker日志流: sessionId={}", sessionId);
// SSH连接的清理由finally块处理这里只需要日志记录
// 关键修复主动清理SSH资源不依赖finally块
Session.Command cmd = sshCommands.remove(sessionId);
Session sshSession = sshSessions.remove(sessionId);
SSHClient sshClient = sshClients.remove(sessionId);
cleanupResources(sessionId, cmd, sshSession, sshClient);
}
/**
* 关键修复统一的资源清理方法
* 确保SSH连接SessionCommand都被正确关闭
*
* @param sessionId 会话ID
* @param cmd SSH Command
* @param sshSession SSH Session
* @param sshClient SSH Client
*/
private void cleanupResources(String sessionId, Session.Command cmd, Session sshSession, SSHClient sshClient) {
// 1. 先关闭Command的输入输出流强制中断阻塞的readLine()
if (cmd != null) {
try {
cmd.getInputStream().close();
} catch (Exception e) {
log.debug("关闭Command输入流失败: sessionId={}", sessionId, e);
}
try {
cmd.close();
} catch (Exception e) {
log.debug("关闭Command失败: sessionId={}", sessionId, e);
}
}
// 2. 关闭SSH Session
if (sshSession != null) {
try {
sshSession.close();
log.debug("SSH Session已关闭: sessionId={}", sessionId);
} catch (Exception e) {
log.debug("关闭SSH Session失败: sessionId={}", sessionId, e);
}
}
// 3. 断开SSH Client
if (sshClient != null) {
try {
if (sshClient.isConnected()) {
sshClient.disconnect();
}
sshClient.close();
log.debug("SSH Client已断开: sessionId={}", sessionId);
} catch (Exception e) {
log.debug("断开SSH Client失败: sessionId={}", sessionId, e);
}
}
// 4. 从Map中移除引用
sshCommands.remove(sessionId);
sshSessions.remove(sessionId);
sshClients.remove(sessionId);
log.debug("Docker日志流资源清理完成: sessionId={}", sessionId);
} }
} }

View File

@ -81,30 +81,32 @@ public class K8sLogStreamStrategy implements ILogStreamStrategy {
null // callback null // callback
); );
// 4. 执行调用并获取输入流 // 4. 执行调用并获取Response使用try-with-resources自动关闭
InputStream inputStream = call.execute().body().byteStream(); try (okhttp3.Response response = call.execute()) {
InputStream inputStream = response.body().byteStream();
// 5. 持续读取日志流 // 5. 持续读取日志流
try (BufferedReader reader = new BufferedReader(new InputStreamReader(inputStream))) { try (BufferedReader reader = new BufferedReader(new InputStreamReader(inputStream))) {
String line; String line;
while (session.isOpen() && (line = reader.readLine()) != null) { while (session.isOpen() && (line = reader.readLine()) != null) {
// 检查暂停标志 // 检查暂停标志
if (paused.get()) { if (paused.get()) {
Thread.sleep(100); Thread.sleep(100);
continue; continue;
}
// 解析K8S日志行格式timestamp content
String[] parts = line.split(" ", 2);
String timestamp = parts.length > 0 ? parts[0] : Instant.now().toString();
String content = parts.length > 1 ? parts[1] : line;
// 推送日志行
callback.sendLogLine(timestamp, content);
} }
// 解析K8S日志行格式timestamp content log.debug("K8S日志流退出while循环: webSocketId={}, session.isOpen={}",
String[] parts = line.split(" ", 2); webSocketId, session.isOpen());
String timestamp = parts.length > 0 ? parts[0] : Instant.now().toString();
String content = parts.length > 1 ? parts[1] : line;
// 推送日志行
callback.sendLogLine(timestamp, content);
} }
log.debug("K8S日志流退出while循环: webSocketId={}, session.isOpen={}",
webSocketId, session.isOpen());
} }
log.info("K8S日志流正常结束: webSocketId={}", webSocketId); log.info("K8S日志流正常结束: webSocketId={}", webSocketId);

View File

@ -33,6 +33,24 @@ public class ServerLogStreamStrategy implements ILogStreamStrategy {
@Resource @Resource
private SSHCommandServiceFactory sshCommandServiceFactory; private SSHCommandServiceFactory sshCommandServiceFactory;
/**
* 关键修复保存每个会话的SSH连接引用用于stop()时强制关闭
* sessionId SSHClient
*/
private final Map<String, SSHClient> sshClients = new ConcurrentHashMap<>();
/**
* 关键修复保存每个会话的SSH Session引用
* sessionId SSH Session
*/
private final Map<String, Session> sshSessions = new ConcurrentHashMap<>();
/**
* 关键修复保存每个会话的Command引用
* sessionId Session.Command
*/
private final Map<String, Session.Command> sshCommands = new ConcurrentHashMap<>();
@Override @Override
public RuntimeTypeEnum supportedType() { public RuntimeTypeEnum supportedType() {
return RuntimeTypeEnum.SERVER; return RuntimeTypeEnum.SERVER;
@ -44,14 +62,18 @@ public class ServerLogStreamStrategy implements ILogStreamStrategy {
AtomicBoolean paused, AtomicBoolean paused,
LogLineCallback callback) throws Exception { LogLineCallback callback) throws Exception {
// 注意: 不要使用session.getId()因为AbstractLogStreamWebSocketHandler使用的是增强后的sessionId // 关键修复从session attributes获取增强后的sessionId与AbstractLogStreamWebSocketHandler保持一致
// 这里仅用于日志输出实际的session管理由AbstractLogStreamWebSocketHandler负责 String sessionId = (String) session.getAttributes().get("logStreamSessionId");
String webSocketId = session.getId(); if (sessionId == null) {
log.info("开始Server日志流: webSocketId={}, logFile={}, host={}, session.isOpen={}", sessionId = session.getId(); // 降级方案
webSocketId, target.getLogFilePath(), target.getHost(), session.isOpen()); }
log.info("开始Server日志流: sessionId={}, logFile={}, host={}, session.isOpen={}",
sessionId, target.getLogFilePath(), target.getHost(), session.isOpen());
SSHClient sshClient = null; SSHClient sshClient = null;
Session sshSession = null; Session sshSession = null;
Session.Command cmd = null;
try { try {
// 1. 建立SSH连接 // 1. 建立SSH连接
@ -65,6 +87,9 @@ public class ServerLogStreamStrategy implements ILogStreamStrategy {
target.getPassphrase() target.getPassphrase()
); );
// 关键修复保存SSH连接引用供stop()方法使用
sshClients.put(sessionId, sshClient);
// 2. 构建tail命令 // 2. 构建tail命令
// logQueryCommand已经包含完整的tail命令,只需要在后面加上-n参数 // logQueryCommand已经包含完整的tail命令,只需要在后面加上-n参数
String command = target.getLogFilePath() + " -n " + target.getLines(); String command = target.getLogFilePath() + " -n " + target.getLines();
@ -73,15 +98,26 @@ public class ServerLogStreamStrategy implements ILogStreamStrategy {
// 3. 执行命令 // 3. 执行命令
sshSession = sshClient.startSession(); sshSession = sshClient.startSession();
sshSessions.put(sessionId, sshSession);
Session.Command cmd = sshSession.exec(command); cmd = sshSession.exec(command);
sshCommands.put(sessionId, cmd);
// 4. 持续读取输出流 // 4. 持续读取输出流
try (BufferedReader reader = new BufferedReader( try (BufferedReader reader = new BufferedReader(
new InputStreamReader(cmd.getInputStream()))) { new InputStreamReader(cmd.getInputStream()))) {
String line; String line;
while (session.isOpen() && (line = reader.readLine()) != null) { // 关键修复增加线程中断检查确保stop()能够中断阻塞的readLine()
while (session.isOpen() && !Thread.currentThread().isInterrupted()) {
line = reader.readLine();
// readLine()返回null表示流已关闭
if (line == null) {
log.debug("SSH输出流已关闭: sessionId={}", sessionId);
break;
}
// 检查暂停标志 // 检查暂停标志
if (paused.get()) { if (paused.get()) {
Thread.sleep(100); Thread.sleep(100);
@ -92,41 +128,98 @@ public class ServerLogStreamStrategy implements ILogStreamStrategy {
callback.sendLogLine(Instant.now().toString(), line); callback.sendLogLine(Instant.now().toString(), line);
} }
log.debug("Server日志流正常结束: webSocketId={}, session.isOpen={}", log.debug("Server日志流正常结束: sessionId={}, session.isOpen={}, interrupted={}",
webSocketId, session.isOpen()); sessionId, session.isOpen(), Thread.currentThread().isInterrupted());
} }
log.debug("Server日志流退出while循环: webSocketId={}, session.isOpen={}", } catch (java.net.SocketException e) {
webSocketId, session.isOpen()); // Socket关闭是正常的清理流程
log.debug("SSH Socket已关闭: sessionId={}", sessionId);
} catch (java.io.InterruptedIOException e) {
// 线程被中断正常的清理流程
log.debug("Server日志流线程被中断: sessionId={}", sessionId);
} catch (InterruptedException e) {
// 恢复中断状态
Thread.currentThread().interrupt();
log.debug("Server日志流线程被中断(sleep): sessionId={}", sessionId);
} catch (Exception e) { } catch (Exception e) {
log.error("Server日志流异常: webSocketId={}", webSocketId, e); if (session.isOpen()) {
throw e; log.error("Server日志流异常: sessionId={}", sessionId, e);
throw e;
} else {
log.debug("Server日志流异常(session已关闭): sessionId={}", sessionId);
}
} finally { } finally {
// 清理SSH资源 // 关键修复确保资源被清理
if (sshSession != null) { cleanupResources(sessionId, cmd, sshSession, sshClient);
try {
sshSession.close();
log.debug("SSH Session已关闭: webSocketId={}", webSocketId);
} catch (Exception e) {
log.error("关闭SSH Session失败: webSocketId={}", webSocketId, e);
}
}
if (sshClient != null) {
try {
sshClient.disconnect();
log.debug("SSH Client已断开: webSocketId={}", webSocketId);
} catch (Exception e) {
log.error("断开SSH Client失败: webSocketId={}", webSocketId, e);
}
}
} }
} }
@Override @Override
public void stop(String sessionId) { public void stop(String sessionId) {
log.info("停止Server日志流: logStreamSessionId={}", sessionId); log.info("停止Server日志流: sessionId={}", sessionId);
// SSH连接的清理由finally块处理这里只需要日志记录
// 关键修复主动清理SSH资源不依赖finally块
Session.Command cmd = sshCommands.remove(sessionId);
Session sshSession = sshSessions.remove(sessionId);
SSHClient sshClient = sshClients.remove(sessionId);
cleanupResources(sessionId, cmd, sshSession, sshClient);
}
/**
* 关键修复统一的资源清理方法
* 确保SSH连接SessionCommand都被正确关闭
*
* @param sessionId 会话ID
* @param cmd SSH Command
* @param sshSession SSH Session
* @param sshClient SSH Client
*/
private void cleanupResources(String sessionId, Session.Command cmd, Session sshSession, SSHClient sshClient) {
// 1. 先关闭Command的输入输出流强制中断阻塞的readLine()
if (cmd != null) {
try {
cmd.getInputStream().close();
} catch (Exception e) {
log.debug("关闭Command输入流失败: sessionId={}", sessionId, e);
}
try {
cmd.close();
} catch (Exception e) {
log.debug("关闭Command失败: sessionId={}", sessionId, e);
}
}
// 2. 关闭SSH Session
if (sshSession != null) {
try {
sshSession.close();
log.debug("SSH Session已关闭: sessionId={}", sessionId);
} catch (Exception e) {
log.debug("关闭SSH Session失败: sessionId={}", sessionId, e);
}
}
// 3. 断开SSH Client
if (sshClient != null) {
try {
if (sshClient.isConnected()) {
sshClient.disconnect();
}
sshClient.close();
log.debug("SSH Client已断开: sessionId={}", sessionId);
} catch (Exception e) {
log.debug("断开SSH Client失败: sessionId={}", sessionId, e);
}
}
// 4. 从Map中移除引用
sshCommands.remove(sessionId);
sshSessions.remove(sessionId);
sshClients.remove(sessionId);
log.debug("Server日志流资源清理完成: sessionId={}", sessionId);
} }
} }

View File

@ -493,29 +493,45 @@ public abstract class AbstractSSHWebSocketHandler extends TextWebSocketHandler {
byte[] buffer = new byte[1024]; byte[] buffer = new byte[1024];
int len; int len;
while (session.isOpen() && (len = inputStream.read(buffer)) > 0) { while (session.isOpen() && !Thread.currentThread().isInterrupted()) {
String output = new String(buffer, 0, len, StandardCharsets.UTF_8); len = inputStream.read(buffer);
sendOutput(session, output);
// read()返回-1表示流已关闭
if (len < 0) {
log.debug("SSH输出流已关闭: sessionId={}", sessionId);
break;
}
if (len > 0) {
String output = new String(buffer, 0, len, StandardCharsets.UTF_8);
sendOutput(session, output);
}
} }
log.debug("SSH输出监听线程正常退出: sessionId={}", sessionId);
} catch (java.net.SocketException e) {
// Socket关闭是正常的清理流程不需要报错
log.debug("SSH Socket已关闭: sessionId={}", sessionId);
} catch (java.io.InterruptedIOException e) { } catch (java.io.InterruptedIOException e) {
if (session.isOpen()) { // 线程被中断正常的清理流程
log.warn("SSH输出监听线程被中断: sessionId={}", sessionId); log.debug("SSH输出监听线程被中断: sessionId={}", sessionId);
try {
sendError(session, "SSH连接被中断");
} catch (Exception ex) {
// 忽略
}
}
} catch (IOException e) { } catch (IOException e) {
// 只有在session还开着的情况下才认为是异常
if (session.isOpen()) { if (session.isOpen()) {
log.error("读取SSH输出失败: sessionId={}", sessionId, e); log.warn("读取SSH输出失败: sessionId={}, error={}", sessionId, e.getMessage());
try { try {
sendError(session, "读取SSH输出失败: " + e.getMessage()); sendError(session, "SSH连接异常");
} catch (Exception ex) { } catch (Exception ex) {
// 忽略 // 忽略发送错误
} }
} else {
log.debug("读取SSH输出失败(session已关闭): sessionId={}", sessionId);
} }
} catch (Exception e) {
log.error("SSH输出监听线程异常: sessionId={}", sessionId, e);
} finally {
log.debug("SSH输出监听线程结束: sessionId={}", sessionId);
} }
} }
@ -534,19 +550,37 @@ public abstract class AbstractSSHWebSocketHandler extends TextWebSocketHandler {
byte[] buffer = new byte[1024]; byte[] buffer = new byte[1024];
int len; int len;
while (session.isOpen() && (len = errorStream.read(buffer)) > 0) { while (session.isOpen() && !Thread.currentThread().isInterrupted()) {
String output = new String(buffer, 0, len, StandardCharsets.UTF_8); len = errorStream.read(buffer);
sendOutput(session, output);
// read()返回-1表示流已关闭
if (len < 0) {
log.debug("SSH错误流已关闭: sessionId={}", sessionId);
break;
}
if (len > 0) {
String output = new String(buffer, 0, len, StandardCharsets.UTF_8);
sendOutput(session, output);
}
} }
log.debug("SSH错误流监听线程正常退出: sessionId={}", sessionId);
} catch (java.net.SocketException e) {
// Socket关闭是正常的清理流程
log.debug("SSH Socket已关闭(错误流): sessionId={}", sessionId);
} catch (java.io.InterruptedIOException e) { } catch (java.io.InterruptedIOException e) {
if (session.isOpen()) { // 线程被中断正常的清理流程
log.warn("SSH错误流监听线程被中断: sessionId={}", sessionId); log.debug("SSH错误流监听线程被中断: sessionId={}", sessionId);
}
} catch (IOException e) { } catch (IOException e) {
if (session.isOpen()) { if (session.isOpen()) {
log.error("读取SSH错误流失败: sessionId={}", sessionId, e); log.debug("读取SSH错误流失败: sessionId={}, error={}", sessionId, e.getMessage());
} }
} catch (Exception e) {
log.error("SSH错误流监听线程异常: sessionId={}", sessionId, e);
} finally {
log.debug("SSH错误流监听线程结束: sessionId={}", sessionId);
} }
} }
@ -585,7 +619,41 @@ public abstract class AbstractSSHWebSocketHandler extends TextWebSocketHandler {
// 2. 移除WebSocketSession // 2. 移除WebSocketSession
webSocketSessions.remove(sessionId); webSocketSessions.remove(sessionId);
// 3. 取消输出监听任务 // 3. 关键修复先关闭SSH Shell的输入输出流强制中断阻塞的read操作
Session.Shell shell = sshShells.remove(sessionId);
if (shell != null) {
try {
// 先关闭输入输出流这会导致阻塞的read()抛出IOException
try {
shell.getOutputStream().close();
} catch (Exception e) {
log.debug("关闭Shell输出流失败: sessionId={}", sessionId, e);
}
try {
shell.getInputStream().close();
} catch (Exception e) {
log.debug("关闭Shell输入流失败: sessionId={}", sessionId, e);
}
try {
shell.getErrorStream().close();
} catch (Exception e) {
log.debug("关闭Shell错误流失败: sessionId={}", sessionId, e);
}
// 等待一小段时间让监听线程有机会退出
Thread.sleep(100);
} catch (InterruptedException e) {
Thread.currentThread().interrupt();
log.debug("等待Shell流关闭被中断: sessionId={}", sessionId);
} catch (Exception e) {
log.debug("关闭Shell流异常: sessionId={}", sessionId, e);
}
}
// 4. 取消输出监听任务在关闭流之后
Future<?> stdoutTask = outputTasks.remove(sessionId); Future<?> stdoutTask = outputTasks.remove(sessionId);
if (stdoutTask != null && !stdoutTask.isDone()) { if (stdoutTask != null && !stdoutTask.isDone()) {
stdoutTask.cancel(true); stdoutTask.cancel(true);
@ -596,38 +664,42 @@ public abstract class AbstractSSHWebSocketHandler extends TextWebSocketHandler {
stderrTask.cancel(true); stderrTask.cancel(true);
} }
// 4. 关闭SSH Shell // 5. 关闭SSH Shell流已关闭这里只是清理资源
Session.Shell shell = sshShells.remove(sessionId);
if (shell != null) { if (shell != null) {
try { try {
shell.close(); shell.close();
} catch (IOException e) { } catch (IOException e) {
log.error("关闭SSH Shell失败: sessionId={}", sessionId, e); log.debug("关闭SSH Shell失败: sessionId={}", sessionId, e);
} }
} }
// 5. 关闭SSH客户端 // 6. 关键修复强制关闭SSH客户端确保底层Socket连接被释放
SSHClient sshClient = sshClients.remove(sessionId); SSHClient sshClient = sshClients.remove(sessionId);
if (sshClient != null) { if (sshClient != null) {
try { try {
// 先尝试优雅断开
if (sshClient.isConnected()) { if (sshClient.isConnected()) {
sshClient.disconnect(); sshClient.disconnect();
} }
// 强制关闭即使disconnect失败
sshClient.close();
} catch (IOException e) { } catch (IOException e) {
log.error("关闭SSH客户端失败: sessionId={}", sessionId, e); log.debug("关闭SSH客户端失败: sessionId={}", sessionId, e);
} }
} }
// 6. 从会话管理器移除最重要必须执行 // 7. 从会话管理器移除最重要必须执行
sessionManager.removeSession(sessionId); sessionManager.removeSession(sessionId);
// 7. 移除target信息 // 8. 移除target信息
sessionTargets.remove(sessionId); sessionTargets.remove(sessionId);
log.info("会话资源清理完成: sessionId={}", sessionId); log.info("会话资源清理完成: sessionId={}", sessionId);
} finally { } finally {
// 8. 触发断开后事件异步即使清理失败也要触发 // 9. 触发断开后事件异步即使清理失败也要触发
asyncTaskExecutor.submit(() -> { asyncTaskExecutor.submit(() -> {
try { try {
onEvent(SSHEvent.AFTER_DISCONNECT, eventData); onEvent(SSHEvent.AFTER_DISCONNECT, eventData);

View File

@ -48,10 +48,7 @@ public class LogStreamTarget {
*/ */
private String k8sNamespace; private String k8sNamespace;
/**
* K8S Deployment ID
*/
private Long k8sDeploymentId;
// ========== Docker/Server相关字段需要SSH ========== // ========== Docker/Server相关字段需要SSH ==========

View File

@ -743,78 +743,78 @@ INSERT INTO `deploy-ease-platform`.`deploy_team_member` (`id`, `create_by`, `cre
INSERT INTO `deploy-ease-platform`.`deploy_team_member` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `user_id`, `user_name`, `role_in_team`, `join_time`) VALUES (44, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 3, 10, '马也', '', NOW()); INSERT INTO `deploy-ease-platform`.`deploy_team_member` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `user_id`, `user_name`, `role_in_team`, `join_time`) VALUES (44, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 3, 10, '马也', '', NOW());
INSERT INTO `deploy-ease-platform`.`deploy_team_member` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `user_id`, `user_name`, `role_in_team`, `join_time`) VALUES (45, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 3, 12, '王栋柱', '', NOW()); INSERT INTO `deploy-ease-platform`.`deploy_team_member` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `user_id`, `user_name`, `role_in_team`, `join_time`) VALUES (45, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 3, 12, '王栋柱', '', NOW());
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (2, 'admin', NOW(), 'songwei', NOW(), 2, b'0', 4, 2, 2, 'JENKINS', 2, 497, 'release/1.4.0', 4, 401, 'release/1.4.1', 3, 'ibp-uat-scp-longi-module', 1, 'K8S', 8, 35, 269, NULL, NULL, NULL, NULL); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (2, 'admin', NOW(), 'songwei', NOW(), 2, b'0', 4, 2, 2, 'JENKINS', 2, 497, 'release/1.4.0', 4, 401, 'release/1.4.1', 3, 'ibp-uat-scp-longi-module', 1, 'K8S', 8, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (9, 'admin', NOW(), 'songwei', NOW(), 2, b'0', 4, 1, 2, 'JENKINS', 4, 413, 'release/1.4.0', NULL, NULL, NULL, 3, 'ibp-uat-scp-meta', 1, 'K8S', 8, 35, 270, NULL, NULL, NULL, NULL); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (9, 'admin', NOW(), 'songwei', NOW(), 2, b'0', 4, 1, 2, 'JENKINS', 4, 413, 'release/1.4.0', NULL, NULL, NULL, 3, 'ibp-uat-scp-meta', 1, 'K8S', 8, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (17, 'admin', NOW(), 'songwei', NOW(), 2, b'0', 4, 5, 2, 'JENKINS', 4, 423, 'release/1.4.0', NULL, NULL, NULL, 3, 'ibp-uat-scp-font-pro', 1, 'K8S', 8, 35, 279, NULL, NULL, NULL, NULL); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (17, 'admin', NOW(), 'songwei', NOW(), 2, b'0', 4, 5, 2, 'JENKINS', 4, 423, 'release/1.4.0', NULL, NULL, NULL, 3, 'ibp-uat-scp-font-pro', 1, 'K8S', 8, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (27, 'admin', NOW(), 'songwei', NOW(), 2, b'0', 4, 14, 1, 'JENKINS', 2, 504, 'release/1.7.0', NULL, NULL, NULL, 3, 'ibp-dev-scp-customization-engine', 1, 'K8S', 8, 34, 231, NULL, NULL, NULL, NULL); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (27, 'admin', NOW(), 'songwei', NOW(), 2, b'0', 4, 14, 1, 'JENKINS', 2, 504, 'release/1.7.0', NULL, NULL, NULL, 3, 'ibp-dev-scp-customization-engine', 1, 'K8S', 8, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (28, 'admin', NOW(), 'songwei', NOW(), 2, b'0', 4, 13, 1, 'JENKINS', 2, 305, 'release/1.7.0', NULL, NULL, NULL, 3, 'ibp-dev-scp-service-manager', 1, 'K8S', 8, 34, 231, NULL, NULL, NULL, NULL); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (28, 'admin', NOW(), 'songwei', NOW(), 2, b'0', 4, 13, 1, 'JENKINS', 2, 305, 'release/1.7.0', NULL, NULL, NULL, 3, 'ibp-dev-scp-service-manager', 1, 'K8S', 8, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (29, 'admin', NOW(), 'songwei', NOW(), 2, b'0', 4, 3, 1, 'JENKINS', 2, 465, 'release/1.7.0', 4, 402, 'release/1.7.0', 3, 'ibp-dev-scp-longi', 1, 'K8S', 8, 34, 237, NULL, NULL, NULL, NULL); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (29, 'admin', NOW(), 'songwei', NOW(), 2, b'0', 4, 3, 1, 'JENKINS', 2, 465, 'release/1.7.0', 4, 402, 'release/1.7.0', 3, 'ibp-dev-scp-longi', 1, 'K8S', 8, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (30, 'admin', NOW(), 'songwei', NOW(), 2, b'0', 4, 2, 1, 'JENKINS', 2, 497, 'release/1.7.0', 4, 401, 'release/1.7.0', 3, 'ibp-dev-scp-longi-module', 1, 'K8S', 8, 34, 238, NULL, NULL, NULL, NULL); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (30, 'admin', NOW(), 'songwei', NOW(), 2, b'0', 4, 2, 1, 'JENKINS', 2, 497, 'release/1.7.0', 4, 401, 'release/1.7.0', 3, 'ibp-dev-scp-longi-module', 1, 'K8S', 8, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (31, 'admin', NOW(), 'songwei', NOW(), 2, b'0', 4, 12, 1, 'JENKINS', 2, 344, 'release/1.7.0', NULL, NULL, NULL, 3, 'ibp-dev-scp-process', 1, 'K8S', 8, 34, 242, NULL, NULL, NULL, NULL); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (31, 'admin', NOW(), 'songwei', NOW(), 2, b'0', 4, 12, 1, 'JENKINS', 2, 344, 'release/1.7.0', NULL, NULL, NULL, 3, 'ibp-dev-scp-process', 1, 'K8S', 8, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (32, 'admin', NOW(), 'songwei', NOW(), 2, b'0', 4, 11, 1, 'JENKINS', 2, 557, 'release/1.7.0', NULL, NULL, NULL, 3, 'ibp-dev-scp-performance-batch', 1, 'K8S', 8, 34, 240, NULL, NULL, NULL, NULL); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (32, 'admin', NOW(), 'songwei', NOW(), 2, b'0', 4, 11, 1, 'JENKINS', 2, 557, 'release/1.7.0', NULL, NULL, NULL, 3, 'ibp-dev-scp-performance-batch', 1, 'K8S', 8, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (33, 'admin', NOW(), 'songwei', NOW(), 2, b'0', 4, 10, 1, 'JENKINS', 2, 337, 'release/1.7.0', 4, 420, 'release/1.7.0', 3, 'ibp-dev-scp-gateway', 1, 'K8S', 8, 34, 234, NULL, NULL, NULL, NULL); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (33, 'admin', NOW(), 'songwei', NOW(), 2, b'0', 4, 10, 1, 'JENKINS', 2, 337, 'release/1.7.0', 4, 420, 'release/1.7.0', 3, 'ibp-dev-scp-gateway', 1, 'K8S', 8, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (34, 'admin', NOW(), 'songwei', NOW(), 2, b'0', 4, 9, 1, 'JENKINS', 2, 336, 'release/1.7.0', 4, 418, 'release/1.7.0', 3, 'ibp-dev-scp-idaas-bsm', 1, 'K8S', 8, 34, 236, NULL, NULL, NULL, NULL); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (34, 'admin', NOW(), 'songwei', NOW(), 2, b'0', 4, 9, 1, 'JENKINS', 2, 336, 'release/1.7.0', 4, 418, 'release/1.7.0', 3, 'ibp-dev-scp-idaas-bsm', 1, 'K8S', 8, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (35, 'admin', NOW(), 'songwei', NOW(), 2, b'0', 4, 8, 1, 'JENKINS', 2, 345, 'release/1.7.0', 4, 423, 'release/1.7.0', 3, 'ibp-dev-scp-dsl', 1, 'K8S', 8, 34, 233, NULL, NULL, NULL, NULL); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (35, 'admin', NOW(), 'songwei', NOW(), 2, b'0', 4, 8, 1, 'JENKINS', 2, 345, 'release/1.7.0', 4, 423, 'release/1.7.0', 3, 'ibp-dev-scp-dsl', 1, 'K8S', 8, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (36, 'admin', NOW(), 'songwei', NOW(), 2, b'0', 4, 7, 1, 'JENKINS', 2, 304, 'release/1.7.0', 4, 412, 'release/1.7.0', 3, 'ibp-dev-scp-data-center', 1, 'K8S', 8, 34, 232, NULL, NULL, NULL, NULL); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (36, 'admin', NOW(), 'songwei', NOW(), 2, b'0', 4, 7, 1, 'JENKINS', 2, 304, 'release/1.7.0', 4, 412, 'release/1.7.0', 3, 'ibp-dev-scp-data-center', 1, 'K8S', 8, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (37, 'admin', NOW(), 'songwei', NOW(), 2, b'0', 4, 6, 1, 'JENKINS', 2, 300, 'release/1.7.0', 4, 410, 'release/1.7.0', 3, 'ibp-dev-scp-ws', 1, 'K8S', 8, 34, 246, NULL, NULL, NULL, NULL); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (37, 'admin', NOW(), 'songwei', NOW(), 2, b'0', 4, 6, 1, 'JENKINS', 2, 300, 'release/1.7.0', 4, 410, 'release/1.7.0', 3, 'ibp-dev-scp-ws', 1, 'K8S', 8, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (38, 'admin', NOW(), 'dengqichen', NOW(), 2, b'0', 4, 1, 1, 'JENKINS', 2, 288, 'release/1.7.0', 4, 413, 'release/1.7.0', 3, 'ibp-dev-scp-meta', 1, 'K8S', 8, 34, 239, NULL, NULL, NULL, NULL); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (38, 'admin', NOW(), 'dengqichen', NOW(), 2, b'0', 4, 1, 1, 'JENKINS', 2, 288, 'release/1.7.0', 4, 413, 'release/1.7.0', 3, 'ibp-dev-scp-meta', 1, 'K8S', 8, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (39, 'admin', NOW(), 'songwei', NOW(), 2, b'0', 4, 5, 1, 'JENKINS', 2, 315, 'release/1.7.0', 4, 422, 'release/1.7.0', 3, 'ibp-dev-scp-font-pro', 1, 'K8S', 8, 34, 249, NULL, NULL, NULL, NULL); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (39, 'admin', NOW(), 'songwei', NOW(), 2, b'0', 4, 5, 1, 'JENKINS', 2, 315, 'release/1.7.0', 4, 422, 'release/1.7.0', 3, 'ibp-dev-scp-font-pro', 1, 'K8S', 8, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (40, 'admin', NOW(), 'songwei', NOW(), 2, b'0', 4, 14, 2, 'JENKINS', 2, 504, 'release/1.4.0', NULL, NULL, NULL, 3, 'ibp-uat-scp-customization-engine', 1, 'K8S', 8, 35, 257, NULL, NULL, NULL, NULL); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (40, 'admin', NOW(), 'songwei', NOW(), 2, b'0', 4, 14, 2, 'JENKINS', 2, 504, 'release/1.4.0', NULL, NULL, NULL, 3, 'ibp-uat-scp-customization-engine', 1, 'K8S', 8, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (41, 'admin', NOW(), 'songwei', NOW(), 2, b'0', 4, 13, 2, 'JENKINS', 2, 305, 'release/1.4.0', NULL, NULL, NULL, 3, 'ibp-uat-scp-service-manager', 1, 'K8S', 8, 35, 274, NULL, NULL, NULL, NULL); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (41, 'admin', NOW(), 'songwei', NOW(), 2, b'0', 4, 13, 2, 'JENKINS', 2, 305, 'release/1.4.0', NULL, NULL, NULL, 3, 'ibp-uat-scp-service-manager', 1, 'K8S', 8, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (42, 'admin', NOW(), 'songwei', NOW(), 2, b'0', 4, 12, 2, 'JENKINS', 2, 344, 'release/1.4.0', NULL, NULL, NULL, 3, 'ibp-uat-scp-process', 1, 'K8S', 8, 35, 273, NULL, NULL, NULL, NULL); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (42, 'admin', NOW(), 'songwei', NOW(), 2, b'0', 4, 12, 2, 'JENKINS', 2, 344, 'release/1.4.0', NULL, NULL, NULL, 3, 'ibp-uat-scp-process', 1, 'K8S', 8, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (46, 'admin', NOW(), 'songwei', NOW(), 2, b'0', 4, 8, 2, 'JENKINS', 2, 345, 'release/1.4.0', NULL, NULL, NULL, 3, 'ibp-uat-scp-dsl', 1, 'K8S', 8, 35, 261, NULL, NULL, NULL, NULL); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (46, 'admin', NOW(), 'songwei', NOW(), 2, b'0', 4, 8, 2, 'JENKINS', 2, 345, 'release/1.4.0', NULL, NULL, NULL, 3, 'ibp-uat-scp-dsl', 1, 'K8S', 8, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (47, 'admin', NOW(), 'dengqichen', NOW(), 2, b'0', 5, 4, 5, 'NATIVE', 6, 38, 'release/1.0-localization', NULL, NULL, NULL, NULL, '', 2, 'SERVER', NULL, NULL, NULL, NULL, NULL, 3, 'tail -f /data/app/themetis-planner-workbench-server/logs/stdout.log'); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (47, 'admin', NOW(), 'dengqichen', NOW(), 2, b'0', 5, 4, 5, 'NATIVE', 6, 38, 'release/1.0-localization', NULL, NULL, NULL, NULL, '', 2, 'SERVER', NULL, NULL, NULL, NULL, NULL, 3, 'tail -f /data/app/themetis-planner-workbench-server/logs/stdout.log');
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (48, 'admin', NOW(), 'songwei', NOW(), 2, b'0', 4, 6, 2, 'JENKINS', 2, 300, 'release/1.4.0', NULL, NULL, NULL, 3, 'ibp-uat-scp-ws', 1, 'K8S', 8, 35, 275, NULL, NULL, NULL, NULL); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (48, 'admin', NOW(), 'songwei', NOW(), 2, b'0', 4, 6, 2, 'JENKINS', 2, 300, 'release/1.4.0', NULL, NULL, NULL, 3, 'ibp-uat-scp-ws', 1, 'K8S', 8, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (49, 'admin', NOW(), 'songwei', NOW(), 2, b'0', 4, 9, 2, 'JENKINS', 2, 336, 'release/1.4.0', NULL, NULL, NULL, 3, 'ibp-uat-scp-idaas-bsm', 1, 'K8S', 8, 35, 267, NULL, NULL, NULL, NULL); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (49, 'admin', NOW(), 'songwei', NOW(), 2, b'0', 4, 9, 2, 'JENKINS', 2, 336, 'release/1.4.0', NULL, NULL, NULL, 3, 'ibp-uat-scp-idaas-bsm', 1, 'K8S', 8, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (50, 'admin', NOW(), 'songwei', NOW(), 2, b'0', 4, 10, 2, 'JENKINS', 2, 337, 'release/1.4.0', NULL, NULL, NULL, 3, 'ibp-uat-scp-gateway', 1, 'K8S', 8, 35, 264, NULL, NULL, NULL, NULL); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (50, 'admin', NOW(), 'songwei', NOW(), 2, b'0', 4, 10, 2, 'JENKINS', 2, 337, 'release/1.4.0', NULL, NULL, NULL, 3, 'ibp-uat-scp-gateway', 1, 'K8S', 8, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (52, 'admin', NOW(), 'songwei', NOW(), 2, b'0', 4, 11, 2, 'JENKINS', 2, 557, 'release/1.4.0', 4, 462, 'release/1.4.0', 3, 'ibp-uat-scp-performance-batch', 1, 'K8S', 8, 35, 271, NULL, NULL, NULL, NULL); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (52, 'admin', NOW(), 'songwei', NOW(), 2, b'0', 4, 11, 2, 'JENKINS', 2, 557, 'release/1.4.0', 4, 462, 'release/1.4.0', 3, 'ibp-uat-scp-performance-batch', 1, 'K8S', 8, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (53, 'admin', NOW(), 'songwei', NOW(), 2, b'0', 4, 7, 2, 'JENKINS', 4, 412, 'release/1.4.1', NULL, NULL, NULL, 3, 'ibp-uat-scp-data-center', 1, 'K8S', 8, 35, 259, NULL, NULL, NULL, NULL); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (53, 'admin', NOW(), 'songwei', NOW(), 2, b'0', 4, 7, 2, 'JENKINS', 4, 412, 'release/1.4.1', NULL, NULL, NULL, 3, 'ibp-uat-scp-data-center', 1, 'K8S', 8, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (54, 'admin', NOW(), 'songwei', NOW(), 2, b'0', 4, 3, 2, 'JENKINS', 2, 465, 'release/1.4.0', 4, 402, 'release/1.4.0', 3, 'ibp-uat-scp-longi', 1, 'K8S', 8, 35, 268, NULL, NULL, NULL, NULL); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (54, 'admin', NOW(), 'songwei', NOW(), 2, b'0', 4, 3, 2, 'JENKINS', 2, 465, 'release/1.4.0', 4, 402, 'release/1.4.0', 3, 'ibp-uat-scp-longi', 1, 'K8S', 8, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (55, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 3, 1, 6, 'JENKINS', 2, 288, 'develop', NULL, NULL, NULL, 1, 'pro-scp-meta', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (55, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 3, 1, 6, 'JENKINS', 2, 288, 'develop', NULL, NULL, NULL, 1, 'pro-scp-meta', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (56, 'admin', NOW(), 'yangfan', NOW(), 3, b'0', 5, 15, 5, 'NATIVE', 6, 7, 'release/1.0-localization', NULL, NULL, NULL, NULL, '', 2, 'SERVER', NULL, NULL, NULL, NULL, NULL, 2, 'tail -f /data/app/themetis-engine/logs/stdout.log'); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (56, 'admin', NOW(), 'yangfan', NOW(), 3, b'0', 5, 15, 5, 'NATIVE', 6, 7, 'release/1.0-localization', NULL, NULL, NULL, NULL, '', 2, 'SERVER', NULL, NULL, NULL, NULL, NULL, 2, 'tail -f /data/app/themetis-engine/logs/stdout.log');
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (57, 'admin', NOW(), 'yangfan', NOW(), 3, b'0', 5, 16, 5, 'NATIVE', 6, 8, 'develop', NULL, NULL, NULL, NULL, '', 2, 'SERVER', NULL, NULL, NULL, NULL, NULL, 2, 'tail -f /data/app/themetis-scheduler/logs/stdout.log'); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (57, 'admin', NOW(), 'yangfan', NOW(), 3, b'0', 5, 16, 5, 'NATIVE', 6, 8, 'develop', NULL, NULL, NULL, NULL, '', 2, 'SERVER', NULL, NULL, NULL, NULL, NULL, 2, 'tail -f /data/app/themetis-scheduler/logs/stdout.log');
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (58, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 3, 5, 6, 'JENKINS', 2, 315, 'develop', NULL, NULL, NULL, 1, 'pro-scp-font-pro', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (58, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 3, 5, 6, 'JENKINS', 2, 315, 'develop', NULL, NULL, NULL, 1, 'pro-scp-font-pro', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (59, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 3, 6, 6, 'JENKINS', 2, 300, 'develop', NULL, NULL, NULL, 1, 'pro-scp-ws', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (59, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 3, 6, 6, 'JENKINS', 2, 300, 'develop', NULL, NULL, NULL, 1, 'pro-scp-ws', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (60, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 3, 7, 6, 'JENKINS', 2, 304, 'develop', NULL, NULL, NULL, 1, 'pro-scp-data-center', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (60, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 3, 7, 6, 'JENKINS', 2, 304, 'develop', NULL, NULL, NULL, 1, 'pro-scp-data-center', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (61, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 3, 8, 6, 'JENKINS', 2, 345, 'develop', NULL, NULL, NULL, 1, 'pro-scp-dsl', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (61, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 3, 8, 6, 'JENKINS', 2, 345, 'develop', NULL, NULL, NULL, 1, 'pro-scp-dsl', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (62, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 3, 9, 6, 'JENKINS', 2, 336, 'develop', NULL, NULL, NULL, 1, 'pro-scp-idaas-bsm', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (62, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 3, 9, 6, 'JENKINS', 2, 336, 'develop', NULL, NULL, NULL, 1, 'pro-scp-idaas-bsm', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (63, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 3, 10, 6, 'JENKINS', 2, 337, 'develop', NULL, NULL, NULL, 1, 'pro-scp-gateway', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (63, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 3, 10, 6, 'JENKINS', 2, 337, 'develop', NULL, NULL, NULL, 1, 'pro-scp-gateway', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (64, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 3, 11, 6, 'JENKINS', 2, 557, 'develop', NULL, NULL, NULL, 1, 'pro-scp-performance-batch', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (64, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 3, 11, 6, 'JENKINS', 2, 557, 'develop', NULL, NULL, NULL, 1, 'pro-scp-performance-batch', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (65, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 3, 12, 6, 'JENKINS', 2, 344, 'develop', NULL, NULL, NULL, 1, 'pro-scp-process', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (65, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 3, 12, 6, 'JENKINS', 2, 344, 'develop', NULL, NULL, NULL, 1, 'pro-scp-process', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (66, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 3, 13, 6, 'JENKINS', 2, 305, 'develop', NULL, NULL, NULL, 1, 'pro-scp-service-manager', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (66, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 3, 13, 6, 'JENKINS', 2, 305, 'develop', NULL, NULL, NULL, 1, 'pro-scp-service-manager', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (67, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 3, 17, 6, 'JENKINS', 2, 636, 'develop', NULL, NULL, NULL, 1, 'pro-scp-xxl-job', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (67, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 3, 17, 6, 'JENKINS', 2, 636, 'develop', NULL, NULL, NULL, 1, 'pro-scp-xxl-job', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (68, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 3, 18, 6, 'JENKINS', 2, 276, 'develop', NULL, NULL, NULL, 1, 'pro-stone-message-center', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (68, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 3, 18, 6, 'JENKINS', 2, 276, 'develop', NULL, NULL, NULL, 1, 'pro-stone-message-center', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (69, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 3, 19, 6, 'JENKINS', 2, 723, 'develop', NULL, NULL, NULL, 1, 'pro-scp-order', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (69, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 3, 19, 6, 'JENKINS', 2, 723, 'develop', NULL, NULL, NULL, 1, 'pro-scp-order', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (70, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 3, 20, 6, 'JENKINS', 2, 274, 'develop', NULL, NULL, NULL, 1, 'pro-datax-admin', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (70, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 3, 20, 6, 'JENKINS', 2, 274, 'develop', NULL, NULL, NULL, 1, 'pro-datax-admin', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (71, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 3, 21, 6, 'JENKINS', 2, 306, 'develop', NULL, NULL, NULL, 1, 'pro-scp-algorithm', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (71, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 3, 21, 6, 'JENKINS', 2, 306, 'develop', NULL, NULL, NULL, 1, 'pro-scp-algorithm', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (72, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 3, 22, 6, 'JENKINS', 2, 634, 'develop', NULL, NULL, NULL, 1, 'pro-scp-forecast-model', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (72, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 3, 22, 6, 'JENKINS', 2, 634, 'develop', NULL, NULL, NULL, 1, 'pro-scp-forecast-model', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (73, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 3, 5, 7, 'JENKINS', 2, 315, 'develop_merge', NULL, NULL, NULL, 1, 'lixiang-scp-font-pro-ronghe', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (73, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 3, 5, 7, 'JENKINS', 2, 315, 'develop_merge', NULL, NULL, NULL, 1, 'lixiang-scp-font-pro-ronghe', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (74, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 3, 22, 7, 'JENKINS', 2, 634, 'develop', NULL, NULL, NULL, 1, 'lixiang-scp-forecast-model', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (74, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 3, 22, 7, 'JENKINS', 2, 634, 'develop', NULL, NULL, NULL, 1, 'lixiang-scp-forecast-model', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (75, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 3, 10, 7, 'JENKINS', 2, 337, 'feature/upgrade', NULL, NULL, NULL, 1, 'lixiang-scp-gateway', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (75, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 3, 10, 7, 'JENKINS', 2, 337, 'feature/upgrade', NULL, NULL, NULL, 1, 'lixiang-scp-gateway', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (76, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 3, 9, 7, 'JENKINS', 2, 336, 'feature/upgrade', NULL, NULL, NULL, 1, 'lixiang-scp-idaas-bsm', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (76, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 3, 9, 7, 'JENKINS', 2, 336, 'feature/upgrade', NULL, NULL, NULL, 1, 'lixiang-scp-idaas-bsm', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (77, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 3, 1, 7, 'JENKINS', 2, 288, 'feature/upgrade', NULL, NULL, NULL, 1, 'lixiang-scp-meta', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (77, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 3, 1, 7, 'JENKINS', 2, 288, 'feature/upgrade', NULL, NULL, NULL, 1, 'lixiang-scp-meta', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (78, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 3, 19, 7, 'JENKINS', 2, 723, 'feature/upgrade', NULL, NULL, NULL, 1, 'lixiang-scp-order', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (78, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 3, 19, 7, 'JENKINS', 2, 723, 'feature/upgrade', NULL, NULL, NULL, 1, 'lixiang-scp-order', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (79, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 3, 11, 7, 'JENKINS', 2, 557, 'feature/upgrade', NULL, NULL, NULL, 1, 'lixiang-scp-performance-batch', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (79, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 3, 11, 7, 'JENKINS', 2, 557, 'feature/upgrade', NULL, NULL, NULL, 1, 'lixiang-scp-performance-batch', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (80, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 3, 18, 7, 'JENKINS', 2, 276, 'develop', NULL, NULL, NULL, 1, 'lixiang-scp-stone-message-center', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (80, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 3, 18, 7, 'JENKINS', 2, 276, 'develop', NULL, NULL, NULL, 1, 'lixiang-scp-stone-message-center', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (81, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 3, 6, 7, 'JENKINS', 2, 300, 'feature/upgrade', NULL, NULL, NULL, 1, 'lixiang-scp-ws', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (81, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 3, 6, 7, 'JENKINS', 2, 300, 'feature/upgrade', NULL, NULL, NULL, 1, 'lixiang-scp-ws', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (82, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 3, 17, 7, 'JENKINS', 2, 636, 'develop', NULL, NULL, NULL, 1, 'pro-scp-xxl-job', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (82, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 3, 17, 7, 'JENKINS', 2, 636, 'develop', NULL, NULL, NULL, 1, 'pro-scp-xxl-job', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (83, 'admin', NOW(), 'yangfan', NOW(), 2, b'0', 5, 23, 5, 'NATIVE', 6, 7, 'release/1.0-localization', NULL, NULL, NULL, NULL, '', 2, 'SERVER', NULL, NULL, NULL, NULL, NULL, 3, ' tail -f /data/app/etl-ignite-server/logs/stdout.log'); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (83, 'admin', NOW(), 'yangfan', NOW(), 2, b'0', 5, 23, 5, 'NATIVE', 6, 7, 'release/1.0-localization', NULL, NULL, NULL, NULL, '', 2, 'SERVER', NULL, NULL, NULL, NULL, NULL, 3, ' tail -f /data/app/etl-ignite-server/logs/stdout.log');
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (84, 'admin', NOW(), 'yangfan', NOW(), 4, b'0', 5, 26, 5, 'NATIVE', 6, 7, 'release/1.0-localization', NULL, NULL, NULL, NULL, '', 2, 'SERVER', NULL, NULL, NULL, NULL, NULL, 3, 'tail -f /data/app/etl-scheduler/logs/stdout.log'); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (84, 'admin', NOW(), 'yangfan', NOW(), 4, b'0', 5, 26, 5, 'NATIVE', 6, 7, 'release/1.0-localization', NULL, NULL, NULL, NULL, '', 2, 'SERVER', NULL, NULL, NULL, NULL, NULL, 3, 'tail -f /data/app/etl-scheduler/logs/stdout.log');
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (85, 'admin', NOW(), 'yangfan', NOW(), 2, b'0', 5, 25, 5, 'NATIVE', 6, 7, 'release/1.0-localization', NULL, NULL, NULL, NULL, '', 2, 'SERVER', NULL, NULL, NULL, NULL, NULL, 2, 'tail -f /data/app/etl-executor/logs/stdout.log'); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (85, 'admin', NOW(), 'yangfan', NOW(), 2, b'0', 5, 25, 5, 'NATIVE', 6, 7, 'release/1.0-localization', NULL, NULL, NULL, NULL, '', 2, 'SERVER', NULL, NULL, NULL, NULL, NULL, 2, 'tail -f /data/app/etl-executor/logs/stdout.log');
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (86, 'admin', NOW(), 'yangfan', NOW(), 2, b'0', 5, 24, 5, 'NATIVE', 6, 7, 'release/1.0-localization', NULL, NULL, NULL, NULL, '', 2, 'SERVER', NULL, NULL, NULL, NULL, NULL, 3, 'tail -f /data/app/etl-integration-ui-server/logs/stdout.log'); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (86, 'admin', NOW(), 'yangfan', NOW(), 2, b'0', 5, 24, 5, 'NATIVE', 6, 7, 'release/1.0-localization', NULL, NULL, NULL, NULL, '', 2, 'SERVER', NULL, NULL, NULL, NULL, NULL, 3, 'tail -f /data/app/etl-integration-ui-server/logs/stdout.log');
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (87, 'admin', NOW(), 'yangfan', NOW(), 2, b'0', 5, 27, 5, 'NATIVE', 6, 37, 'release/1.0-localization', NULL, NULL, NULL, NULL, '', 2, 'SERVER', NULL, NULL, NULL, NULL, NULL, 2, 'tail -f /data/app/themetis-control-panel-server/logs/stdout.log'); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (87, 'admin', NOW(), 'yangfan', NOW(), 2, b'0', 5, 27, 5, 'NATIVE', 6, 37, 'release/1.0-localization', NULL, NULL, NULL, NULL, '', 2, 'SERVER', NULL, NULL, NULL, NULL, NULL, 2, 'tail -f /data/app/themetis-control-panel-server/logs/stdout.log');
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (88, 'admin', NOW(), 'yangfan', NOW(), 2, b'0', 5, 28, 5, 'NATIVE', 6, 41, 'release/1.0-localization', NULL, NULL, NULL, NULL, '', 2, 'SERVER', NULL, NULL, NULL, NULL, NULL, 3, 'tail -f /data/app/themetis-permission-server/logs/stdout.log'); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (88, 'admin', NOW(), 'yangfan', NOW(), 2, b'0', 5, 28, 5, 'NATIVE', 6, 41, 'release/1.0-localization', NULL, NULL, NULL, NULL, '', 2, 'SERVER', NULL, NULL, NULL, NULL, NULL, 3, 'tail -f /data/app/themetis-permission-server/logs/stdout.log');
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (89, 'admin', NOW(), 'yangfan', NOW(), 3, b'0', 5, 29, 5, 'NATIVE', 6, 43, 'release/1.0-localization', NULL, NULL, NULL, NULL, '', 2, 'SERVER', NULL, NULL, NULL, NULL, NULL, 3, 'tail -f /data/app/themetis-gateway/logs/stdout.log'); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (89, 'admin', NOW(), 'yangfan', NOW(), 3, b'0', 5, 29, 5, 'NATIVE', 6, 43, 'release/1.0-localization', NULL, NULL, NULL, NULL, '', 2, 'SERVER', NULL, NULL, NULL, NULL, NULL, 3, 'tail -f /data/app/themetis-gateway/logs/stdout.log');
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (90, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 7, 34, 8, 'JENKINS', 2, 694, 'main', NULL, NULL, NULL, 1, 'test-lianyu-oms-web', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (90, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 7, 34, 8, 'JENKINS', 2, 694, 'main', NULL, NULL, NULL, 1, 'test-lianyu-oms-web', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (91, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 7, 33, 8, 'JENKINS', 2, 688, 'main', NULL, NULL, NULL, 1, 'test-lianyu-oms-main', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (91, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 7, 33, 8, 'JENKINS', 2, 688, 'main', NULL, NULL, NULL, 1, 'test-lianyu-oms-main', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (92, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 7, 32, 8, 'JENKINS', 2, 703, 'main', NULL, NULL, NULL, 1, 'test-lianyu-oms-job', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (92, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 7, 32, 8, 'JENKINS', 2, 703, 'main', NULL, NULL, NULL, 1, 'test-lianyu-oms-job', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (93, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 7, 31, 8, 'JENKINS', 2, 691, 'main', NULL, NULL, NULL, 1, 'test-lianyu-oms-gateway', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (93, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 7, 31, 8, 'JENKINS', 2, 691, 'main', NULL, NULL, NULL, 1, 'test-lianyu-oms-gateway', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (94, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 7, 30, 8, 'JENKINS', 2, 704, 'main', NULL, NULL, NULL, 1, 'test-lianyu-oms-admin', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (94, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 7, 30, 8, 'JENKINS', 2, 704, 'main', NULL, NULL, NULL, 1, 'test-lianyu-oms-admin', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (95, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 7, 34, 9, 'JENKINS', 2, 694, 'prod', NULL, NULL, NULL, 1, 'prod-lianyu-oms-web', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (95, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 7, 34, 9, 'JENKINS', 2, 694, 'prod', NULL, NULL, NULL, 1, 'prod-lianyu-oms-web', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (96, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 7, 33, 9, 'JENKINS', 2, 688, 'prod', NULL, NULL, NULL, 1, 'prod-lianyu-oms-main', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (96, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 7, 33, 9, 'JENKINS', 2, 688, 'prod', NULL, NULL, NULL, 1, 'prod-lianyu-oms-main', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (97, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 7, 32, 9, 'JENKINS', 2, 703, 'prod', NULL, NULL, NULL, 1, 'prod-lianyu-oms-job', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (97, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 7, 32, 9, 'JENKINS', 2, 703, 'prod', NULL, NULL, NULL, 1, 'prod-lianyu-oms-job', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (98, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 7, 31, 9, 'JENKINS', 2, 691, 'prod', NULL, NULL, NULL, 1, 'prod-lianyu-oms-gateway', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (98, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 7, 31, 9, 'JENKINS', 2, 691, 'prod', NULL, NULL, NULL, 1, 'prod-lianyu-oms-gateway', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_id`, `k8s_deployment_id`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (99, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 7, 30, 9, 'JENKINS', 2, 704, 'prod', NULL, NULL, NULL, 1, 'prod-lianyu-oms-admin', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO `deploy-ease-platform`.`deploy_team_application` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `application_id`, `environment_id`, `build_type`, `source_git_system_id`, `source_git_project_id`, `source_branch`, `target_git_system_id`, `target_git_project_id`, `target_branch`, `deploy_system_id`, `deploy_job`, `workflow_definition_id`, `runtime_type`, `k8s_system_id`, `k8s_namespace_name`, `k8s_deployment_name`, `docker_server_id`, `docker_container_name`, `server_id`, `log_query_command`) VALUES (99, 'songwei', NOW(), 'songwei', NOW(), 1, b'0', 7, 30, 9, 'JENKINS', 2, 704, 'prod', NULL, NULL, NULL, 1, 'prod-lianyu-oms-admin', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `deploy-ease-platform`.`deploy_team_environment_config` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `environment_id`, `approval_required`, `approver_user_ids`, `require_code_review`, `remark`) VALUES (8, 'admin', NOW(), 'admin', NOW(), 1, b'0', 5, 5, b'0', NULL, b'0', ''); INSERT INTO `deploy-ease-platform`.`deploy_team_environment_config` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `version`, `deleted`, `team_id`, `environment_id`, `approval_required`, `approver_user_ids`, `require_code_review`, `remark`) VALUES (8, 'admin', NOW(), 'admin', NOW(), 1, b'0', 5, 5, b'0', NULL, b'0', '');

View File

@ -831,8 +831,8 @@ CREATE TABLE deploy_team_application
-- K8s运行时配置 -- K8s运行时配置
k8s_system_id BIGINT NULL COMMENT 'K8s系统ID关联sys_external_systemtype=K8S仅当runtime_type=K8S时使用', k8s_system_id BIGINT NULL COMMENT 'K8s系统ID关联sys_external_systemtype=K8S仅当runtime_type=K8S时使用',
k8s_namespace_id BIGINT NULL COMMENT 'K8s命名空间ID关联deploy_k8s_namespace仅当runtime_type=K8S时使用', k8s_namespace_name VARCHAR(255) NULL COMMENT 'K8s命名空间名称仅当runtime_type=K8S时使用',
k8s_deployment_id BIGINT NULL COMMENT 'K8s Deployment ID关联deploy_k8s_deployment仅当runtime_type=K8S时使用', k8s_deployment_name VARCHAR(255) NULL COMMENT 'K8s Deployment名称仅当runtime_type=K8S时使用',
-- Docker运行时配置 -- Docker运行时配置
docker_server_id BIGINT NULL COMMENT 'Docker服务器ID关联sys_server仅当runtime_type=DOCKER时使用', docker_server_id BIGINT NULL COMMENT 'Docker服务器ID关联sys_server仅当runtime_type=DOCKER时使用',
@ -854,7 +854,8 @@ CREATE TABLE deploy_team_application
INDEX idx_target_git_system (target_git_system_id), INDEX idx_target_git_system (target_git_system_id),
INDEX idx_runtime_type (runtime_type), INDEX idx_runtime_type (runtime_type),
INDEX idx_k8s_system (k8s_system_id), INDEX idx_k8s_system (k8s_system_id),
INDEX idx_k8s_namespace (k8s_namespace_id), INDEX idx_k8s_namespace_name (k8s_namespace_name),
INDEX idx_k8s_deployment_name (k8s_deployment_name),
INDEX idx_docker_server (docker_server_id), INDEX idx_docker_server (docker_server_id),
INDEX idx_server (server_id), INDEX idx_server (server_id),
CONSTRAINT fk_team_app_team FOREIGN KEY (team_id) REFERENCES deploy_team (id), CONSTRAINT fk_team_app_team FOREIGN KEY (team_id) REFERENCES deploy_team (id),

View File

@ -12,27 +12,24 @@ INSERT INTO system_release (
) )
VALUES ( VALUES (
'system', NOW(), 'system', NOW(), 1, 0, 'system', NOW(), 'system', NOW(), 1, 0,
1.40, 'ALL', NOW(), 1.41, 'ALL', NOW(),
'【后端】 '【后端】
- K8SDockerServer三种运行时环境的统一日志查询接口// - ServerLogStreamStrategy: tail -f命令重复问题logQueryCommand已包含完整命令-n
- SSH连接配额管理功能5SSH连接支持按用户和目标类型TERMINAL/LOG_STREAM - K8sLogStreamStrategy: sessionId命名规范
- WebSocket日志流生命周期问题SSH WebSocket模式EOFException异常处理避免日志流结束时的错误日志SSH连接和会话正确释放 - DockerLogStreamStrategy: sessionId命名规范
- - AbstractLogStreamWebSocketHandler: sendLogLine(), sendStatus(), sendError()synchronized(session)
- - synchronized(session)session对象session互不影响
- Strategy实现中统一使用logStreamSessionId参数名
- webSocketIdIDlogStreamSessionIdID
- K8S集群接入与切换 - Monaco Editor替换XTerm.js
- Namespace列表查询与切换 - - LogViewerWindow中间层
- Deployment列表查询Namespace - LogViewerWindow违反单一职责原则
- Pod列表查询与状态监控 - LOG/STATUS/ERROR消息类型
- Deployment健康状态监控Healthy/Warning/Critical - K8S应用重复连接
- Pod状态统计9/// -
- ready/total -
-
- WebSocket实时日志流
-
- Pod选择与切换
- ///
', ',
0, NULL, NULL, 0 0, NULL, NULL, 0
); );