heat/releasenotes/notes/add-tty-property-to-container-1b8bf92f0f47deca.yaml
Hongbin Lu 74567b3f08 zun: add 'tty' property to container
This property allows users to open the TTY of the container.
It basically allows users to use horizon's console to access
the container interactively. For example:

  resources:
    test:
      type: OS::Zun::Container
      properties:
        image: "cirros"
        interactive: true
        tty: true
        command: "/bin/sh"

Change-Id: I70f64d43ed6d2bcb5bab3e5c8f986ca827df8c6f
Closes-Bug: #1856233
2019-12-19 02:38:40 +00:00

6 lines
137 B
YAML

---
features:
- |
Add ``tty`` property to ``OS::Zun::Container``.
This property allows users to open the TTY of the container.