Sha256: 8c1186c27321784d9adc5962d044aa23dc53678447297a8625a0faac367919d5

Contents?: true

Size: 916 Bytes

Versions: 21

Compression:

Stored size: 916 Bytes

Contents

{
  scheduler: {
    type: 'ecs',
    region: 'us-east-1',
    cluster: 'eagletmt',
    // Fargate
    execution_role_arn: 'arn:aws:iam::012345678901:role/ecsTaskExecutionRole',
    cpu: '1024',
    memory: '2048',
    requires_compatibilities: ['FARGATE'],
    network_mode: 'awsvpc',
    launch_type: 'FARGATE',
    network_configuration: {
      awsvpc_configuration: {
        subnets: ['subnet-XXXXXXXX'],
        security_groups: [],
        assign_public_ip: 'DISABLED',
      },
    },
  },
  app: {
    image: 'ryotarai/hello-sinatra',
    cpu: 1024,
    memory: 256,
    memory_reservation: 128,
    log_configuration: {
      log_driver: 'awslogs',
      options: {
        'awslogs-group': '/ecs/hello-fargate-batch',
        'awslogs-region': 'us-east-1',
        'awslogs-stream-prefix': 'ecs',
      },
    },
  },
  scripts: [
    (import './create_aws_cloud_watch_logs_log_group.libsonnet'),
  ],
}

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
hako-2.15.1 examples/hello-fargate-batch.jsonnet
hako-2.15.0 examples/hello-fargate-batch.jsonnet
hako-2.14.0 examples/hello-fargate-batch.jsonnet
hako-2.13.0 examples/hello-fargate-batch.jsonnet
hako-2.12.0 examples/hello-fargate-batch.jsonnet
hako-2.11.1 examples/hello-fargate-batch.jsonnet
hako-2.11.0 examples/hello-fargate-batch.jsonnet
hako-2.10.0 examples/hello-fargate-batch.jsonnet
hako-2.9.2 examples/hello-fargate-batch.jsonnet
hako-2.9.1 examples/hello-fargate-batch.jsonnet
hako-2.9.0 examples/hello-fargate-batch.jsonnet
hako-2.8.0 examples/hello-fargate-batch.jsonnet
hako-2.7.0 examples/hello-fargate-batch.jsonnet
hako-2.6.2 examples/hello-fargate-batch.jsonnet
hako-2.6.1 examples/hello-fargate-batch.jsonnet
hako-2.6.0 examples/hello-fargate-batch.jsonnet
hako-2.5.1 examples/hello-fargate-batch.jsonnet
hako-2.5.0 examples/hello-fargate-batch.jsonnet
hako-2.4.0 examples/hello-fargate-batch.jsonnet
hako-2.3.1 examples/hello-fargate-batch.jsonnet