microscopic-river-74022
11/09/2023, 6:22 PMmicroscopic-river-74022
11/09/2023, 6:22 PMkubernetes-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:
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:
----------------------