Replies: 1 comment
-
resolved |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
We are running Taurus Docker image on Kubernetes . All configuration file and resources are mount from host /tmp directory to pod /bzt-configs but Taurus still not finding it
Pod/container started but still gives an error
NFO: Using Cgroups1LocalMonitor for engine health monitoring
ERROR: Config Error: No 'execution' is configured. Did you forget to pass config files
config file to build -------
apiVersion: v1
kind: Pod
metadata:
name: perf-taurus-docker-pod
namespace: ags-qa
spec:
containers:
- name: perf-taurus-docker-container
image: blazemeter/taurus:1.16.32
resources:
limits:
cpu: "1"
memory: "1Gi"
requests:
cpu: "100m"
memory: "256Mi"
volumeMounts:
- mountPath: /bzt-configs
name: perf-config
- mountPath: /var/run/secrets/kubernetes.io/serviceaccount
name: kube-api-access-4x7vn
volumes:
- name: perf-config
hostPath:
path: /tmp
type: Directory
- name: kube-api-access-4x7vn
projected:
defaultMode: 420
sources:
- serviceAccountToken:
expirationSeconds: 3607
path: token
- configMap:
items:
- key: ca.crt
path: ca.crt
name: kube-root-ca.crt
- downwardAPI:
items:
- fieldRef:
apiVersion: v1
fieldPath: metadata.namespace
path: namespace
Beta Was this translation helpful? Give feedback.
All reactions