fix e2e logs archive (#26537)

Signed-off-by: Bennu-Li <yunmei.li@zilliz.com>
pull/26625/head
Bennu 2023-08-28 10:22:25 +08:00 committed by GitHub
parent 1dbe1e63a4
commit e11f84ff45
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 56 additions and 1 deletions

View File

@ -219,6 +219,7 @@ pipeline {
}
}
}
}
}
}
@ -240,6 +241,7 @@ pipeline {
}
}
}
}
}

View File

@ -20,7 +20,60 @@ spec:
volumeMounts:
- mountPath: /ci-logs
name: ci-logs
- name: main
image: milvusdb/krte:20211213-dcc15e9
env:
- name: DOCKER_IN_DOCKER_ENABLED
value: "true"
- name: DOCKER_VOLUME_DIRECTORY
value: "/mnt/disk/.docker"
- name: DOCKER_CLIENT_TIMEOUT
value: 240
- name: COMPOSE_HTTP_TIMEOUT
value: 240
tty: true
securityContext:
privileged: true
args: ["cat"]
resources:
limits:
cpu: "6"
memory: 12Gi
requests:
cpu: "0.5"
memory: 2Gi
volumeMounts:
- mountPath: /docker-graph
name: docker-graph
- mountPath: /var/lib/docker
name: docker-root
- mountPath: /lib/modules
name: modules
readOnly: true
- mountPath: /sys/fs/cgroup
name: cgroup
- mountPath: /mnt/disk/.docker
name: build-cache
subPath: docker-volume
- mountPath: /ci-logs
name: ci-logs
volumes:
- emptyDir: {}
name: docker-graph
- emptyDir: {}
name: docker-root
- hostPath:
path: /tmp/krte/cache
type: DirectoryOrCreate
name: build-cache
- hostPath:
path: /lib/modules
type: Directory
name: modules
- hostPath:
path: /sys/fs/cgroup
type: Directory
name: cgroup
- name: ci-logs
nfs:
path: /volume1/ci-logs

View File

@ -94,7 +94,7 @@ else
for log_file in ${log_files}
do
file_name=$(basename ${log_file})
mv ${log_file} ${RELEASE_LOG_DIR}/`echo ${file_name} | sed 's/jenkins.var.log.containers.//g' `
mv ${log_file} ${RELEASE_LOG_DIR}/`echo ${file_name} | sed 's/ci.var.log.containers.//g' `
done
tar -zcvf ${ARTIFACTS_NAME:-artifacts}.tar.gz ${RELEASE_LOG_DIR}/*