container_private

Description

Creates a NGINX "hello world" container with a private address.

Concepts

The following concepts are present in this example:

  • Containers

  • Linux

  • Nginx

Venues

This example is regularly tested against:

azure

Release Notes

1.0

  • Initial release.

Blueprint

---
location:
  region:
    my-region:
      country: USA
      area: northwest

  folder:
    tuono-container-private:
      region: my-region

networking:
  network:
    containers:
      range: 10.0.0.0/16
      scope: private-with-internet

  subnet:
    backend:
      range: 10.0.100.0/24
      network: containers
      scope: isolated

  protocol:
    http:
      ports:
        - port: 80
          proto: tcp

compute:
  container:
    helloworld-private:
      cores: 0.25
      environment:
        wicked: cool
      image:
        path: nginxdemos/hello
        os: linux
      memory: 0.5 gb
      provides: http
      scope: private
      subnets:
        - backend

Last updated

Was this helpful?