← Back to team overview

yahoo-eng-team team mailing list archive

[Bug 1447528] [NEW] vnc configuration should be group 'vnc'

 

Public bug reported:

vnc  conf is in following format

vnc_opts = [
    cfg.StrOpt('novncproxy_base_url',
               default='http://127.0.0.1:6080/vnc_auto.html',
               help='Location of VNC console proxy, in the form '
                    '"http://127.0.0.1:6080/vnc_auto.html";'),
    cfg.StrOpt('xvpvncproxy_base_url',
               default='http://127.0.0.1:6081/console',
               help='Location of nova xvp VNC console proxy, in the form '
                    '"http://127.0.0.1:6081/console";'),
    cfg.StrOpt('vncserver_listen',
               default='127.0.0.1',
               help='IP address on which instance vncservers should listen'),
    cfg.StrOpt('vncserver_proxyclient_address',
               default='127.0.0.1',
               help='The address to which proxy clients '
                    '(like nova-xvpvncproxy) should connect'),
    cfg.BoolOpt('vnc_enabled',
                default=True,
                help='Enable VNC related features'),
    cfg.StrOpt('vnc_keymap',
               default='en-us',
               help='Keymap for VNC'),
    ]

CONF = cfg.CONF
CONF.register_opts(vnc_opts)

while the others belong to rdp or serial group, we can make vnc in vnc
group like others

** Affects: nova
     Importance: Undecided
     Assignee: jichenjc (jichenjc)
         Status: New

** Changed in: nova
     Assignee: (unassigned) => jichenjc (jichenjc)

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Compute (nova).
https://bugs.launchpad.net/bugs/1447528

Title:
  vnc configuration should be group 'vnc'

Status in OpenStack Compute (Nova):
  New

Bug description:
  vnc  conf is in following format

  vnc_opts = [
      cfg.StrOpt('novncproxy_base_url',
                 default='http://127.0.0.1:6080/vnc_auto.html',
                 help='Location of VNC console proxy, in the form '
                      '"http://127.0.0.1:6080/vnc_auto.html";'),
      cfg.StrOpt('xvpvncproxy_base_url',
                 default='http://127.0.0.1:6081/console',
                 help='Location of nova xvp VNC console proxy, in the form '
                      '"http://127.0.0.1:6081/console";'),
      cfg.StrOpt('vncserver_listen',
                 default='127.0.0.1',
                 help='IP address on which instance vncservers should listen'),
      cfg.StrOpt('vncserver_proxyclient_address',
                 default='127.0.0.1',
                 help='The address to which proxy clients '
                      '(like nova-xvpvncproxy) should connect'),
      cfg.BoolOpt('vnc_enabled',
                  default=True,
                  help='Enable VNC related features'),
      cfg.StrOpt('vnc_keymap',
                 default='en-us',
                 help='Keymap for VNC'),
      ]

  CONF = cfg.CONF
  CONF.register_opts(vnc_opts)

  while the others belong to rdp or serial group, we can make vnc in vnc
  group like others

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/+bug/1447528/+subscriptions


Follow ups

References