Files
zun/zun/api/controllers/v1/views/containers_view.py
Kevin Zhao 005a03d010 Add stdin_open tty flags to container
Change-Id: I6a679cc02a407bb866f2d740d127f22de60b6ae1
Partially-Implements: BP support-interactive-mode
2017-01-24 10:17:42 +08:00

61 lines
1.6 KiB
Python

#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
import itertools
from zun.api.controllers import link
_basic_keys = (
'uuid',
'name',
'image',
'links',
'command',
'status',
'status_reason',
'task_state',
'cpu',
'memory',
'environment',
'workdir',
'ports',
'hostname',
'labels',
'addresses',
'image_pull_policy',
'host',
'restart_policy',
'status_detail',
'tty',
'stdin_open'
)
def format_container(url, container):
def transform(key, value):
if key not in _basic_keys:
return
if key == 'uuid':
yield ('uuid', value)
yield ('links', [link.Link.make_link(
'self', url, 'containers', value),
link.Link.make_link(
'bookmark', url,
'containers', value,
bookmark=True)])
else:
yield (key, value)
return dict(itertools.chain.from_iterable(
transform(k, v) for k, v in container.as_dict().items()))