github.com/GoogleContainerTools/skaffold/v2@v2.13.2/integration/testdata/debug/netcore/k8s/pod.yaml (about)

     1  apiVersion: v1
     2  kind: Pod
     3  metadata:
     4    name: netcore
     5  spec:
     6    containers:
     7    - name: dotnet-web
     8      image: skaffold-debug-netcore
     9      ports:
    10        - name: http
    11          containerPort: 80
    12          protocol: TCP
    13      livenessProbe:
    14        httpGet:
    15          path: /
    16          port: http
    17        initialDelaySeconds: 5
    18        failureThreshold: 4
    19        timeoutSeconds: 5
    20      readinessProbe:
    21        httpGet:
    22          path: /
    23          port: http
    24        initialDelaySeconds: 5
    25        failureThreshold: 30
    26        timeoutSeconds: 5