mirror of https://github.com/milvus-io/milvus.git
Increase ephemeral storage size for jenkins slave (#5235)
Signed-off-by: jeffoverflow zhifeng.zhang@zilliz.compull/5237/head
parent
a124568664
commit
b37861ad5f
|
@ -35,7 +35,7 @@ pipeline {
|
|||
}
|
||||
}
|
||||
environment {
|
||||
IMAGE_REPO = "registry.zilliz.com/milvus"
|
||||
IMAGE_REPO = "dockerhub-mirror-sh.zilliz.cc/milvusdb"
|
||||
DOCKER_BUILDKIT = 1
|
||||
DOCKER_VOLUME_DIRECTORY = "/mnt/disk/.docker"
|
||||
ARTIFACTS = "${env.WORKSPACE}/artifacts"
|
||||
|
|
|
@ -17,11 +17,11 @@ spec:
|
|||
resources:
|
||||
limits:
|
||||
memory: 14Gi
|
||||
ephemeral-storage: "20Gi"
|
||||
ephemeral-storage: "30Gi"
|
||||
requests:
|
||||
cpu: "4"
|
||||
memory: 12Gi
|
||||
ephemeral-storage: "20Gi"
|
||||
ephemeral-storage: "30Gi"
|
||||
volumeMounts:
|
||||
- mountPath: /docker-graph
|
||||
name: docker-graph
|
||||
|
|
|
@ -45,9 +45,9 @@ kubeadmConfigPatches:
|
|||
apiServer:
|
||||
extraArgs:
|
||||
"v": "4"
|
||||
"service-account-issuer": "kubernetes.default.svc"
|
||||
"service-account-signing-key-file": "/etc/kubernetes/pki/sa.key"
|
||||
containerdConfigPatches:
|
||||
- |-
|
||||
[plugins."io.containerd.grpc.v1.cri".registry.mirrors."localhost:5000"]
|
||||
endpoint = ["http://kind-registry:5000"]
|
||||
[plugins."io.containerd.grpc.v1.cri".registry.mirrors."docker.io"]
|
||||
endpoint = ["dockerhub-mirror-sh.zilliz.cc", "https://registry-1.docker.io"]
|
||||
|
|
|
@ -48,7 +48,7 @@ while (( "$#" )); do
|
|||
NODE_IMAGE=$2
|
||||
shift 2
|
||||
;;
|
||||
# Config for enabling different Kubernetes features in KinD (see prow/config{endpointslice.yaml,trustworthy-jwt.yaml}).
|
||||
# Config for enabling different Kubernetes features in KinD (see build/config/topology/trustworthy-jwt.yaml).
|
||||
--kind-config)
|
||||
KIND_CONFIG=$2
|
||||
shift 2
|
||||
|
|
Loading…
Reference in New Issue