Skip to content
Snippets Groups Projects
  1. Aug 22, 2012
    • Dimitris Aragiorgis's avatar
      Implement LUNetworkSetParams · d0af39c0
      Dimitris Aragiorgis authored
      
      Support modifying all network parameters except for network (ip range)
      Cannot modify gateway and reserved ips at the same time.
      
      Signed-off-by: default avatarDimitris Aragiorgis <dimara@grnet.gr>
      d0af39c0
    • Dimitris Aragiorgis's avatar
      Implement LUNetworkQuery · 7eb01378
      Dimitris Aragiorgis authored
      
      Summarily list all existing networks
      Supply detailed info for every existing network
       - List used/free IPs
       - List instances with NICs assigned to the corresponding network
       - List NIC index and IP for the above instances
      
      Implement complementary config methods for retrieving networks.
      
      Signed-off-by: default avatarDimitris Aragiorgis <dimara@grnet.gr>
      7eb01378
    • Dimitris Aragiorgis's avatar
      Basic IP pool management logic · f2837050
      Dimitris Aragiorgis authored
      
      Implement LUs for corresponding opcodes:
       * LUNetworkAdd:
         - Check for IP validity
         - Reserves all necessary IPs
         - Create new Network config object
       * LUNetworkRemove:
         - Checks if connected to any nodegroup
         - Remove a Network config object
      
      Implement basic config methods:
       * LookupNetwork()
         - Given the network name return the network UUID
       * AddNetwork()
         - Add a new network to the config
       * RemoveNetwork()
         - Remove a network from the config
      
      Add new locking level: LEVEL_NETWORK
      
      Add various useful config methods for retrieving network info.
      
      Signed-off-by: default avatarDimitris Aragiorgis <dimara@grnet.gr>
      f2837050
    • Dimitris Aragiorgis's avatar
      Introduce new module for IP pool management · 8e5f43b1
      Dimitris Aragiorgis authored
      
      Add new library module lib/network.py.
      Introduce new class: AddressPool.
      
      AddressPool implements all operations needed for managing IPs
      inside the IP pool.
      
      Given a Network config object (nobj), the class:
      
       * initializes the corresponding IP pool object via
         network.AddressPool.InitializeNetwork(nobj)
       * obtains the corresponding IP pool object via
         network.AddressPool(nobj)
       * manipulates IPs inside the pool
      
      Signed-off-by: default avatarDimitris Aragiorgis <dimara@grnet.gr>
      8e5f43b1
    • Dimitris Aragiorgis's avatar
      IP pool related objects, opcodes and constants · f4f36cf3
      Dimitris Aragiorgis authored
      
      Config objects:
       * Introduce L{Network} with
        - IPv4 network field (mandatory)
        - IPv4 gateway, IPv6 (network/gateway), mac prefix, type (optional)
       * Modify existing config objects to support networks:
        - Add new slot 'network' to L{NIC} config object
        - Add new slot 'networks' to L{NodeGroup} config object
      
      Opcodes:
       * Introduce new opcodes for networks
        - add/remove/modify/query/connect/disconnect.
       * In InstanceCreate/InstanceSetParams add conflicts_check option
      
      Constants:
       * INIC_PARAM 'INIC_NETWORK'
       * NIC_IP_POOL for automaticaly obtain an IP from a pool
       * NETWORK_TYPE_PUBLIC/PRIVATE for network types
      
      Checking of network_type handled by the opcode parameter validation.
      Introduce _CheckCIDR*Notation() functions for network parameters validation.
      
      Signed-off-by: default avatarDimitris Aragiorgis <dimara@grnet.gr>
      f4f36cf3
    • Constantinos Venetsanopoulos's avatar
      Fix computation of disk sizes in _ComputeDiskSize · 6a3166cb
      Constantinos Venetsanopoulos authored
      
      Currently, hail fails with FailDisk when trying to add an instance
      of type: 'file', 'sharedfile' and 'rbd'.
      
      This is due to a "0" or None value in the corresponding dict inside
      _ComputeDiskSize, which results in a "O" or non Int value of the
      exported 'disk_space_total' parameter. This in turn makes hail fail,
      when trying to process the value:
      
       - with "Unable to read Int" if value is None (file)
       - with FailDisk if value is 0 (sharedfile, rbd)
      
      The latter happens because the 0 value doesn't match the instance's
      IPolicy, since it is lower than the minimum disk size.
      
      The second problem still exists when using adoption with 'plain'
      and 'blockdev' template and will be addressed in another commit.
      
      Signed-off-by: default avatarConstantinos Venetsanopoulos <cven@grnet.gr>
      Signed-off-by: default avatarIustin Pop <iustin@google.com>
      Reviewed-by: default avatarIustin Pop <iustin@google.com>
      6a3166cb
  2. Aug 15, 2012
    • Iustin Pop's avatar
      Add verification of RPC results in _WipeDisks · f08e5132
      Iustin Pop authored
      
      Due to an oversight, the pause/resume sync RPC calls in _WipeDisks
      lack the verification of the overall RPC status, and directly iterate
      over the payload. The code actually doing the wipe does verify
      correctly the results. This can result in jobs failing with a hard to
      diagnose:
      
      OpExecError ['NoneType' object is not iterable]
      
      instead of proper "RPC failed" message.
      
      This patch adds a hard check on the pause call, but for the resume
      call it just logs a warning if the RPC failed; the rationale being
      that if we can't contact the node for pausing the sync, it's likely
      wiping will fail too, but after the wipe has been done, we can
      continue.
      
      Signed-off-by: default avatarIustin Pop <iustin@google.com>
      Reviewed-by: default avatarRené Nussbaumer <rn@google.com>
      f08e5132
  3. Aug 10, 2012
  4. Jul 27, 2012
  5. Jul 26, 2012
    • Iustin Pop's avatar
      Fix issue in LUClusterVerifyGroup with multi-group clusters · 350506c6
      Iustin Pop authored
      
      In case LUClusterVerifyGroup is run on a group which doesn't contain
      the master node, the following could happen:
      
      - master node is selected due to the explicit check
      - if the order of nodes in the 'absent_nodes' list is such that the
        master node is the first in it, then we'll select (again) the master
        node
      - passing duplicate nodes to RPC calls will break due to RPC
        internals; this should be fixed separately, but in the meantime we
        just refrain from passing such duplicates
      
      This patch should not change the semantics of the code, since it
      wasn't guaranteed even before that we find a vm_capable node.
      
      Signed-off-by: default avatarIustin Pop <iustin@google.com>
      Reviewed-by: default avatarBernardo Dal Seno <bdalseno@google.com>
      350506c6
    • Iustin Pop's avatar
      Fix node group modification of node parameters · 4bf27dab
      Iustin Pop authored
      
      Commit 904b3bfe tried to fix the deletion of custom ndparams from
      group, but instead broke both modification and deletion: because we
      run ForceDictType on self.op.ndparams instead of the updated
      new_ndparams, we can neither delete nor set properly spindle_count
      (since it won't be coerced to int).
      
      Signed-off-by: default avatarIustin Pop <iustin@google.com>
      Reviewed-by: default avatarGuido Trotter <ultrotter@google.com>
      4bf27dab
  6. Jul 24, 2012
    • Iustin Pop's avatar
      Fix boot=on flag for CDROMs · 24be50e0
      Iustin Pop authored
      
      This generalises commit 4304964a to cdroms too, since they have
      somewhat the same logic. We just abstract the needs_boot_flag into a
      separate variable, and then reuse it in the cdrom section.
      
      Note that the logic of what 'if=' type to pass to KVM was very
      convoluted, and (I think) incorrect; I went and cleaned it to be more
      consistent.
      
      Signed-off-by: default avatarIustin Pop <iustin@google.com>
      Reviewed-by: default avatarGuido Trotter <ultrotter@google.com>
      24be50e0
    • Iustin Pop's avatar
      KVM: only pass boot flag once · 2b846304
      Iustin Pop authored
      
      This addresses issue 230: passing two methods of booting to KVM can,
      depending on the KVM version, confuse it.
      
      Note that commit 4304964a introduced a partial fix for this (but only
      for disks, and keyed on KVM versions). However, it didn't fix cdrom
      booting, which still fails with the same error, so let's fix it more
      generically; we still leave the per-disk check since that is about
      -boot c versus -drive …,boot=on rather than two boot methods.
      
      Patch is based on the one submitted by Vladimir Mencl, many thanks!
      
      Signed-off-by: default avatarIustin Pop <iustin@google.com>
      Reviewed-by: default avatarGuido Trotter <ultrotter@google.com>
      2b846304
  7. Jul 19, 2012
  8. Jul 18, 2012
  9. Jul 17, 2012
  10. Jul 13, 2012
  11. Jul 11, 2012
  12. Jul 07, 2012
  13. Jul 06, 2012
  14. Jul 05, 2012
  15. Jun 29, 2012
  16. Jun 28, 2012
  17. Jun 27, 2012
  18. Jun 20, 2012
    • Iustin Pop's avatar
      Fix bug in instance net changes · 80b898f9
      Iustin Pop authored
      
      _PrepareNicModification returns the invalid type, which triggers an
      assert resulting in a mysterious error:
      
      Failure: command execution error:
      
      Without any explanation. We fix this by removing the return value from
      _PrepareNicModification, and instead returning the expected type
      (since it differs per create/modification) from the (existing)
      wrappers for this function. We don't need to return actual changes
      from this function as _ApplyNicMods is the function that
      computes/returns the formatted changes.
      
      Signed-off-by: default avatarIustin Pop <iustin@google.com>
      Signed-off-by: default avatarRené Nussbaumer <rn@google.com>
      Reviewed-by: default avatarMichael Hanselmann <hansmi@google.com>
      80b898f9
  19. Jun 19, 2012
  20. Jun 18, 2012
  21. Jun 15, 2012
Loading