@zombienet/orchestrator
Version:
ZombieNet aim to be a testing framework for substrate based blockchains, providing a simple cli tool that allow users to spawn and test ephemeral Substrate based networks
37 lines • 937 B
YAML
{
"apiVersion": "v1",
"kind": "Pod",
"metadata": {
"name": "fileserver",
"labels": {
"app": "fileserver",
"x-infra-instance": "{{xinfra}}"
}
},
"spec": {
"hostname": "fileserver",
"containers": [
{
"image": "nginx:latest",
"name": "fileserver",
"imagePullPolicy": "Always",
"ports": [
{
"containerPort": 80
}
],
"startupProbe": {
"httpGet": {
"path": "/",
"port": 80
},
"initialDelaySeconds": 5,
"periodSeconds": 3,
"failureThreshold": 15
}
}
],
"restartPolicy": "OnFailure",
"volumes": []
}
}