milvus/build/ci/jenkins/pod/test-env.yaml
quicksilver d561379485 Remove go mod cache in Jenkins CI
Signed-off-by: quicksilver <zhifeng.zhang@zilliz.com>
2021-03-22 18:27:55 +08:00

39 lines
704 B
YAML

apiVersion: v1
kind: Pod
metadata:
labels:
app: milvus
componet: test-env
spec:
containers:
- name: test-env
image: milvusdb/pytest:20210322-201a528
command:
- cat
tty: true
resources:
limits:
memory: "8Gi"
cpu: "4.0"
requests:
memory: "4Gi"
cpu: "2.0"
- name: deploy-env
image: registry.zilliz.com/library/helm3:v0.1
command:
- cat
tty: true
volumeMounts:
- name: kubeconf
mountPath: /root/.kube/
readOnly: true
volumes:
- name: kubeconf
secret:
secretName: test-cluster-config
tolerations:
- key: dedicated
operator: Equal
value: milvus
effect: NoSchedule