github.com/in4it/ecs-deploy@v0.0.42-0.20240508120354-ed77ff16df25/cmd/ecs-client/testdata/multiple-services.yaml (about)

     1  ---
     2  services:
     3  - cluster: mycluster
     4    serviceName: nginx
     5    servicePort: 80
     6    serviceProtocol: HTTP
     7    desiredCount: 1
     8    containers:
     9    - containerName: nginx
    10      containerImage: nginx
    11      containerURI: index.docker.io/nginx:alpine
    12      containerPort: 80
    13      memoryReservation: 128
    14      essential: true
    15    healthCheck:
    16      healthyThreshold: 3
    17      unhealthyThreshold: 3
    18      path: "/"
    19      interval: 60
    20      matcher: "200,301"
    21  - cluster: mycluster
    22    serviceName: echoserver
    23    servicePort: 8080
    24    serviceProtocol: HTTP
    25    desiredCount: 1
    26    containers:
    27    - containerName: echoserver
    28      containerImage: echoserver
    29      containerURI: gcr.io/google_containers/echoserver:1.4
    30      containerPort: 8080
    31      memoryReservation: 64
    32      essential: true
    33    healthCheck:
    34      healthyThreshold: 3
    35      unhealthyThreshold: 3
    36      path: "/"
    37      interval: 60
    38      matcher: "200,301"