How do I run a kubernetes-pod test with multiple c...
# 🤖|ask-kapa
m
Please stand by @clever-policeman-58407 as I search the knowledge base. I normally take about 20 seconds or so. :wave:
---------------------- Hmm, I don't know enough to give you a confident answer yet. The extracts provided do not contain specific information on how to run a
kubernetes-pod
test with multiple containers. However, they do provide some information on how to run a
kubernetes-pod
test in general. Here is an example:
Copy code
yaml
kind: Test
name: vote-integ-pod
type: kubernetes-pod
dependencies:
- deploy.api
variables:
  hostname: vote.${var.baseHostname}
  timeout: 60
spec:
  resource:
    kind: Deployment
    name: vote-integ-pod
    command: [/bin/sh, -c, "npm run test:integ"]
values:
  ...
In this example, a
kubernetes-pod
test named
vote-integ-pod
is defined. It depends on
deploy.api
and runs the command
npm run test:integ
in a Kubernetes Deployment named
vote-integ-pod
. For more detailed information on how to configure a
kubernetes-pod
test with multiple containers, I recommend checking the Garden documentation (). ---------------------- Note: you can ask me a follow up question by @ mentioning me again :speech_balloon: ----------------------
2 Views