Sha256: 02cf23a70f4603eefe6067653c230ac4aa4107d5a83988bd7a6fa63df647caff

Contents?: true

Size: 1 KB

Versions: 23

Compression:

Stored size: 1 KB

Contents

{
  scheduler: {
    type: 'ecs',
    region: 'ap-northeast-1',
    cluster: 'eagletmt',
    desired_count: 2,
    role: 'ecsServiceRole',
    // health_check_grace_period_seconds: 0,
    elb_v2: {
      // NLB can not have
      // * health check path
      // * securit group
      scheme: 'internal',
      type: 'network',
      // VPC id where the target group is located
      vpc_id: 'vpc-WWWWWWWW',
      listeners: [
        {
          port: 80,
          protocol: 'TCP',
        },
      ],
      subnets: [
        'subnet-XXXXXXXX',
        'subnet-YYYYYYYY',
      ],
      container_name: 'app',
      container_port: 80,
      // If you want enalbed cross zone load balancing, then specify attribute.
      // load_balancer_attributes: {
      //     'load_balancing.cross_zone.enabled': 'true',
      // },
    },
  },
  app: {
    image: 'nginx',
    memory: 128,
    cpu: 256,
    port_mappings: [
      {
        container_port: 80,
        host_port: 0,
        protocol: 'TCP',
      },
    ],
  },
}

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
hako-2.17.0 examples/hello-internal-nlb.jsonnet
hako-2.16.0 examples/hello-internal-nlb.jsonnet
hako-2.15.1 examples/hello-internal-nlb.jsonnet
hako-2.15.0 examples/hello-internal-nlb.jsonnet
hako-2.14.0 examples/hello-internal-nlb.jsonnet
hako-2.13.0 examples/hello-internal-nlb.jsonnet
hako-2.12.0 examples/hello-internal-nlb.jsonnet
hako-2.11.1 examples/hello-internal-nlb.jsonnet
hako-2.11.0 examples/hello-internal-nlb.jsonnet
hako-2.10.0 examples/hello-internal-nlb.jsonnet
hako-2.9.2 examples/hello-internal-nlb.jsonnet
hako-2.9.1 examples/hello-internal-nlb.jsonnet
hako-2.9.0 examples/hello-internal-nlb.jsonnet
hako-2.8.0 examples/hello-internal-nlb.jsonnet
hako-2.7.0 examples/hello-internal-nlb.jsonnet
hako-2.6.2 examples/hello-internal-nlb.jsonnet
hako-2.6.1 examples/hello-internal-nlb.jsonnet
hako-2.6.0 examples/hello-internal-nlb.jsonnet
hako-2.5.1 examples/hello-internal-nlb.jsonnet
hako-2.5.0 examples/hello-internal-nlb.jsonnet