{
    "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": []
    }
}