You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by pd...@apache.org on 2014/09/21 16:31:39 UTC

[1/8] git commit: jira.py: add authentication now required by https://issues.apache.org/jira

Repository: cloudstack-docs-rn
Updated Branches:
  refs/heads/master f384d63b0 -> 24b2816dd


jira.py: add authentication now required by https://issues.apache.org/jira


Project: http://git-wip-us.apache.org/repos/asf/cloudstack-docs-rn/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack-docs-rn/commit/f36e3007
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack-docs-rn/tree/f36e3007
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack-docs-rn/diff/f36e3007

Branch: refs/heads/master
Commit: f36e30077bcd9c1aecadf3b1b6316e56ab708fc3
Parents: 632de41
Author: Pierre-Luc Dion <pd...@apache.org>
Authored: Sat Sep 20 11:02:54 2014 -0400
Committer: Pierre-Luc Dion <pd...@apache.org>
Committed: Sat Sep 20 11:02:54 2014 -0400

----------------------------------------------------------------------
 utils/jira.py | 39 +++++++++++++++++++++++++++++++--------
 1 file changed, 31 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack-docs-rn/blob/f36e3007/utils/jira.py
----------------------------------------------------------------------
diff --git a/utils/jira.py b/utils/jira.py
index c4b931d..e843cba 100755
--- a/utils/jira.py
+++ b/utils/jira.py
@@ -14,25 +14,48 @@
 # KIND, either express or implied.  See the License for the
 # specific language governing permissions and limitations
 # under the License.
- 
+"""jira.py: Output jira issues from https://issues.apache.org/jira into RST format for Apche CloudStack Release-Notes.
+
+Usage:
+  jira.py FILTERID -p USERNAME -u PASSWORD
+  jira.py (-h | --help)
+  jira.py --version
+
+Options:
+  -h --help     Show this screen.
+  --version     Show version.
+
+"""
+from docopt import docopt
 import requests
 import json
 import sys
 import pprint
- 
-filterid=str(sys.argv[1])
-filterurl='https://issues.apache.org/jira/rest/api/2/filter/' + filterid
- 
-r=requests.get(filterurl)
+
+
+if __name__ == '__main__':
+    arguments = docopt(__doc__, version='jira.py 2.0')
+    #print(arguments)
+
+#print arguments['FILTERID']
+#print arguments['PASSWORD']
+#print arguments['USERNAME']
+
+filterurl='https://issues.apache.org/jira/rest/api/2/filter/' + arguments['FILTERID']
+
+
+r=requests.get(filterurl, auth=(arguments['USERNAME'],arguments['PASSWORD']))
 rlist=r.json()['searchUrl']
 
-count=requests.get(rlist).json()['total']
+get_all=requests.get(rlist, auth=(arguments['USERNAME'],arguments['PASSWORD'])).json()
+count=get_all['total']
 
+#print count
 n, m = divmod(count, 50)
 
 for i in range(n+1):
 
-    issueslist=requests.get(rlist+'&startAt='+str(i*50)).json()['issues']
+    issueslist=get_all['issues']
 
     for issue in issueslist:
         '''assignee=issue['fields']['assignee']['displayName']


[3/8] git commit: jira issues updated

Posted by pd...@apache.org.
jira issues updated


Project: http://git-wip-us.apache.org/repos/asf/cloudstack-docs-rn/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack-docs-rn/commit/e2a0a875
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack-docs-rn/tree/e2a0a875
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack-docs-rn/diff/e2a0a875

Branch: refs/heads/master
Commit: e2a0a875c33c767703398fbfa7b17a31d87a9693
Parents: 42bfa9c
Author: Pierre-Luc Dion <pd...@apache.org>
Authored: Sat Sep 20 11:39:51 2014 -0400
Committer: Pierre-Luc Dion <pd...@apache.org>
Committed: Sat Sep 20 11:39:51 2014 -0400

----------------------------------------------------------------------
 source/fixed_issues.rst | 154 ++++++-----------------------------------
 source/known_issues.rst | 158 ++++++++++++++-----------------------------
 2 files changed, 70 insertions(+), 242 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack-docs-rn/blob/e2a0a875/source/fixed_issues.rst
----------------------------------------------------------------------
diff --git a/source/fixed_issues.rst b/source/fixed_issues.rst
index 722ce75..fe6fd5a 100644
--- a/source/fixed_issues.rst
+++ b/source/fixed_issues.rst
@@ -23,144 +23,28 @@ in Jira, and have a standard naming convention of "CLOUDSTACK-NNNN" where
 "NNNN" is the issue number.
 
 For the list of issues fixed, see `Issues Fixed in 
-<https://issues.apache.org/jira/issues/?filter=12327096>`_ |release|.
+<https://issues.apache.org/jira/issues/?filter=12329271>`_ |release|.
 
 ==========================================================================  ===================================================================================
 Bug ID                                                                      Description
 ==========================================================================  ===================================================================================
-`CLOUDSTACK-6997 <https://issues.apache.org/jira/browse/CLOUDSTACK-6997>`_  conntrack set to a very low value on router...
-`CLOUDSTACK-6996 <https://issues.apache.org/jira/browse/CLOUDSTACK-6996>`_  Adding cluster to legacy zone failed...
-`CLOUDSTACK-6989 <https://issues.apache.org/jira/browse/CLOUDSTACK-6989>`_  Redunant virtual router(RvR): When time synced by ntpd, RvR may result in FAULT ...
-`CLOUDSTACK-6941 <https://issues.apache.org/jira/browse/CLOUDSTACK-6941>`_  Can't choose storage for the volume, when attaching uploaded data volume to VM...
-`CLOUDSTACK-6925 <https://issues.apache.org/jira/browse/CLOUDSTACK-6925>`_  [OVS] get rid custom logic to create bridges on hosts in the XenServer pool...
-`CLOUDSTACK-6908 <https://issues.apache.org/jira/browse/CLOUDSTACK-6908>`_  ipv6 enabled by default...
-`CLOUDSTACK-6899 <https://issues.apache.org/jira/browse/CLOUDSTACK-6899>`_  listNics doesn't have vm id in response but does take vm id as a param...
-`CLOUDSTACK-6869 <https://issues.apache.org/jira/browse/CLOUDSTACK-6869>`_  Public key content is overridden by template's meta data when you create a insta...
-`CLOUDSTACK-6859 <https://issues.apache.org/jira/browse/CLOUDSTACK-6859>`_  Management Server PermGen run out of memory after some time due to class leak....
-`CLOUDSTACK-6850 <https://issues.apache.org/jira/browse/CLOUDSTACK-6850>`_  Cpu cores, cpu speed and memory are not returned by listUsageRecords...
-`CLOUDSTACK-6816 <https://issues.apache.org/jira/browse/CLOUDSTACK-6816>`_  cloudstack-setup-management make /root directory's permission 0777  improperly...
-`CLOUDSTACK-6756 <https://issues.apache.org/jira/browse/CLOUDSTACK-6756>`_  usage id is not being returned for an ip in deleted ip range...
-`CLOUDSTACK-6743 <https://issues.apache.org/jira/browse/CLOUDSTACK-6743>`_  Race condition situation in MessageDetector may cause a outer tight loop to spin...
-`CLOUDSTACK-6714 <https://issues.apache.org/jira/browse/CLOUDSTACK-6714>`_  Service monitoring conf is has issue with script in vmware...
-`CLOUDSTACK-6665 <https://issues.apache.org/jira/browse/CLOUDSTACK-6665>`_  DHCP does not release ip addresses properly on VPC routers (edithosts.sh)...
-`CLOUDSTACK-6646 <https://issues.apache.org/jira/browse/CLOUDSTACK-6646>`_  Conntrackd is started on non-redundant virtual router...
-`CLOUDSTACK-6578 <https://issues.apache.org/jira/browse/CLOUDSTACK-6578>`_  DeleteRemoteAccessVpnCmd failed block enable Remote VPN access again on the IP a...
-`CLOUDSTACK-6577 <https://issues.apache.org/jira/browse/CLOUDSTACK-6577>`_  Disable service monitoring in RVR...
-`CLOUDSTACK-6509 <https://issues.apache.org/jira/browse/CLOUDSTACK-6509>`_  Cannot import multiple LDAP/AD users into a cloudstack account...
-`CLOUDSTACK-6478 <https://issues.apache.org/jira/browse/CLOUDSTACK-6478>`_  Failed to download Template when having 3 SSVM's in one zone on Vmware...
-`CLOUDSTACK-6472 <https://issues.apache.org/jira/browse/CLOUDSTACK-6472>`_  listUsageRecords generates NPEs for expunging instances...
-`CLOUDSTACK-6471 <https://issues.apache.org/jira/browse/CLOUDSTACK-6471>`_  Add logs to better diagnose failures and errors in LDAP AD integration...
-`CLOUDSTACK-6396 <https://issues.apache.org/jira/browse/CLOUDSTACK-6396>`_  KVM RBD Volumes shown as OVM, prevents snapshots...
-`CLOUDSTACK-6376 <https://issues.apache.org/jira/browse/CLOUDSTACK-6376>`_  listnetworkacls api when called with a networkid of a network which was created ...
-`CLOUDSTACK-6374 <https://issues.apache.org/jira/browse/CLOUDSTACK-6374>`_  LB rules added while router reqiuires upgrade should be removed from lb vm map...
-`CLOUDSTACK-6371 <https://issues.apache.org/jira/browse/CLOUDSTACK-6371>`_  KVM - secondary_storage count for account does not get incremted when snapshots ...
+`CLOUDSTACK-7538 <https://issues.apache.org/jira/browse/CLOUDSTACK-7538>`_  Can not remove the vm nic due to there is another vm with same internal ip havin...
+`CLOUDSTACK-7528 <https://issues.apache.org/jira/browse/CLOUDSTACK-7528>`_  When AlertManager fails to sendAlert it does not log the actual issue/error...
+`CLOUDSTACK-7468 <https://issues.apache.org/jira/browse/CLOUDSTACK-7468>`_  NetScaler SSL Termination does not handle Projects as expected...
+`CLOUDSTACK-7357 <https://issues.apache.org/jira/browse/CLOUDSTACK-7357>`_  CLONE - Failed to stop VPC router with NPE...
+`CLOUDSTACK-7356 <https://issues.apache.org/jira/browse/CLOUDSTACK-7356>`_  CLONE - NPE XenServerGuru.java:95 when remove the nic from the vm in Stopped sta...
+`CLOUDSTACK-7340 <https://issues.apache.org/jira/browse/CLOUDSTACK-7340>`_  Instances unable to reach internet using SG provider and KVM...
+`CLOUDSTACK-7309 <https://issues.apache.org/jira/browse/CLOUDSTACK-7309>`_  NPE when project was already deleted...
+`CLOUDSTACK-7257 <https://issues.apache.org/jira/browse/CLOUDSTACK-7257>`_  CLONE - system VM  not coming up in LXC zone for rhel 6.x ...
+`CLOUDSTACK-7225 <https://issues.apache.org/jira/browse/CLOUDSTACK-7225>`_  SystemVM paused in a new 4.4.0 installation...
+`CLOUDSTACK-7193 <https://issues.apache.org/jira/browse/CLOUDSTACK-7193>`_  Rebooting a VM doesn't update iptables rules...
+`CLOUDSTACK-7140 <https://issues.apache.org/jira/browse/CLOUDSTACK-7140>`_  Upgrade 4.2.1 -> 4.4.0rc2...
+`CLOUDSTACK-7006 <https://issues.apache.org/jira/browse/CLOUDSTACK-7006>`_  Template ID is missing in ROOT volume usages...
+`CLOUDSTACK-6892 <https://issues.apache.org/jira/browse/CLOUDSTACK-6892>`_  Database HA Config prevents mgmt server from starting...
+`CLOUDSTACK-6886 <https://issues.apache.org/jira/browse/CLOUDSTACK-6886>`_  Cannot add SDX Netscaler device...
 `CLOUDSTACK-6358 <https://issues.apache.org/jira/browse/CLOUDSTACK-6358>`_  Remove hardcoded guest OS mappings...
-`CLOUDSTACK-6356 <https://issues.apache.org/jira/browse/CLOUDSTACK-6356>`_  OVS: tunnel networks does not work across the XenServer clusers...
-`CLOUDSTACK-6328 <https://issues.apache.org/jira/browse/CLOUDSTACK-6328>`_  Prevent console proxy support scripts from spawning multiple java processes...
-`CLOUDSTACK-6322 <https://issues.apache.org/jira/browse/CLOUDSTACK-6322>`_  Contrail: Params validation is missing while launching a service instance thru c...
-`CLOUDSTACK-6319 <https://issues.apache.org/jira/browse/CLOUDSTACK-6319>`_  Cannot create OVS network offering for VPC...
-`CLOUDSTACK-6317 <https://issues.apache.org/jira/browse/CLOUDSTACK-6317>`_  [VMware] Tagged VLAN support broken for Management/Control/Storage traffic...
-`CLOUDSTACK-6299 <https://issues.apache.org/jira/browse/CLOUDSTACK-6299>`_  GetVMPassword decypher instructions are wrong...
-`CLOUDSTACK-6289 <https://issues.apache.org/jira/browse/CLOUDSTACK-6289>`_  [Hyper-V] Storage migration failing in case of hyper-v if there are multiple dis...
-`CLOUDSTACK-6288 <https://issues.apache.org/jira/browse/CLOUDSTACK-6288>`_  [Hyper-v] Change default ImageFormat to vhdx for hyper-v and allow registration ...
-`CLOUDSTACK-6285 <https://issues.apache.org/jira/browse/CLOUDSTACK-6285>`_  Some passwords in the VR would be cleared out by accident due to falsely match i...
-`CLOUDSTACK-6277 <https://issues.apache.org/jira/browse/CLOUDSTACK-6277>`_  Fail to add instance, the Network and Review steps display as blank pages....
-`CLOUDSTACK-6269 <https://issues.apache.org/jira/browse/CLOUDSTACK-6269>`_  [Simulator]: Exception "Unable to send command. Upgrade in progress. Please cont...
-`CLOUDSTACK-6245 <https://issues.apache.org/jira/browse/CLOUDSTACK-6245>`_  Security group rules on hypervisor host are lagging behind rules in DB...
-`CLOUDSTACK-6241 <https://issues.apache.org/jira/browse/CLOUDSTACK-6241>`_  Dnsmasq programming error when deploy IPv6 and IPv4 in one VM with IPv4 as defau...
-`CLOUDSTACK-6236 <https://issues.apache.org/jira/browse/CLOUDSTACK-6236>`_  Negative ref_cnt of template(snapshot/volume)_store_ref results in out-of-range ...
-`CLOUDSTACK-6232 <https://issues.apache.org/jira/browse/CLOUDSTACK-6232>`_  isolated network can no longer reserve ip range...
-`CLOUDSTACK-6231 <https://issues.apache.org/jira/browse/CLOUDSTACK-6231>`_  Cloudstack createNetworkACL cuts cidrlist at 256 characters...
-`CLOUDSTACK-6227 <https://issues.apache.org/jira/browse/CLOUDSTACK-6227>`_  Add copy-paste support for detail view fields...
-`CLOUDSTACK-6224 <https://issues.apache.org/jira/browse/CLOUDSTACK-6224>`_  VM Snapshot inconsistent size...
-`CLOUDSTACK-6223 <https://issues.apache.org/jira/browse/CLOUDSTACK-6223>`_  removeNicFromVirtualMachine fails if another instance in another domain has a ni...
-`CLOUDSTACK-6211 <https://issues.apache.org/jira/browse/CLOUDSTACK-6211>`_  Xenserver - HA - SSVM fails to start due to running out of management Ip ranges ...
-`CLOUDSTACK-6210 <https://issues.apache.org/jira/browse/CLOUDSTACK-6210>`_  LDAP:listLdapUsers api throws exception when we click on "Add LDAP Account" ...
-`CLOUDSTACK-6196 <https://issues.apache.org/jira/browse/CLOUDSTACK-6196>`_  Fixed invalid field name (label.dynamically.scalable) on instance details....
-`CLOUDSTACK-6192 <https://issues.apache.org/jira/browse/CLOUDSTACK-6192>`_  KVM: StartCommand and PrepareForMigrationCommand don't fail if storage adaptor f...
-`CLOUDSTACK-6187 <https://issues.apache.org/jira/browse/CLOUDSTACK-6187>`_  Migrate router from UI is showing error...
-`CLOUDSTACK-6183 <https://issues.apache.org/jira/browse/CLOUDSTACK-6183>`_  Unplug the nic when all the ips of public subnet is released...
-`CLOUDSTACK-6172 <https://issues.apache.org/jira/browse/CLOUDSTACK-6172>`_  Volume is not retaining same uuid when migrating from one storage to another....
-`CLOUDSTACK-6159 <https://issues.apache.org/jira/browse/CLOUDSTACK-6159>`_  [Hyper-v]Attached data volumes are getting created with disk name in primary sto...
-`CLOUDSTACK-6151 <https://issues.apache.org/jira/browse/CLOUDSTACK-6151>`_  Local data disk with tag goes to the wrong local storage pool...
-`CLOUDSTACK-6124 <https://issues.apache.org/jira/browse/CLOUDSTACK-6124>`_  During MS maintenance unfinished work items are not cleaned up resulting in them...
-`CLOUDSTACK-6103 <https://issues.apache.org/jira/browse/CLOUDSTACK-6103>`_  vms with isos attached don't migrate...
-`CLOUDSTACK-6062 <https://issues.apache.org/jira/browse/CLOUDSTACK-6062>`_  nic device ids for routers don't always correspond...
-`CLOUDSTACK-6053 <https://issues.apache.org/jira/browse/CLOUDSTACK-6053>`_  While adding smb as primary or secondary the password should be uri encoded...
-`CLOUDSTACK-6032 <https://issues.apache.org/jira/browse/CLOUDSTACK-6032>`_  [VmScaleup]service offering id is not getting changed in usage_vm_instance table...
-`CLOUDSTACK-6024 <https://issues.apache.org/jira/browse/CLOUDSTACK-6024>`_  template copy to primary storage uses a random source secstorage from any zone...
-`CLOUDSTACK-6011 <https://issues.apache.org/jira/browse/CLOUDSTACK-6011>`_  NPE when detach is called on a deleted volume...
-`CLOUDSTACK-6000 <https://issues.apache.org/jira/browse/CLOUDSTACK-6000>`_  Volume lifecycle, stuck in expunging...
-`CLOUDSTACK-5998 <https://issues.apache.org/jira/browse/CLOUDSTACK-5998>`_  [AWSAPI] describe addresses call returns a fault with "domain cannot be null!!"...
-`CLOUDSTACK-5995 <https://issues.apache.org/jira/browse/CLOUDSTACK-5995>`_  change service offering is not honouring host tags ...
-`CLOUDSTACK-5993 <https://issues.apache.org/jira/browse/CLOUDSTACK-5993>`_  Cloud agent fails to start on 32-bit system vms (cpvm and ssvm) created with 4GB...
-`CLOUDSTACK-5989 <https://issues.apache.org/jira/browse/CLOUDSTACK-5989>`_  Trying to start a vm while 'vm snapshot' is in progress results in inconsistency...
-`CLOUDSTACK-5976 <https://issues.apache.org/jira/browse/CLOUDSTACK-5976>`_  [upgrade]Typo in "ssh_keypairs" table's foreign key constraints on the Upgraded ...
-`CLOUDSTACK-5965 <https://issues.apache.org/jira/browse/CLOUDSTACK-5965>`_  VM displayname is not returned by API...
-`CLOUDSTACK-5962 <https://issues.apache.org/jira/browse/CLOUDSTACK-5962>`_  Value of Global parameter "custom.diskoffering.size.min" is not reflected in UI ...
-`CLOUDSTACK-5961 <https://issues.apache.org/jira/browse/CLOUDSTACK-5961>`_  CLONE - API: synchronization on the object is broken...
-`CLOUDSTACK-5960 <https://issues.apache.org/jira/browse/CLOUDSTACK-5960>`_  Domain admin or user cannot register a template using S3/Swift object store...
-`CLOUDSTACK-5936 <https://issues.apache.org/jira/browse/CLOUDSTACK-5936>`_  Hyper-V agent should log to windows event viewer...
-`CLOUDSTACK-5935 <https://issues.apache.org/jira/browse/CLOUDSTACK-5935>`_  Problem with VMware snapshot when datastore has a space in its name...
-`CLOUDSTACK-5934 <https://issues.apache.org/jira/browse/CLOUDSTACK-5934>`_  Problem with VMware snapshot when datastore has a space in its name...
-`CLOUDSTACK-5929 <https://issues.apache.org/jira/browse/CLOUDSTACK-5929>`_  [VM Sync] - Vmware - Even when starting Vm fails, startVirtualMachine async job ...
-`CLOUDSTACK-5928 <https://issues.apache.org/jira/browse/CLOUDSTACK-5928>`_  [VM Sync] - Vmware - When a Vm is "suspended" from outside of CloudStack , this ...
-`CLOUDSTACK-5915 <https://issues.apache.org/jira/browse/CLOUDSTACK-5915>`_   [AWSAPI] Instance launch is inconsistent if there are deleted service offerings...
-`CLOUDSTACK-5891 <https://issues.apache.org/jira/browse/CLOUDSTACK-5891>`_  [VMware] Template detail cpu.corespersocket's value is not honoured...
-`CLOUDSTACK-5870 <https://issues.apache.org/jira/browse/CLOUDSTACK-5870>`_  API support for retrieving UserData...
-`CLOUDSTACK-5865 <https://issues.apache.org/jira/browse/CLOUDSTACK-5865>`_  Unable to use login API if domainId parameter is id and not uuid...
-`CLOUDSTACK-5845 <https://issues.apache.org/jira/browse/CLOUDSTACK-5845>`_  [doc] Document Heterogeneous Secondary Storage Not Supported in Region...
-`CLOUDSTACK-5839 <https://issues.apache.org/jira/browse/CLOUDSTACK-5839>`_  listNetworkServiceProviders API doesn't return several parameters defined in the...
-`CLOUDSTACK-5826 <https://issues.apache.org/jira/browse/CLOUDSTACK-5826>`_  createPod: passing invalid gateway/netmask to the call causes infinite loop exec...
-`CLOUDSTACK-5821 <https://issues.apache.org/jira/browse/CLOUDSTACK-5821>`_  systemvmiso is locked by systevmvm in hyperv...
-`CLOUDSTACK-5812 <https://issues.apache.org/jira/browse/CLOUDSTACK-5812>`_  Secondary ip allocation in Basic zone - the pod is not respected...
-`CLOUDSTACK-5810 <https://issues.apache.org/jira/browse/CLOUDSTACK-5810>`_  addIpToNic: the owner of the secondary ip should be derived from vmInstance obje...
-`CLOUDSTACK-5806 <https://issues.apache.org/jira/browse/CLOUDSTACK-5806>`_  Storage types other than NFS/VMFS can't overprovision...
-`CLOUDSTACK-5785 <https://issues.apache.org/jira/browse/CLOUDSTACK-5785>`_  VM display name cell not updated upon detaching volume from VM...
-`CLOUDSTACK-5770 <https://issues.apache.org/jira/browse/CLOUDSTACK-5770>`_  [Automation] Unexpected Exception while executing DeployVMCmd: StreamCorruptedEx...
-`CLOUDSTACK-5765 <https://issues.apache.org/jira/browse/CLOUDSTACK-5765>`_  [Automation] scale vm failed with error "Unable to serialize"...
-`CLOUDSTACK-5731 <https://issues.apache.org/jira/browse/CLOUDSTACK-5731>`_  [Automation] VM deployment failed with ConcurrentOperationException in vmware...
-`CLOUDSTACK-5729 <https://issues.apache.org/jira/browse/CLOUDSTACK-5729>`_  [Automation]Deletion of a Account reported Success inspite of VM Expunge Failure...
-`CLOUDSTACK-5728 <https://issues.apache.org/jira/browse/CLOUDSTACK-5728>`_  [Automation] ReplaceNetworkACLListCmd command failing with NPE...
-`CLOUDSTACK-5727 <https://issues.apache.org/jira/browse/CLOUDSTACK-5727>`_  [Automation] Inspite of VM Deployment Failure, the job reports success...
-`CLOUDSTACK-5712 <https://issues.apache.org/jira/browse/CLOUDSTACK-5712>`_  [Automation] Failed to stop vm during vm destroy command, observed the error "Un...
-`CLOUDSTACK-5696 <https://issues.apache.org/jira/browse/CLOUDSTACK-5696>`_  [Vmsync]- Stopped state of VM is not synced to CS when VM is stopped outside of ...
-`CLOUDSTACK-5688 <https://issues.apache.org/jira/browse/CLOUDSTACK-5688>`_  NPE when the KVM host is rebooted  on the upgraded environment...
-`CLOUDSTACK-5685 <https://issues.apache.org/jira/browse/CLOUDSTACK-5685>`_  [Vmsync] - When VR is rebooted outside of cloudstack , there is no change in sta...
-`CLOUDSTACK-5678 <https://issues.apache.org/jira/browse/CLOUDSTACK-5678>`_  Cold Storage migration is failing...
-`CLOUDSTACK-5660 <https://issues.apache.org/jira/browse/CLOUDSTACK-5660>`_  Migrate vm live migration succeeds but throws error as ""Failed to migrate the s...
-`CLOUDSTACK-5632 <https://issues.apache.org/jira/browse/CLOUDSTACK-5632>`_  [Automation] XenServer - Template deletion fails with error "Please specify a te...
-`CLOUDSTACK-5597 <https://issues.apache.org/jira/browse/CLOUDSTACK-5597>`_  attachVolume shouldn't create the volume on the primary storage if the vm's root...
-`CLOUDSTACK-5582 <https://issues.apache.org/jira/browse/CLOUDSTACK-5582>`_  kvm - HA is not triggered when host is powered down since the host gets into "Di...
-`CLOUDSTACK-5577 <https://issues.apache.org/jira/browse/CLOUDSTACK-5577>`_  Remote Access VPN and S2S VPN should be treated as two seperate services for Net...
-`CLOUDSTACK-5575 <https://issues.apache.org/jira/browse/CLOUDSTACK-5575>`_  Remote Access VPN and S2S VPN should be treated as two seperate services on VPC...
-`CLOUDSTACK-5563 <https://issues.apache.org/jira/browse/CLOUDSTACK-5563>`_  path field is set to null in volumes table ...
-`CLOUDSTACK-5505 <https://issues.apache.org/jira/browse/CLOUDSTACK-5505>`_  [Automation] Private gateway not getting programmed in VPC router ...
-`CLOUDSTACK-5501 <https://issues.apache.org/jira/browse/CLOUDSTACK-5501>`_  Unable to create more than one vpnConnection per vpn customer gateway...
-`CLOUDSTACK-5496 <https://issues.apache.org/jira/browse/CLOUDSTACK-5496>`_  Account included in ActionEvents is Project Account ID...
-`CLOUDSTACK-5463 <https://issues.apache.org/jira/browse/CLOUDSTACK-5463>`_  Hyper-V does not report stopped VMs...
-`CLOUDSTACK-5429 <https://issues.apache.org/jira/browse/CLOUDSTACK-5429>`_  KVM - Primary store down/Network Failure - Hosts attempt to reboot becasue of pr...
-`CLOUDSTACK-5419 <https://issues.apache.org/jira/browse/CLOUDSTACK-5419>`_  missing parameters in configuration table and to remove unused parameters...
-`CLOUDSTACK-5356 <https://issues.apache.org/jira/browse/CLOUDSTACK-5356>`_  Xenserver - Failed to create snapshot when secondary store was made unavaibale f...
-`CLOUDSTACK-5262 <https://issues.apache.org/jira/browse/CLOUDSTACK-5262>`_  Few of  the snapshot creation from ROOT volume fails when there are concurrent s...
-`CLOUDSTACK-5220 <https://issues.apache.org/jira/browse/CLOUDSTACK-5220>`_  NullPointerException when invalid zone is passed into UsageEventUtils...
-`CLOUDSTACK-5205 <https://issues.apache.org/jira/browse/CLOUDSTACK-5205>`_  System vm startup scripts calculate jvm memory wrong...
-`CLOUDSTACK-5150 <https://issues.apache.org/jira/browse/CLOUDSTACK-5150>`_  Creating template from a VM in Simulator results in incorrect size...
-`CLOUDSTACK-5062 <https://issues.apache.org/jira/browse/CLOUDSTACK-5062>`_  Deleting Load Balancing Rule fails when generating usage events are enabled...
-`CLOUDSTACK-5043 <https://issues.apache.org/jira/browse/CLOUDSTACK-5043>`_  [DOC] Page number missing and words truncated in PDFs since 4.1.1...
-`CLOUDSTACK-5012 <https://issues.apache.org/jira/browse/CLOUDSTACK-5012>`_  Bad data inserted into physical network labels for Zone Create Wizard using VMWa...
-`CLOUDSTACK-4744 <https://issues.apache.org/jira/browse/CLOUDSTACK-4744>`_  updateVolume needs more changes in the context of "Ability to have better contro...
-`CLOUDSTACK-4652 <https://issues.apache.org/jira/browse/CLOUDSTACK-4652>`_  ceph:UI:Noticed 2 records for same volume after migrating instance from one prim...
-`CLOUDSTACK-4639 <https://issues.apache.org/jira/browse/CLOUDSTACK-4639>`_  status of VM is not synced properly when host is HA  during hypervisor failure...
-`CLOUDSTACK-4578 <https://issues.apache.org/jira/browse/CLOUDSTACK-4578>`_  [vmware]SSVM is not getting created if one host down from a cluster...
-`CLOUDSTACK-4568 <https://issues.apache.org/jira/browse/CLOUDSTACK-4568>`_  Need to add this to the release note of 4.2...
-`CLOUDSTACK-4557 <https://issues.apache.org/jira/browse/CLOUDSTACK-4557>`_  ceph:Performance:first time operstions taking more time...
-`CLOUDSTACK-4549 <https://issues.apache.org/jira/browse/CLOUDSTACK-4549>`_  ceph:deployvm from template created from snapshot is failing...
-`CLOUDSTACK-4292 <https://issues.apache.org/jira/browse/CLOUDSTACK-4292>`_  ceph:destroyedvm failed with ArrayIndexexception while expunging...
-`CLOUDSTACK-4126 <https://issues.apache.org/jira/browse/CLOUDSTACK-4126>`_  EN:  Typo error after click "Migrate instance to another host" button under inst...
-`CLOUDSTACK-3994 <https://issues.apache.org/jira/browse/CLOUDSTACK-3994>`_  Wrong error notification is generated when Primary storage (Cluster wide) is add...
-`CLOUDSTACK-2932 <https://issues.apache.org/jira/browse/CLOUDSTACK-2932>`_  Allow deleting of snapshots that have errored out....
-`CLOUDSTACK-2714 <https://issues.apache.org/jira/browse/CLOUDSTACK-2714>`_  Setting tab should not be visible for user accounts ...
-`CLOUDSTACK-2697 <https://issues.apache.org/jira/browse/CLOUDSTACK-2697>`_  cluster id in alert message is null {alertType:: 1 // dataCenterId:: 1 // podId:...
-`CLOUDSTACK-2031 <https://issues.apache.org/jira/browse/CLOUDSTACK-2031>`_  [mipn] support for number of ips per nic limit needs to be added for the multipl...
+`CLOUDSTACK-6323 <https://issues.apache.org/jira/browse/CLOUDSTACK-6323>`_  GetUser API always returns admin info...
+`CLOUDSTACK-6099 <https://issues.apache.org/jira/browse/CLOUDSTACK-6099>`_  live migration is failing for vm deployed using dynaic compute offerings with NP...
+`CLOUDSTACK-6039 <https://issues.apache.org/jira/browse/CLOUDSTACK-6039>`_  systemvm template for VMWare with jre7...
+`CLOUDSTACK-4770 <https://issues.apache.org/jira/browse/CLOUDSTACK-4770>`_  Management server fails to start with "Unable to get the management server node"...
 ==========================================================================  ===================================================================================

http://git-wip-us.apache.org/repos/asf/cloudstack-docs-rn/blob/e2a0a875/source/known_issues.rst
----------------------------------------------------------------------
diff --git a/source/known_issues.rst b/source/known_issues.rst
index 5dd93dc..bcad97c 100644
--- a/source/known_issues.rst
+++ b/source/known_issues.rst
@@ -15,7 +15,7 @@
 
 
 Known Issues in |release|
--------------------------
+=========================
 
 Apache CloudStack uses `Jira 
 <https://issues.apache.org/jira/browse/CLOUDSTACK>`_ to track its issues. All 
@@ -24,68 +24,48 @@ standard naming convention of "CLOUDSTACK-NNNN" where "NNNN" is the issue
 number.
 
 For the list of known issues, see `Known Issues in 
-<https://issues.apache.org/jira/issues/?filter=12327097>`_ |release|.
+<https://issues.apache.org/jira/issues/?filter=12328007>`_ |release|.
 
 ==========================================================================  ===================================================================================
 Bug ID                                                                      Description
 ==========================================================================  ===================================================================================
-`CLOUDSTACK-5212 <https://issues.apache.org/jira/browse/CLOUDSTACK-5212>`_  [UI]Need Support for the LXC for the Report sockets CS-4908...
-`CLOUDSTACK-5357 <https://issues.apache.org/jira/browse/CLOUDSTACK-5357>`_  Xenserver - Failed to create snapshot due to "unable to destroy task(com.xe nsou...
-`CLOUDSTACK-5372 <https://issues.apache.org/jira/browse/CLOUDSTACK-5372>`_  Xenserver - SR not being recreated when the Primary storage is brought down and ...
 `CLOUDSTACK-5469 <https://issues.apache.org/jira/browse/CLOUDSTACK-5469>`_  Snapshot creation fails with following exception - "Failed to backup snapshot: q...
-`CLOUDSTACK-5485 <https://issues.apache.org/jira/browse/CLOUDSTACK-5485>`_  Vmware - Whe 10 hourly snapshots are scheduled at the same time , we see only 5 ...
 `CLOUDSTACK-5736 <https://issues.apache.org/jira/browse/CLOUDSTACK-5736>`_  KVM - Recurring Snapshots - Snapshots reported as being in "BackedUp" state even...
 `CLOUDSTACK-5738 <https://issues.apache.org/jira/browse/CLOUDSTACK-5738>`_  Recurring Snapshots - Few Snapshots are stuck in "Creating" state for more than ...
-`CLOUDSTACK-5746 <https://issues.apache.org/jira/browse/CLOUDSTACK-5746>`_  Can't access vm console from IE browser...
 `CLOUDSTACK-5853 <https://issues.apache.org/jira/browse/CLOUDSTACK-5853>`_  cannot deploy vm with differing service storage tag and data disk storage tag...
 `CLOUDSTACK-6036 <https://issues.apache.org/jira/browse/CLOUDSTACK-6036>`_   CloudStack stops the machine for no reason...
-`CLOUDSTACK-6177 <https://issues.apache.org/jira/browse/CLOUDSTACK-6177>`_  CS does XS master switch, which may cause weid XS behavior...
-`CLOUDSTACK-6360 <https://issues.apache.org/jira/browse/CLOUDSTACK-6360>`_  Usage server failed to start with 4.4 build...
-`CLOUDSTACK-6392 <https://issues.apache.org/jira/browse/CLOUDSTACK-6392>`_  system template always create with name "master" instead of specific branch...
-`CLOUDSTACK-6405 <https://issues.apache.org/jira/browse/CLOUDSTACK-6405>`_  Observed SQL exceptions during db upgrade from 4.0.0 to 4.4.0...
+`CLOUDSTACK-6177 <https://issues.apache.org/jira/browse/CLOUDSTACK-6177>`_  CS does XS master switch, which may cause weird XS behavior...
 `CLOUDSTACK-6430 <https://issues.apache.org/jira/browse/CLOUDSTACK-6430>`_  [SDN] CS asks for vlan range even we create physical network with GRE isolation ...
 `CLOUDSTACK-6459 <https://issues.apache.org/jira/browse/CLOUDSTACK-6459>`_  Unable to enable maintenance mode on a Primary storage that crashed...
-`CLOUDSTACK-6464 <https://issues.apache.org/jira/browse/CLOUDSTACK-6464>`_  [KVM:basic zone- upgrade to  4.3],after   any vm restart,all the nics  are plugg...
 `CLOUDSTACK-6465 <https://issues.apache.org/jira/browse/CLOUDSTACK-6465>`_  vmware.reserve.mem is missing from cluster level settings ...
 `CLOUDSTACK-6496 <https://issues.apache.org/jira/browse/CLOUDSTACK-6496>`_  addHost fails for XenServer with vSwitch networking...
-`CLOUDSTACK-6590 <https://issues.apache.org/jira/browse/CLOUDSTACK-6590>`_  No option in UI to acquire secondary IP for VM nic...
-`CLOUDSTACK-6594 <https://issues.apache.org/jira/browse/CLOUDSTACK-6594>`_  Observed many DB Exception while starting MS "Can't DROP 'last_sent'; check that...
+`CLOUDSTACK-6623 <https://issues.apache.org/jira/browse/CLOUDSTACK-6623>`_  Register template does not work as expected, when deploying simulator and xen zo...
 `CLOUDSTACK-6635 <https://issues.apache.org/jira/browse/CLOUDSTACK-6635>`_  more details required in Alert generated in MS from router vm ...
-`CLOUDSTACK-6684 <https://issues.apache.org/jira/browse/CLOUDSTACK-6684>`_  Error instances are not getting expunged within the specified expunge interval...
 `CLOUDSTACK-6691 <https://issues.apache.org/jira/browse/CLOUDSTACK-6691>`_  NPE while assigning a VM nic primary/secondaryip to internal lb rule....
-`CLOUDSTACK-6693 <https://issues.apache.org/jira/browse/CLOUDSTACK-6693>`_  Enabling Dynamic scale is causing for Windows 8 instance to repair state ...
-`CLOUDSTACK-6694 <https://issues.apache.org/jira/browse/CLOUDSTACK-6694>`_  [UI]while assigning VM to internal LB(VPC),ListVMs is not listing VM nic primary...
-`CLOUDSTACK-6696 <https://issues.apache.org/jira/browse/CLOUDSTACK-6696>`_  UI: createAccount under sub-domain is created with ROOT domain id...
 `CLOUDSTACK-6698 <https://issues.apache.org/jira/browse/CLOUDSTACK-6698>`_  listResourceDetals - normal user able to list details not belonging to it...
 `CLOUDSTACK-6707 <https://issues.apache.org/jira/browse/CLOUDSTACK-6707>`_  [SDN] OVS bridge/tunnel ports are not getting deleted from Host even though ther...
-`CLOUDSTACK-6713 <https://issues.apache.org/jira/browse/CLOUDSTACK-6713>`_  NumberFormatException for NetworkUsage command...
 `CLOUDSTACK-6717 <https://issues.apache.org/jira/browse/CLOUDSTACK-6717>`_  [OVS][UI]VPC network creation page does not display custom network offering crea...
 `CLOUDSTACK-6718 <https://issues.apache.org/jira/browse/CLOUDSTACK-6718>`_  [OVS][UI] Isolated network offering (non-vpc) creation page shows ovs as the ser...
 `CLOUDSTACK-6725 <https://issues.apache.org/jira/browse/CLOUDSTACK-6725>`_  [OVS][UI] vm deployment wizard does not show all available zones in a region whi...
 `CLOUDSTACK-6748 <https://issues.apache.org/jira/browse/CLOUDSTACK-6748>`_  Creating an instance with user-data when network doesn't support user-data shoul...
 `CLOUDSTACK-6762 <https://issues.apache.org/jira/browse/CLOUDSTACK-6762>`_  [OVS]Flow rules to drop Broadcast/Multicast traffic on tunnel ports are not adde...
-`CLOUDSTACK-6783 <https://issues.apache.org/jira/browse/CLOUDSTACK-6783>`_  ceph: Volume operations can fail if libvirt lost the storage pool...
 `CLOUDSTACK-6796 <https://issues.apache.org/jira/browse/CLOUDSTACK-6796>`_  [OVS]Failure in network update does not change network offering to original offe...
 `CLOUDSTACK-6797 <https://issues.apache.org/jira/browse/CLOUDSTACK-6797>`_  volume resize should not be allowed for detached volumes...
-`CLOUDSTACK-6803 <https://issues.apache.org/jira/browse/CLOUDSTACK-6803>`_  UI:QuickView: Unable to render Quick view overlay on VM snapshots...
-`CLOUDSTACK-6809 <https://issues.apache.org/jira/browse/CLOUDSTACK-6809>`_  listStoragePoolsForMigration doesn't list the zone wide primary storages if the ...
-`CLOUDSTACK-6821 <https://issues.apache.org/jira/browse/CLOUDSTACK-6821>`_  Disk allocated for primary storage  remain unchanged after volume deletion ...
 `CLOUDSTACK-6827 <https://issues.apache.org/jira/browse/CLOUDSTACK-6827>`_  Can't enable VR service provider in case of multiple physical networks...
 `CLOUDSTACK-6828 <https://issues.apache.org/jira/browse/CLOUDSTACK-6828>`_  [OVS] Tunnel ports are not getting deleted even failure in vm deployment...
-`CLOUDSTACK-6838 <https://issues.apache.org/jira/browse/CLOUDSTACK-6838>`_  Add test cases for download url expiration functionality...
-`CLOUDSTACK-6840 <https://issues.apache.org/jira/browse/CLOUDSTACK-6840>`_  [OVS][UI] Ovs provider should not be displayed in NetworkServiceProviders if the...
 `CLOUDSTACK-6841 <https://issues.apache.org/jira/browse/CLOUDSTACK-6841>`_  [OVS] Remote_ips for tunnel ports are not configured properly in case of multipe...
-`CLOUDSTACK-6882 <https://issues.apache.org/jira/browse/CLOUDSTACK-6882>`_  Doc generator should be generate doc for plugins ...
-`CLOUDSTACK-6892 <https://issues.apache.org/jira/browse/CLOUDSTACK-6892>`_  Database HA Config prevents mgmt server from starting...
-`CLOUDSTACK-6898 <https://issues.apache.org/jira/browse/CLOUDSTACK-6898>`_  [Hyper-V] Open the console of a VM from CS, reboot the VM ( from CS or from insi...
-`CLOUDSTACK-6905 <https://issues.apache.org/jira/browse/CLOUDSTACK-6905>`_  NPE XenServerGuru.java:95 when remove the nic from the vm in Stopped state...
-`CLOUDSTACK-6910 <https://issues.apache.org/jira/browse/CLOUDSTACK-6910>`_  Phase 1: tagging of test cases...
 `CLOUDSTACK-6928 <https://issues.apache.org/jira/browse/CLOUDSTACK-6928>`_  IOPS throttling setting isn't applied to a dinamically attached volume...
-`CLOUDSTACK-6990 <https://issues.apache.org/jira/browse/CLOUDSTACK-6990>`_  VM console displays blank page.AgentControlChannelException in cloud.log...
-`CLOUDSTACK-7011 <https://issues.apache.org/jira/browse/CLOUDSTACK-7011>`_  [Automation] MS log getting created with owner root instead of cloud, and logs n...
 `CLOUDSTACK-7049 <https://issues.apache.org/jira/browse/CLOUDSTACK-7049>`_  APIs return sensitive information which CloudStack does not manage and which cal...
-`CLOUDSTACK-7078 <https://issues.apache.org/jira/browse/CLOUDSTACK-7078>`_  CLONE - [VMWARE]System VM's are failed to start with Nexus enabled Zone ...
-`CLOUDSTACK-7129 <https://issues.apache.org/jira/browse/CLOUDSTACK-7129>`_  Non-admin user can use deleteNetwork with shared networks...
+`CLOUDSTACK-7300 <https://issues.apache.org/jira/browse/CLOUDSTACK-7300>`_  Cannot create Snapshot on KVM...
+`CLOUDSTACK-7364 <https://issues.apache.org/jira/browse/CLOUDSTACK-7364>`_  NetScaler won't create the Public VLAN and Bind the IP to it...
+`CLOUDSTACK-7406 <https://issues.apache.org/jira/browse/CLOUDSTACK-7406>`_  Templates using Swift provider reports physical size, and not the virtual size i...
+`CLOUDSTACK-7414 <https://issues.apache.org/jira/browse/CLOUDSTACK-7414>`_  SSVM 4.4.0-6 fails to connect to NFS v3 and v4.1 shares...
+`CLOUDSTACK-7443 <https://issues.apache.org/jira/browse/CLOUDSTACK-7443>`_  Cannot launch SSVMs when using Swift as Secondary Storage...
+`CLOUDSTACK-7457 <https://issues.apache.org/jira/browse/CLOUDSTACK-7457>`_  Unable to launch VM after unexpected Hypervisor Reboot (out of band)...
+`CLOUDSTACK-7539 <https://issues.apache.org/jira/browse/CLOUDSTACK-7539>`_  [S3] Parallel deployment makes reference count of a cache in nfs secondary stagi...
+`CLOUDSTACK-7578 <https://issues.apache.org/jira/browse/CLOUDSTACK-7578>`_  XenServerInvestigator should do better investigation in case of OVS or other net...
+`CLOUDSTACK-7584 <https://issues.apache.org/jira/browse/CLOUDSTACK-7584>`_  Cannot convert snapshot to template using Swift Secondary Storage...
+`CLOUDSTACK-7591 <https://issues.apache.org/jira/browse/CLOUDSTACK-7591>`_  Dynamic scaling doesn't work in CloudStack 4.4 with vmware...
 `CLOUDSTACK-77 <https://issues.apache.org/jira/browse/CLOUDSTACK-77>`_      console proxy display issues...
 `CLOUDSTACK-107 <https://issues.apache.org/jira/browse/CLOUDSTACK-107>`_    Network domain guest suffix is not getting programmed as part of hostnames on Gu...
 `CLOUDSTACK-237 <https://issues.apache.org/jira/browse/CLOUDSTACK-237>`_    StopVMCommand reported success in spite of failing to stop a VM which got stuck ...
@@ -93,14 +73,8 @@ Bug ID                                                                      Desc
 `CLOUDSTACK-252 <https://issues.apache.org/jira/browse/CLOUDSTACK-252>`_    UpdateNetwork Operation on a guest network that is currently using Virtual Route...
 `CLOUDSTACK-255 <https://issues.apache.org/jira/browse/CLOUDSTACK-255>`_    Null pointer exception while creating portforwarding rule after performing Updat...
 `CLOUDSTACK-317 <https://issues.apache.org/jira/browse/CLOUDSTACK-317>`_    get xcp 1.5 into an advanced network zone...
-`CLOUDSTACK-375 <https://issues.apache.org/jira/browse/CLOUDSTACK-375>`_    Unable to delete physical network - because there are other networks attached...
-`CLOUDSTACK-992 <https://issues.apache.org/jira/browse/CLOUDSTACK-992>`_    Template creations dies after 2h for no reason...
 `CLOUDSTACK-1007 <https://issues.apache.org/jira/browse/CLOUDSTACK-1007>`_  Not able to delete Shared network because of not being able to stop the router....
-`CLOUDSTACK-1091 <https://issues.apache.org/jira/browse/CLOUDSTACK-1091>`_  Fix API server's parsing mechanism for POST requests...
-`CLOUDSTACK-1092 <https://issues.apache.org/jira/browse/CLOUDSTACK-1092>`_  Fix API Server's parsing mechanism to parse GET request as multimap...
 `CLOUDSTACK-1309 <https://issues.apache.org/jira/browse/CLOUDSTACK-1309>`_  Large guest subnets downgrade performance...
-`CLOUDSTACK-1389 <https://issues.apache.org/jira/browse/CLOUDSTACK-1389>`_  Interactive Password Prompts during Management Server Startup...
-`CLOUDSTACK-1413 <https://issues.apache.org/jira/browse/CLOUDSTACK-1413>`_  Need something to concretely identify the version of the code in a particular bu...
 `CLOUDSTACK-1527 <https://issues.apache.org/jira/browse/CLOUDSTACK-1527>`_  Non-fatal POSTIN scriptlet failure in rpm package cloudstack-management-4.2.0-SN...
 `CLOUDSTACK-1717 <https://issues.apache.org/jira/browse/CLOUDSTACK-1717>`_  AWS Regions - Local region entry that gets added by default should not include "...
 `CLOUDSTACK-1885 <https://issues.apache.org/jira/browse/CLOUDSTACK-1885>`_  Broken testcases in 4.1...
@@ -126,14 +100,11 @@ Bug ID                                                                      Desc
 `CLOUDSTACK-2860 <https://issues.apache.org/jira/browse/CLOUDSTACK-2860>`_  Add new host into VMWare Cluster failed...
 `CLOUDSTACK-2910 <https://issues.apache.org/jira/browse/CLOUDSTACK-2910>`_  SC: Ctrl combinated with >. is not working of SC IME...
 `CLOUDSTACK-2911 <https://issues.apache.org/jira/browse/CLOUDSTACK-2911>`_  KO: Key translation fails for KO keyboard Right Alt, Han/Eng, Hanja keys...
-`CLOUDSTACK-2919 <https://issues.apache.org/jira/browse/CLOUDSTACK-2919>`_  Snapshot cannot be saved to full Secondary Storage, but doesn't utilize other Se...
 `CLOUDSTACK-3066 <https://issues.apache.org/jira/browse/CLOUDSTACK-3066>`_  No Error message is popped up on UI when a dedicated resource is dedicated to an...
 `CLOUDSTACK-3095 <https://issues.apache.org/jira/browse/CLOUDSTACK-3095>`_  [UI][API]Able to add multiple tier networks to a deployed VM using “Add network”...
-`CLOUDSTACK-3111 <https://issues.apache.org/jira/browse/CLOUDSTACK-3111>`_  [UI] Storage tab is not showing the Hypervisor column as 'KVM' if the (root/data...
 `CLOUDSTACK-3186 <https://issues.apache.org/jira/browse/CLOUDSTACK-3186>`_  Duplicate entries in /etc/hosts file on VR after reboot...
 `CLOUDSTACK-3195 <https://issues.apache.org/jira/browse/CLOUDSTACK-3195>`_  cannot view/delete forward rules if underlying/target VM is destroyed first...
 `CLOUDSTACK-3197 <https://issues.apache.org/jira/browse/CLOUDSTACK-3197>`_  UI: NTier: User is required to scroll down every single time to "Create Network"...
-`CLOUDSTACK-3212 <https://issues.apache.org/jira/browse/CLOUDSTACK-3212>`_  [Advanced_With_SG]View IP Address Range in Default Guest Network page does not s...
 `CLOUDSTACK-3338 <https://issues.apache.org/jira/browse/CLOUDSTACK-3338>`_  Please provide an icon for "assignVMs" action in internal LB rule detailView...
 `CLOUDSTACK-3518 <https://issues.apache.org/jira/browse/CLOUDSTACK-3518>`_  G11n: JA,SC: Un translation issue occurred on the strings of different UI Specif...
 `CLOUDSTACK-3519 <https://issues.apache.org/jira/browse/CLOUDSTACK-3519>`_  G11n: JA,SC: Un translation issue occurred on the strings of different dropdown ...
@@ -145,23 +116,17 @@ Bug ID                                                                      Desc
 `CLOUDSTACK-3579 <https://issues.apache.org/jira/browse/CLOUDSTACK-3579>`_  [DOC]CLONE - Physical Netwok traffic label update requires Management Server res...
 `CLOUDSTACK-3607 <https://issues.apache.org/jira/browse/CLOUDSTACK-3607>`_  "guest_os_hypervisor" table has values that are not registered in "guest_os" tab...
 `CLOUDSTACK-3608 <https://issues.apache.org/jira/browse/CLOUDSTACK-3608>`_  "guest_os_hypervisor" table has repeated mappings of hypervisor and guest OS...
-`CLOUDSTACK-3656 <https://issues.apache.org/jira/browse/CLOUDSTACK-3656>`_  lots of cloud-management should be changed to cloudstack-management...
 `CLOUDSTACK-3788 <https://issues.apache.org/jira/browse/CLOUDSTACK-3788>`_  [KVM] Weekly Snapshot got stuck in "Allocated State"...
 `CLOUDSTACK-3813 <https://issues.apache.org/jira/browse/CLOUDSTACK-3813>`_  "Service.provider.create" event doesnt mention about the Service Provider in the...
 `CLOUDSTACK-3880 <https://issues.apache.org/jira/browse/CLOUDSTACK-3880>`_  /sbin/poweroff et al or ACPID initiated shutdown does not stop cloudstack-[usage...
-`CLOUDSTACK-3885 <https://issues.apache.org/jira/browse/CLOUDSTACK-3885>`_  CLONE - Volume Donwload URLs should expire - functionality missing...
 `CLOUDSTACK-3952 <https://issues.apache.org/jira/browse/CLOUDSTACK-3952>`_  Persist VR nic details in DB for additional public ranges...
 `CLOUDSTACK-3973 <https://issues.apache.org/jira/browse/CLOUDSTACK-3973>`_  [GSLB] [LOGS Message] Improving logs messages for GSLB rule configuration...
 `CLOUDSTACK-4016 <https://issues.apache.org/jira/browse/CLOUDSTACK-4016>`_  [PortableIP] [VPC] listPublicIpAddresses lists the portable IP that was already ...
 `CLOUDSTACK-4139 <https://issues.apache.org/jira/browse/CLOUDSTACK-4139>`_  [VMWARE]Failed to resize the volumes which are created from snapshot of root vol...
 `CLOUDSTACK-4247 <https://issues.apache.org/jira/browse/CLOUDSTACK-4247>`_  [VMWARE]Network read/write statistics is zero always...
-`CLOUDSTACK-4475 <https://issues.apache.org/jira/browse/CLOUDSTACK-4475>`_  [ZWPS] attaching an uploaded volume to a VM is always going to first primary sto...
 `CLOUDSTACK-4517 <https://issues.apache.org/jira/browse/CLOUDSTACK-4517>`_  [upgrade][Vmware]Deployment of VM using centos 6.2 template registered before up...
 `CLOUDSTACK-4536 <https://issues.apache.org/jira/browse/CLOUDSTACK-4536>`_  [object_store_refactor] Inconsistency in volume store location on secondary stor...
-`CLOUDSTACK-4587 <https://issues.apache.org/jira/browse/CLOUDSTACK-4587>`_  VM is failing to deploy on a Legacy zone after adding zone wide primary storage ...
 `CLOUDSTACK-4593 <https://issues.apache.org/jira/browse/CLOUDSTACK-4593>`_   [VMWARE] [Upgrade]Livestorage Migration & VM Snapshot features are not fully fu...
-`CLOUDSTACK-4644 <https://issues.apache.org/jira/browse/CLOUDSTACK-4644>`_  Tool Tip information is not provided for the new fields which are added in 4.2 (...
-`CLOUDSTACK-4789 <https://issues.apache.org/jira/browse/CLOUDSTACK-4789>`_  Fix ResourceMetaDataManagerTest...
 `CLOUDSTACK-4987 <https://issues.apache.org/jira/browse/CLOUDSTACK-4987>`_  Able to add isolated network belonging to an account to a virtual machine belong...
 `CLOUDSTACK-5044 <https://issues.apache.org/jira/browse/CLOUDSTACK-5044>`_  Configuration Framework Issue...
 `CLOUDSTACK-5090 <https://issues.apache.org/jira/browse/CLOUDSTACK-5090>`_  Anti-Affinity: VM fails to start on a cluster belonging to a different pod....
@@ -169,79 +134,48 @@ Bug ID                                                                      Desc
 `CLOUDSTACK-5296 <https://issues.apache.org/jira/browse/CLOUDSTACK-5296>`_  Add certificate chain support for NS...
 `CLOUDSTACK-5307 <https://issues.apache.org/jira/browse/CLOUDSTACK-5307>`_  Same router is listed twice in router view of project...
 `CLOUDSTACK-5324 <https://issues.apache.org/jira/browse/CLOUDSTACK-5324>`_  error message not proper when start VM  fails because router reuires upgrade...
-`CLOUDSTACK-5359 <https://issues.apache.org/jira/browse/CLOUDSTACK-5359>`_  Failed to add second VMWARE cluster on a standard vSwitch enabled zone when vCen...
 `CLOUDSTACK-5395 <https://issues.apache.org/jira/browse/CLOUDSTACK-5395>`_  When backup snapshot fails becasue of backup.snapshot.wait time exceeding , the ...
 `CLOUDSTACK-5446 <https://issues.apache.org/jira/browse/CLOUDSTACK-5446>`_  KVM-Secondary Store down-Even after secondary store is brought back up after bei...
 `CLOUDSTACK-5474 <https://issues.apache.org/jira/browse/CLOUDSTACK-5474>`_  EventBus: RabbitMQ provider expects password to be stored in plain text....
 `CLOUDSTACK-5475 <https://issues.apache.org/jira/browse/CLOUDSTACK-5475>`_  cluster.cpu/(memory).allocated.capacity.disablethreshold is getting displayed mu...
 `CLOUDSTACK-5482 <https://issues.apache.org/jira/browse/CLOUDSTACK-5482>`_  Vmware - When nfs was down for about 1 hour , when snapshots were in progress , ...
 `CLOUDSTACK-5504 <https://issues.apache.org/jira/browse/CLOUDSTACK-5504>`_  Vmware-Primary store unavailable for 10 mts - All snapshot tasks reported failur...
-`CLOUDSTACK-5512 <https://issues.apache.org/jira/browse/CLOUDSTACK-5512>`_  template format name checking is crude and doesn't work with advanced URLs...
 `CLOUDSTACK-5536 <https://issues.apache.org/jira/browse/CLOUDSTACK-5536>`_  Restarting cloudstack service with template download in progress creates redunda...
-`CLOUDSTACK-5550 <https://issues.apache.org/jira/browse/CLOUDSTACK-5550>`_  UI - Api key and secret key not fully visible in user detail view....
-`CLOUDSTACK-5576 <https://issues.apache.org/jira/browse/CLOUDSTACK-5576>`_  RemoteVPNonVPC :  Label needs to be changed to "Enable Remote Access VPN"...
 `CLOUDSTACK-5583 <https://issues.apache.org/jira/browse/CLOUDSTACK-5583>`_  vmopsSnapshot plug-in (XenServer) does not return an error when it should...
 `CLOUDSTACK-5600 <https://issues.apache.org/jira/browse/CLOUDSTACK-5600>`_  Xenserver - After HA , CPVM's disk is corrupted resulting in CPVM being stuck in...
 `CLOUDSTACK-5616 <https://issues.apache.org/jira/browse/CLOUDSTACK-5616>`_  [DBHA]:There is no way to know to which DB is the CS writing in the case of DBHA...
 `CLOUDSTACK-5673 <https://issues.apache.org/jira/browse/CLOUDSTACK-5673>`_  [Hyper-V] Default IP address never configured on eth0 with default CentOS templa...
 `CLOUDSTACK-5700 <https://issues.apache.org/jira/browse/CLOUDSTACK-5700>`_  [Vmsync] - kvm- "paused" state of Vm is not synced to CS....
 `CLOUDSTACK-5719 <https://issues.apache.org/jira/browse/CLOUDSTACK-5719>`_  [UI] Not listing shared network offerings tagged on second physical network...
-`CLOUDSTACK-5724 <https://issues.apache.org/jira/browse/CLOUDSTACK-5724>`_  Console Proxy View - when using ctl c , errors seen on the console proxy view....
-`CLOUDSTACK-5744 <https://issues.apache.org/jira/browse/CLOUDSTACK-5744>`_  [Hyper-v] White screen on console window when more than two console sessions are...
-`CLOUDSTACK-5753 <https://issues.apache.org/jira/browse/CLOUDSTACK-5753>`_  [Hyper-v] ConsoleProxyLoadReportCommand does not honor the default value of cons...
-`CLOUDSTACK-5762 <https://issues.apache.org/jira/browse/CLOUDSTACK-5762>`_  [dynamic compute offerings]UI change required for select  compute offerinngs in ...
 `CLOUDSTACK-5794 <https://issues.apache.org/jira/browse/CLOUDSTACK-5794>`_  [Hyper-v] Specify username and domain name together in the username field while ...
-`CLOUDSTACK-5798 <https://issues.apache.org/jira/browse/CLOUDSTACK-5798>`_  While attaching a disk to WIN2012 VM with xencenter tools installed got error as...
 `CLOUDSTACK-5800 <https://issues.apache.org/jira/browse/CLOUDSTACK-5800>`_  While creating a VM from template (which is created based on existing newly crea...
 `CLOUDSTACK-5807 <https://issues.apache.org/jira/browse/CLOUDSTACK-5807>`_  Problem with shared datastore in VMware cluster with only one host...
 `CLOUDSTACK-5809 <https://issues.apache.org/jira/browse/CLOUDSTACK-5809>`_  Not able to deploy Vm becasue of crossing pool.storage.allocate d.capacity.disab...
 `CLOUDSTACK-5832 <https://issues.apache.org/jira/browse/CLOUDSTACK-5832>`_  Separate remote access VPN service from site 2 site vpn Service...
 `CLOUDSTACK-5834 <https://issues.apache.org/jira/browse/CLOUDSTACK-5834>`_  [upgrade]Error while collecting disk stats from : You gave an invalid object ref...
 `CLOUDSTACK-5836 <https://issues.apache.org/jira/browse/CLOUDSTACK-5836>`_  When tried to reverting back to (disk attached)quiesced vm snapshot, got error a...
-`CLOUDSTACK-5843 <https://issues.apache.org/jira/browse/CLOUDSTACK-5843>`_  registering templates/isos should be either async or changed to non-blocking...
 `CLOUDSTACK-5847 <https://issues.apache.org/jira/browse/CLOUDSTACK-5847>`_  [Hyper-V] [doc] Document creation of external vswitch for Hyper-V 2012 R2 (unlik...
-`CLOUDSTACK-5879 <https://issues.apache.org/jira/browse/CLOUDSTACK-5879>`_  Document on how to use RabbitMq event bus with spring modularisation done in 4.3...
 `CLOUDSTACK-5883 <https://issues.apache.org/jira/browse/CLOUDSTACK-5883>`_  unable to copy vmware routing template to primary storage...
-`CLOUDSTACK-5910 <https://issues.apache.org/jira/browse/CLOUDSTACK-5910>`_  mark the LDAP user as imported from LDAP...
 `CLOUDSTACK-5972 <https://issues.apache.org/jira/browse/CLOUDSTACK-5972>`_  [DOC] Service monitoring enable/disable from global setting...
-`CLOUDSTACK-5975 <https://issues.apache.org/jira/browse/CLOUDSTACK-5975>`_  Validate ICMP protocol type and codes in API layer...
-`CLOUDSTACK-5991 <https://issues.apache.org/jira/browse/CLOUDSTACK-5991>`_  [UI]Infinite scrolling should be enabled to the Ldap user add page...
-`CLOUDSTACK-5992 <https://issues.apache.org/jira/browse/CLOUDSTACK-5992>`_  [Upgrade] default values of configuraiton parameters in configuration table are ...
-`CLOUDSTACK-5999 <https://issues.apache.org/jira/browse/CLOUDSTACK-5999>`_  Virtual Router does not start if Guest VM is rebooted from CloudStack...
-`CLOUDSTACK-6039 <https://issues.apache.org/jira/browse/CLOUDSTACK-6039>`_  systemvm template for VMWare with jre7...
-`CLOUDSTACK-6043 <https://issues.apache.org/jira/browse/CLOUDSTACK-6043>`_  VMware detaching volume fails if volume has snapshots...
-`CLOUDSTACK-6045 <https://issues.apache.org/jira/browse/CLOUDSTACK-6045>`_  [GSoC] Create GUI to add primary storage based on plug-ins...
 `CLOUDSTACK-6075 <https://issues.apache.org/jira/browse/CLOUDSTACK-6075>`_  Increase the ram size for router service offering ...
-`CLOUDSTACK-6096 <https://issues.apache.org/jira/browse/CLOUDSTACK-6096>`_  Using eject on Windows will prevent attaching ISO to the instance...
 `CLOUDSTACK-6101 <https://issues.apache.org/jira/browse/CLOUDSTACK-6101>`_  Contrail:MS: Disable NAT on acquired IP results in exception...
-`CLOUDSTACK-6128 <https://issues.apache.org/jira/browse/CLOUDSTACK-6128>`_  Clean up over-permissive filesystem grants in Cloudstack...
-`CLOUDSTACK-6148 <https://issues.apache.org/jira/browse/CLOUDSTACK-6148>`_  UI for feature "Use Secondary IP Address of NIC in load balancing"...
 `CLOUDSTACK-6169 <https://issues.apache.org/jira/browse/CLOUDSTACK-6169>`_  assignVirtualMachine leaves associated tags assigned to old account...
 `CLOUDSTACK-6213 <https://issues.apache.org/jira/browse/CLOUDSTACK-6213>`_  Add new field to API @Parameter indicating if the param should be skipped from l...
 `CLOUDSTACK-6220 <https://issues.apache.org/jira/browse/CLOUDSTACK-6220>`_  Cloudstack agent fails to start due to broken init script...
-`CLOUDSTACK-6225 <https://issues.apache.org/jira/browse/CLOUDSTACK-6225>`_  resize volume fails on CentOS 6, Ubuntu 12.04...
-`CLOUDSTACK-6228 <https://issues.apache.org/jira/browse/CLOUDSTACK-6228>`_  Some action confirm dialogs show incorrect icon...
 `CLOUDSTACK-6248 <https://issues.apache.org/jira/browse/CLOUDSTACK-6248>`_  Improve getting alerts from VR to execute in parallel in case of multipleVRs...
 `CLOUDSTACK-6274 <https://issues.apache.org/jira/browse/CLOUDSTACK-6274>`_  Scope issue attaching a disk to a VM...
 `CLOUDSTACK-6320 <https://issues.apache.org/jira/browse/CLOUDSTACK-6320>`_  Upgrade 4.1.1 -> 4.3.0 OVS provider should be inserted to the physical network...
-`CLOUDSTACK-6323 <https://issues.apache.org/jira/browse/CLOUDSTACK-6323>`_  GetUser API always returns admin info...
 `CLOUDSTACK-6403 <https://issues.apache.org/jira/browse/CLOUDSTACK-6403>`_  ListApi Responses does not have "count" parameter and response arrays defined as...
 `CLOUDSTACK-6414 <https://issues.apache.org/jira/browse/CLOUDSTACK-6414>`_  [UI] UI is not allowing to create DomainAdmin User (ReferenceError: rootDomainId...
-`CLOUDSTACK-6417 <https://issues.apache.org/jira/browse/CLOUDSTACK-6417>`_  Adding the KVM host to management server is failing...
 `CLOUDSTACK-6420 <https://issues.apache.org/jira/browse/CLOUDSTACK-6420>`_  Network implement: use network stateMachine instead of explicitly setting the st...
 `CLOUDSTACK-6426 <https://issues.apache.org/jira/browse/CLOUDSTACK-6426>`_  Event Bus no longer receives events for AsyncJobs...
-`CLOUDSTACK-6448 <https://issues.apache.org/jira/browse/CLOUDSTACK-6448>`_  VPC router won't be created when a private gateway is defined. ...
 `CLOUDSTACK-6460 <https://issues.apache.org/jira/browse/CLOUDSTACK-6460>`_  Migration of CLVM volumes to another primary storage fail...
 `CLOUDSTACK-6473 <https://issues.apache.org/jira/browse/CLOUDSTACK-6473>`_  Debian 7 Virtual Router ip_conntrack_max not set at boot...
 `CLOUDSTACK-6485 <https://issues.apache.org/jira/browse/CLOUDSTACK-6485>`_  [vpc] new private gateway network is registered wrong in network table...
-`CLOUDSTACK-6486 <https://issues.apache.org/jira/browse/CLOUDSTACK-6486>`_  Isolation network creation fails when isolationMethod is set in lower case for t...
 `CLOUDSTACK-6495 <https://issues.apache.org/jira/browse/CLOUDSTACK-6495>`_  JSVC package dependancy failures during installation  of Cloudstack Agent on RHE...
 `CLOUDSTACK-6514 <https://issues.apache.org/jira/browse/CLOUDSTACK-6514>`_  VMware: Is space allocated for snapshots counted correctly?...
 `CLOUDSTACK-6515 <https://issues.apache.org/jira/browse/CLOUDSTACK-6515>`_  VMware: Only updating chain_info in volumes table when VM is started...
-`CLOUDSTACK-6562 <https://issues.apache.org/jira/browse/CLOUDSTACK-6562>`_  [Automation] [XenServer] Secondary Storage count for account shows double the va...
 `CLOUDSTACK-6591 <https://issues.apache.org/jira/browse/CLOUDSTACK-6591>`_  AddNetworkOffering Page gives DB Exception while executing listServiceOfferings ...
-`CLOUDSTACK-6623 <https://issues.apache.org/jira/browse/CLOUDSTACK-6623>`_  Register template does not work as expected, when deploying simulator and xen zo...
-`CLOUDSTACK-6634 <https://issues.apache.org/jira/browse/CLOUDSTACK-6634>`_  DOC: update the ldap section of the admin guide...
 `CLOUDSTACK-6650 <https://issues.apache.org/jira/browse/CLOUDSTACK-6650>`_  Reorder Cluster list in deployment planner to protect GPU enabled hosts from non...
 `CLOUDSTACK-6670 <https://issues.apache.org/jira/browse/CLOUDSTACK-6670>`_  A lot of "IAMServiceImpl] (main:null) Invalidate IAM cache" message in log until...
 `CLOUDSTACK-6690 <https://issues.apache.org/jira/browse/CLOUDSTACK-6690>`_  ListView while assigning VM to internal LB rule in VPC  is not valid....
@@ -251,48 +185,53 @@ Bug ID                                                                      Desc
 `CLOUDSTACK-6722 <https://issues.apache.org/jira/browse/CLOUDSTACK-6722>`_  [OVS][UI] Network created with StretchedL2Subnet is not available for vm deploye...
 `CLOUDSTACK-6724 <https://issues.apache.org/jira/browse/CLOUDSTACK-6724>`_  Generate only alert message in MS for an iteration in router vm ...
 `CLOUDSTACK-6765 <https://issues.apache.org/jira/browse/CLOUDSTACK-6765>`_  unable to create primary storage...
-`CLOUDSTACK-6787 <https://issues.apache.org/jira/browse/CLOUDSTACK-6787>`_  Event Bus - Publishing uuids missing in some cases...
 `CLOUDSTACK-6811 <https://issues.apache.org/jira/browse/CLOUDSTACK-6811>`_  Allocated capacity is greater than the total capacity for primary storage with o...
 `CLOUDSTACK-6812 <https://issues.apache.org/jira/browse/CLOUDSTACK-6812>`_  For storage type which does not support over provisioning ,over provisioning fac...
-`CLOUDSTACK-6815 <https://issues.apache.org/jira/browse/CLOUDSTACK-6815>`_  CallContext contains incorrect UUID for Account...
-`CLOUDSTACK-6826 <https://issues.apache.org/jira/browse/CLOUDSTACK-6826>`_  Ability to gracefully expire urls and clean them up when ssvm is destroyed...
 `CLOUDSTACK-6829 <https://issues.apache.org/jira/browse/CLOUDSTACK-6829>`_  [UI]If no storage is available for migrate volume UI should popup "no storage av...
+`CLOUDSTACK-6838 <https://issues.apache.org/jira/browse/CLOUDSTACK-6838>`_  Add test cases for download url expiration functionality...
 `CLOUDSTACK-6851 <https://issues.apache.org/jira/browse/CLOUDSTACK-6851>`_  ResourceTagResponse does not have "id" field due to which resource level permiss...
 `CLOUDSTACK-6860 <https://issues.apache.org/jira/browse/CLOUDSTACK-6860>`_  DataCenter creation is failing in DevCloud in 4.4,errors out with failing to ini...
-`CLOUDSTACK-6866 <https://issues.apache.org/jira/browse/CLOUDSTACK-6866>`_  First Class object hiding feature is not working for VirtualMachine and Networks...
 `CLOUDSTACK-6870 <https://issues.apache.org/jira/browse/CLOUDSTACK-6870>`_  getDomainId implementation returns invalid value at places...
-`CLOUDSTACK-6874 <https://issues.apache.org/jira/browse/CLOUDSTACK-6874>`_  automation test failures....
 `CLOUDSTACK-6881 <https://issues.apache.org/jira/browse/CLOUDSTACK-6881>`_  MS:IPv4 Incorrect IPv4 address as iptonetworklist param raises insufficient addr...
-`CLOUDSTACK-6891 <https://issues.apache.org/jira/browse/CLOUDSTACK-6891>`_  [Automation] - port 8096 is being used when executing the suite when admin’s key...
 `CLOUDSTACK-6900 <https://issues.apache.org/jira/browse/CLOUDSTACK-6900>`_  If we download a volume and then migrate the same volume, then migration fails....
-`CLOUDSTACK-6909 <https://issues.apache.org/jira/browse/CLOUDSTACK-6909>`_  Marvin fails to handle SMB credentials in deployDataCenter...
 `CLOUDSTACK-6924 <https://issues.apache.org/jira/browse/CLOUDSTACK-6924>`_  Exceptions are thrown when a data disk on local storage is attached/migrated to ...
 `CLOUDSTACK-6927 <https://issues.apache.org/jira/browse/CLOUDSTACK-6927>`_  Security group python script has several issues...
-`CLOUDSTACK-6933 <https://issues.apache.org/jira/browse/CLOUDSTACK-6933>`_  [Automation] Registering an iso fails in KVM deployment....
 `CLOUDSTACK-6937 <https://issues.apache.org/jira/browse/CLOUDSTACK-6937>`_  IAM - ROOT admin - Not able to list network owned by accounts under any domain b...
 `CLOUDSTACK-6939 <https://issues.apache.org/jira/browse/CLOUDSTACK-6939>`_  IAM - DomainAdmin - Not able to listNetwork belonging to a subdomain by passing ...
 `CLOUDSTACK-6952 <https://issues.apache.org/jira/browse/CLOUDSTACK-6952>`_  Building from Source Doc needs updating...
-`CLOUDSTACK-6969 <https://issues.apache.org/jira/browse/CLOUDSTACK-6969>`_  Data Volume Shrink operation failing with "Unexpected Exception"...
 `CLOUDSTACK-6973 <https://issues.apache.org/jira/browse/CLOUDSTACK-6973>`_  IAM - listNetworks - When Domain Admin calls listNetwork with listall=false , is...
 `CLOUDSTACK-6974 <https://issues.apache.org/jira/browse/CLOUDSTACK-6974>`_  IAM-Root Admin - When listNetwork is used with listall=false (or no listall pass...
-`CLOUDSTACK-6991 <https://issues.apache.org/jira/browse/CLOUDSTACK-6991>`_  VM does not get expunged even after waiting for 10 times the expunge interval ti...
 `CLOUDSTACK-7004 <https://issues.apache.org/jira/browse/CLOUDSTACK-7004>`_  [Automation] [KVM] Deploying a VM with rootdisksize less than the size of templa...
+`CLOUDSTACK-7011 <https://issues.apache.org/jira/browse/CLOUDSTACK-7011>`_   No logs being generated because Logs are created as root instead of cloud user...
 `CLOUDSTACK-7088 <https://issues.apache.org/jira/browse/CLOUDSTACK-7088>`_  Snapshot manager should search for guest OS including deleted...
 `CLOUDSTACK-7093 <https://issues.apache.org/jira/browse/CLOUDSTACK-7093>`_  GPU enabled VMs are always showing xen-tools as installed even though if tools a...
 `CLOUDSTACK-7094 <https://issues.apache.org/jira/browse/CLOUDSTACK-7094>`_  Update PV-tools in all the VMs in case of xenserver upgrade to avoid PV-tools er...
-`CLOUDSTACK-7153 <https://issues.apache.org/jira/browse/CLOUDSTACK-7153>`_  addNicToVirtualMachine not BaseAsyncCreate but creates an entity...
+`CLOUDSTACK-7216 <https://issues.apache.org/jira/browse/CLOUDSTACK-7216>`_  Cloudstack 4.4 on Xen 6.2 ERROR: Java process not running...
+`CLOUDSTACK-7219 <https://issues.apache.org/jira/browse/CLOUDSTACK-7219>`_  Cannot display Cluster Settings after 4.4 Upgrade...
+`CLOUDSTACK-7276 <https://issues.apache.org/jira/browse/CLOUDSTACK-7276>`_  xenserver host add error...
+`CLOUDSTACK-7298 <https://issues.apache.org/jira/browse/CLOUDSTACK-7298>`_  apt-get install cloudstack-management Ubuntu 14.04.1...
+`CLOUDSTACK-7299 <https://issues.apache.org/jira/browse/CLOUDSTACK-7299>`_  apt-get install cloudstack-management Ubuntu 14.04.1...
+`CLOUDSTACK-7325 <https://issues.apache.org/jira/browse/CLOUDSTACK-7325>`_  bug in iSCSI disconnectPhysicalDiskByPath...
+`CLOUDSTACK-7365 <https://issues.apache.org/jira/browse/CLOUDSTACK-7365>`_  Upgrading without proper systemvm template corrupt cloudstack management server...
+`CLOUDSTACK-7410 <https://issues.apache.org/jira/browse/CLOUDSTACK-7410>`_  OVS distributed routing + KVM / NameError: name 'configure_ovs_bridge_for_routin...
+`CLOUDSTACK-7411 <https://issues.apache.org/jira/browse/CLOUDSTACK-7411>`_  VM instance does not start when you use at the same time the Region level VPC an...
+`CLOUDSTACK-7412 <https://issues.apache.org/jira/browse/CLOUDSTACK-7412>`_  Can't create proper template from VM on S3 secondary storage environment...
+`CLOUDSTACK-7418 <https://issues.apache.org/jira/browse/CLOUDSTACK-7418>`_  Deleting a load balancer rule that has an SSL cert assigned to it does not delet...
+`CLOUDSTACK-7420 <https://issues.apache.org/jira/browse/CLOUDSTACK-7420>`_  Creating a stickiness policy for a load balancer rule that has protocol SSL will...
+`CLOUDSTACK-7446 <https://issues.apache.org/jira/browse/CLOUDSTACK-7446>`_  Openvswitch plugin has duplicate names...
+`CLOUDSTACK-7449 <https://issues.apache.org/jira/browse/CLOUDSTACK-7449>`_  "CloudRuntimeException: Can not see storage pool" after trying to add a new host...
+`CLOUDSTACK-7466 <https://issues.apache.org/jira/browse/CLOUDSTACK-7466>`_  VR can't assign IP to interface ethnull...
+`CLOUDSTACK-7488 <https://issues.apache.org/jira/browse/CLOUDSTACK-7488>`_  Releasing an IP address that has a LBR with a SSL certificate does not remove th...
+`CLOUDSTACK-7489 <https://issues.apache.org/jira/browse/CLOUDSTACK-7489>`_  Unable to expunge VM due to failing to revoke all static nat rules...
+`CLOUDSTACK-7512 <https://issues.apache.org/jira/browse/CLOUDSTACK-7512>`_  Failing to destroy eth0/bond0 on xenserver hv...
+`CLOUDSTACK-7592 <https://issues.apache.org/jira/browse/CLOUDSTACK-7592>`_  Dynamically Scalablity state doesn't update after restoring the VM....
 `CLOUDSTACK-124 <https://issues.apache.org/jira/browse/CLOUDSTACK-124>`_    NetworkGarbageCollector not cleaning up networks...
-`CLOUDSTACK-231 <https://issues.apache.org/jira/browse/CLOUDSTACK-231>`_    Tag creation using special charecters ...
 `CLOUDSTACK-245 <https://issues.apache.org/jira/browse/CLOUDSTACK-245>`_    VPC ACLs are not stored and programmed consistently...
-`CLOUDSTACK-270 <https://issues.apache.org/jira/browse/CLOUDSTACK-270>`_    Ui should not ask for a vlan range if the physical network isolation type is not...
-`CLOUDSTACK-300 <https://issues.apache.org/jira/browse/CLOUDSTACK-300>`_    Creation of  compute offering allow   combination of local storage + HA...
 `CLOUDSTACK-310 <https://issues.apache.org/jira/browse/CLOUDSTACK-310>`_    Failed to add host - Plugin error...
 `CLOUDSTACK-315 <https://issues.apache.org/jira/browse/CLOUDSTACK-315>`_    Infrastructure view does not show capacity values...
 `CLOUDSTACK-338 <https://issues.apache.org/jira/browse/CLOUDSTACK-338>`_    Unique Names of Disk and Service Offerings in the database are prefixed with "Cl...
 `CLOUDSTACK-458 <https://issues.apache.org/jira/browse/CLOUDSTACK-458>`_    xen:snapshots:Storage gc fail to clean the failed snapshot images from secondary...
 `CLOUDSTACK-963 <https://issues.apache.org/jira/browse/CLOUDSTACK-963>`_    [cloud.utils.AnnotationHelper]  class java.lang.Stringdoes not have a Table anno...
-`CLOUDSTACK-969 <https://issues.apache.org/jira/browse/CLOUDSTACK-969>`_    api: zone response lists vlan in it as "vlan range of zone" but the vlan belongs...
-`CLOUDSTACK-1302 <https://issues.apache.org/jira/browse/CLOUDSTACK-1302>`_  Add per storage setting for cache="none/writeback/writethrough" options for VMs ...
 `CLOUDSTACK-1306 <https://issues.apache.org/jira/browse/CLOUDSTACK-1306>`_  Better Error message when trying to deploy Vm by passing static Ipv4 addresses t...
 `CLOUDSTACK-1432 <https://issues.apache.org/jira/browse/CLOUDSTACK-1432>`_  [UI] Inconsistent field names in "Add Cluster" dialog...
 `CLOUDSTACK-1471 <https://issues.apache.org/jira/browse/CLOUDSTACK-1471>`_  Pop up window for host details/(host related operation) are not properly alligne...
@@ -301,45 +240,50 @@ Bug ID                                                                      Desc
 `CLOUDSTACK-2213 <https://issues.apache.org/jira/browse/CLOUDSTACK-2213>`_  russian language select failure...
 `CLOUDSTACK-2345 <https://issues.apache.org/jira/browse/CLOUDSTACK-2345>`_  [GSLB] deleting GSLB rules is not cleaning server info from GSLB device...
 `CLOUDSTACK-2436 <https://issues.apache.org/jira/browse/CLOUDSTACK-2436>`_  Message "You do not have any affinity groups. Please continue to the next step."...
-`CLOUDSTACK-2439 <https://issues.apache.org/jira/browse/CLOUDSTACK-2439>`_  "Domain" field under login page should be mandatory for the non root accounts....
 `CLOUDSTACK-2449 <https://issues.apache.org/jira/browse/CLOUDSTACK-2449>`_  Dropdown menu for action button scaleup System VM shows all service offering inc...
 `CLOUDSTACK-2453 <https://issues.apache.org/jira/browse/CLOUDSTACK-2453>`_  Select view dropdown under "Network" is listing the options in the absence of ad...
 `CLOUDSTACK-2464 <https://issues.apache.org/jira/browse/CLOUDSTACK-2464>`_  [GSLB][UI] "Add GSLB" wizard doesn't prompt for "PersistenceType"...
-`CLOUDSTACK-2533 <https://issues.apache.org/jira/browse/CLOUDSTACK-2533>`_  Add Network to VM dialog should only show those network in the dropdown which ar...
 `CLOUDSTACK-2535 <https://issues.apache.org/jira/browse/CLOUDSTACK-2535>`_  Cleanup port-profiles that gets created on Nexus switch as part of network clean...
 `CLOUDSTACK-2559 <https://issues.apache.org/jira/browse/CLOUDSTACK-2559>`_  [UI]Resource Name should not be present in UI as it is not available in listASA1...
 `CLOUDSTACK-2605 <https://issues.apache.org/jira/browse/CLOUDSTACK-2605>`_  Add Network to VM Command button should not be displayed for VMs  belonging to B...
 `CLOUDSTACK-2951 <https://issues.apache.org/jira/browse/CLOUDSTACK-2951>`_  [UI][Mixed-Zone-Management] during "add Instance" wizard, listTemplates API is n...
 `CLOUDSTACK-2993 <https://issues.apache.org/jira/browse/CLOUDSTACK-2993>`_  [PortableIPRange] remove some of the unused columns if they are not required fro...
-`CLOUDSTACK-3025 <https://issues.apache.org/jira/browse/CLOUDSTACK-3025>`_  The page and pagesize parameters are not working in ListCfgsByCmds with zoneid s...
 `CLOUDSTACK-3063 <https://issues.apache.org/jira/browse/CLOUDSTACK-3063>`_  [UI]Dedicating a host to  non-root domain which has instances of other domain(ro...
-`CLOUDSTACK-3101 <https://issues.apache.org/jira/browse/CLOUDSTACK-3101>`_  [DR] list* APIs are not working based on the display* flags ...
 `CLOUDSTACK-3225 <https://issues.apache.org/jira/browse/CLOUDSTACK-3225>`_  Multiple NPEs when cloudstack-management service is restarted with incomplete ta...
-`CLOUDSTACK-3265 <https://issues.apache.org/jira/browse/CLOUDSTACK-3265>`_  [Health Check for NS LB]Failure to create a lb health check policy returns a API...
+`CLOUDSTACK-3265 <https://issues.apache.org/jira/browse/CLOUDSTACK-3265>`_  [UI] [Health Check for NS LB]Failure to create a lb health check policy returns ...
 `CLOUDSTACK-3325 <https://issues.apache.org/jira/browse/CLOUDSTACK-3325>`_  [UI] [GSLB]: add text box to specify weight for each load balancer participating...
 `CLOUDSTACK-3406 <https://issues.apache.org/jira/browse/CLOUDSTACK-3406>`_  UI: ZWPS: Zone wizard: Primary storage creation failed after "fix error" in "add...
 `CLOUDSTACK-3477 <https://issues.apache.org/jira/browse/CLOUDSTACK-3477>`_  resizeDataVolume doesn't return proper error message when trying to shrink volum...
 `CLOUDSTACK-3553 <https://issues.apache.org/jira/browse/CLOUDSTACK-3553>`_  [UI]UI remains in the processing state forever when it failed to delete primary ...
-`CLOUDSTACK-3671 <https://issues.apache.org/jira/browse/CLOUDSTACK-3671>`_  Set Host, Management Network and Storage Network Properly when there are multipl...
 `CLOUDSTACK-3815 <https://issues.apache.org/jira/browse/CLOUDSTACK-3815>`_  "SNAPSHOT.CREATE" event's states are not registered on the events table ...
 `CLOUDSTACK-3895 <https://issues.apache.org/jira/browse/CLOUDSTACK-3895>`_  VM Migration across VMWARE clusters which are added with different switches(Stan...
 `CLOUDSTACK-3896 <https://issues.apache.org/jira/browse/CLOUDSTACK-3896>`_  [PrimaryStorage] deleteStoragePool is not kicking GC for the downloaded system v...
 `CLOUDSTACK-3995 <https://issues.apache.org/jira/browse/CLOUDSTACK-3995>`_  No error notification is generated when Primary storage (Zonelevel) is added wit...
 `CLOUDSTACK-4071 <https://issues.apache.org/jira/browse/CLOUDSTACK-4071>`_  [UI] - Word 'Default' is misspelled in descripiton of integration.api.port under...
 `CLOUDSTACK-4183 <https://issues.apache.org/jira/browse/CLOUDSTACK-4183>`_  [Non-Contiguous VLAN] Typos Appear in an Error Message...
-`CLOUDSTACK-4770 <https://issues.apache.org/jira/browse/CLOUDSTACK-4770>`_  Management server fails to start with "Unable to get the management server node"...
+`CLOUDSTACK-4644 <https://issues.apache.org/jira/browse/CLOUDSTACK-4644>`_  Tool Tip information is not provided for the new fields which are added in 4.2 (...
 `CLOUDSTACK-5033 <https://issues.apache.org/jira/browse/CLOUDSTACK-5033>`_  ipaddress in management-server.log and api.log are wrong if management servers i...
 `CLOUDSTACK-5309 <https://issues.apache.org/jira/browse/CLOUDSTACK-5309>`_  version number and requires upgrade fields are not displayed for routers when na...
+`CLOUDSTACK-5357 <https://issues.apache.org/jira/browse/CLOUDSTACK-5357>`_  Xenserver - Failed to create snapshot due to "unable to destroy task(com.xe nsou...
 `CLOUDSTACK-5524 <https://issues.apache.org/jira/browse/CLOUDSTACK-5524>`_  [UI]"root disk size" field should be removed from the add instance wizard since ...
+`CLOUDSTACK-5550 <https://issues.apache.org/jira/browse/CLOUDSTACK-5550>`_  UI - Api key and secret key not fully visible in user detail view....
+`CLOUDSTACK-5576 <https://issues.apache.org/jira/browse/CLOUDSTACK-5576>`_  RemoteVPNonVPC :  Label needs to be changed to "Enable Remote Access VPN"...
 `CLOUDSTACK-5885 <https://issues.apache.org/jira/browse/CLOUDSTACK-5885>`_  When process receives error, loading overlay on listView element does not disapp...
-`CLOUDSTACK-6265 <https://issues.apache.org/jira/browse/CLOUDSTACK-6265>`_  Recover/restore VM actions: Fix icon, label, and confirmation dialog...
-`CLOUDSTACK-6412 <https://issues.apache.org/jira/browse/CLOUDSTACK-6412>`_  [UI]Incorrect Field value added with host details page(Dedicated label.no)...
+`CLOUDSTACK-6378 <https://issues.apache.org/jira/browse/CLOUDSTACK-6378>`_  SSL: Fail to find the generated keystore....
 `CLOUDSTACK-6534 <https://issues.apache.org/jira/browse/CLOUDSTACK-6534>`_  Have to click in field to access VMware properties...
 `CLOUDSTACK-6576 <https://issues.apache.org/jira/browse/CLOUDSTACK-6576>`_  No Error Handling while deploying GPU unsupported instances on a GPU enabled hos...
 `CLOUDSTACK-6666 <https://issues.apache.org/jira/browse/CLOUDSTACK-6666>`_  UI search for vm's in port forward rules field does not work...
 `CLOUDSTACK-6772 <https://issues.apache.org/jira/browse/CLOUDSTACK-6772>`_  [UI]need to change popup message  fo Attach volume failure  "Unexpected exceptio...
-`CLOUDSTACK-7038 <https://issues.apache.org/jira/browse/CLOUDSTACK-7038>`_  MySQL Client RPMs not a dependency in CS Packages...
+`CLOUDSTACK-6945 <https://issues.apache.org/jira/browse/CLOUDSTACK-6945>`_  Null pointer exception when starting a VM that had its template deleted...
+`CLOUDSTACK-7324 <https://issues.apache.org/jira/browse/CLOUDSTACK-7324>`_  listAsyncJobs returns jobs with no cmd...
+`CLOUDSTACK-7342 <https://issues.apache.org/jira/browse/CLOUDSTACK-7342>`_  Fail to delete template while using Swift as Secondary Storage...
+`CLOUDSTACK-7482 <https://issues.apache.org/jira/browse/CLOUDSTACK-7482>`_  Ajax calls in mgmt UI causing log pollution...
+`CLOUDSTACK-7527 <https://issues.apache.org/jira/browse/CLOUDSTACK-7527>`_  XenServer heartbeat-script: make it reboot faster (when fencing)...
+`CLOUDSTACK-7574 <https://issues.apache.org/jira/browse/CLOUDSTACK-7574>`_  Fail to create Windows 2012r2 VM with OS type: Windows Server 2012 R2 (64-bit)...
+`CLOUDSTACK-7577 <https://issues.apache.org/jira/browse/CLOUDSTACK-7577>`_  The response of the 'deleteVolume' API command contains a wrong type ...
 `CLOUDSTACK-5522 <https://issues.apache.org/jira/browse/CLOUDSTACK-5522>`_  Need of one more column i.e., "Name" at   Home>Storage - Snapshots...
-`CLOUDSTACK-6552 <https://issues.apache.org/jira/browse/CLOUDSTACK-6552>`_  Cloudstack-Management install package creates log directory that is never used...
+`CLOUDSTACK-5762 <https://issues.apache.org/jira/browse/CLOUDSTACK-5762>`_  [dynamic compute offerings]UI change required for select  compute offerinngs in ...
 `CLOUDSTACK-6837 <https://issues.apache.org/jira/browse/CLOUDSTACK-6837>`_  Template order changes are not permanent...
+`CLOUDSTACK-7262 <https://issues.apache.org/jira/browse/CLOUDSTACK-7262>`_  Affinity Groups UI Icon is wrong...
+
 ==========================================================================  ===================================================================================


[4/8] git commit: 4.4.1: upgrade instruct,api, upgrade from 4.4.0

Posted by pd...@apache.org.
4.4.1: upgrade instruct,api, upgrade from 4.4.0


Project: http://git-wip-us.apache.org/repos/asf/cloudstack-docs-rn/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack-docs-rn/commit/c5ef6bb7
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack-docs-rn/tree/c5ef6bb7
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack-docs-rn/diff/c5ef6bb7

Branch: refs/heads/master
Commit: c5ef6bb7bf40ba4011c003129de122fcf46169e6
Parents: e2a0a87
Author: Pierre-Luc Dion <pd...@apache.org>
Authored: Sun Sep 21 09:32:13 2014 -0400
Committer: Pierre-Luc Dion <pd...@apache.org>
Committed: Sun Sep 21 09:32:13 2014 -0400

----------------------------------------------------------------------
 source/about.rst                          |   2 +-
 source/api-changes.rst                    |  57 +++-
 source/conf.py                            |   2 +-
 source/global.rst                         |  10 +-
 source/index.rst                          |   1 +
 source/upgrade/_sysvm_templates_pre43.rst | 266 +++++++++++++------
 source/upgrade/upgrade-4.4.rst            | 352 +++++++++++++++++++++++++
 7 files changed, 597 insertions(+), 93 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack-docs-rn/blob/c5ef6bb7/source/about.rst
----------------------------------------------------------------------
diff --git a/source/about.rst b/source/about.rst
index 3881217..1eb40c1 100644
--- a/source/about.rst
+++ b/source/about.rst
@@ -17,7 +17,7 @@
 What's New in |version|
 =======================
 
-CloudStack |version| includes the following new features and improvements.
+CloudStack |release| is a bugfix release and does not add new features to |version|. Here is the list of new features and improvements introduce in |version|:
 
 .. contents::
    :local:

http://git-wip-us.apache.org/repos/asf/cloudstack-docs-rn/blob/c5ef6bb7/source/api-changes.rst
----------------------------------------------------------------------
diff --git a/source/api-changes.rst b/source/api-changes.rst
index 8272287..ad003e5 100644
--- a/source/api-changes.rst
+++ b/source/api-changes.rst
@@ -14,9 +14,64 @@
    under the License.
 
 
-API Changes Introduced in |release|
+API Changes Introduced in |version|
 ===================================
 
+API Changes Introduced in |release|
+-----------------------------------
+updateSnapshotPolicy (Updates the snapshot policy.)
+
++-----------------------------------+-------------------------------------------------------------------------------------------+
+| API                               | Description                                                                               |
++===================================+===========================================================================================+
+|  updateSnapshotPolicy             |                                                                                           |
+|                                   |                                                                                           |
++-----------------------------------+-------------------------------------------------------------------------------------------+
+|  listSnapshotPolicies             | Request:                                                                                  |
+|                                   |                                                                                           |
+|                                   |   New parameters: fordisplay (optional), id (optional)                                    |
+|                                   |                                                                                           |
+|                                   |   Changed parameters: volumeid (old version - required, new version - optional)           |
+|                                   |                                                                                           |
+|                                   | Response:                                                                                 |
+|                                   |                                                                                           |
+|                                   |   New parameters: fordisplay                                                              |
+|                                   |                                                                                           |
++-----------------------------------+-------------------------------------------------------------------------------------------+
+|  getUser                          | Request:                                                                                  |
+|                                   |                                                                                           |
+|                                   |   New parameters: userapikey (required)                                                   |
+|                                   |                                                                                           |
+|                                   |   Removed parameters: apikey                                                              |
+|                                   |                                                                                           |
++-----------------------------------+-------------------------------------------------------------------------------------------+
+|  listResourceDetails              | Request:                                                                                  |
+|                                   |                                                                                           |
+|                                   |   New parameters: value (optional)                                                        |
+|                                   |                                                                                           |
++-----------------------------------+-------------------------------------------------------------------------------------------+
+|  createSnapshotPolicy             | Request:                                                                                  |
+|                                   |                                                                                           |
+|                                   |   New parameters: fordisplay (optional)                                                   |
+|                                   |                                                                                           |
+|                                   | Response:                                                                                 |
+|                                   |                                                                                           |
+|                                   |   New parameters: fordisplay                                                              |
+|                                   |                                                                                           |
++-----------------------------------+-------------------------------------------------------------------------------------------+
+|  uploadVolume                     | Request:                                                                                  |
+|                                   |                                                                                           |
+|                                   |   New parameters: diskofferingid (optional)                                               |
+|                                   |                                                                                           |
++-----------------------------------+-------------------------------------------------------------------------------------------+
+
+
+
+
+API Changes Introduced in 4.4.0
+-------------------------------
+
+
 +-----------------------------------+-------------------------------------------------------------------------------------------+
 | API                               | Description                                                                               |
 +===================================+===========================================================================================+

http://git-wip-us.apache.org/repos/asf/cloudstack-docs-rn/blob/c5ef6bb7/source/conf.py
----------------------------------------------------------------------
diff --git a/source/conf.py b/source/conf.py
index 8980e5a..b337298 100644
--- a/source/conf.py
+++ b/source/conf.py
@@ -75,7 +75,7 @@ copyright = u'2014, Apache CloudStack'
 # The short X.Y version.
 version = '4.4'
 # The full version, including alpha/beta/rc tags.
-release = '4.4.0'
+release = '4.4.1'
 
 # The language for content autogenerated by Sphinx. Refer to documentation
 # for a list of supported languages.

http://git-wip-us.apache.org/repos/asf/cloudstack-docs-rn/blob/c5ef6bb7/source/global.rst
----------------------------------------------------------------------
diff --git a/source/global.rst b/source/global.rst
index 2ad70ec..1b40228 100644
--- a/source/global.rst
+++ b/source/global.rst
@@ -19,11 +19,13 @@
 .. _CloudStack Installation Guide: http://docs.cloudstack.apache.org/projects/cloudstack-installation
 .. _CloudStack Administrator's Guide: http://docs.cloudstack.apache.org/projects/cloudstack-administration
 
-
+.. Latest version systemvm template URL
 .. |sysvm64-url-xen|    replace:: http://cloudstack.apt-get.eu/systemvm/4.4/systemvm64template-4.4.0-6-xen.vhd.bz2
 .. |sysvm64-url-kvm|    replace:: http://cloudstack.apt-get.eu/systemvm/4.4/systemvm64template-4.4.0-6-kvm.qcow2.bz2
 .. |sysvm64-url-vmware| replace:: http://cloudstack.apt-get.eu/systemvm/4.4/systemvm64template-4.4.0-6-vmware.ova
 
-.. |acs43-sysvm64-url-xen|    replace:: http://download.cloud.com/templates/4.3/systemvm64template-2014-01-14-master-xen.vhd.bz2
-.. |acs43-sysvm64-url-kvm|    replace:: http://download.cloud.com/templates/4.3/systemvm64template-2014-01-14-master-kvm.qcow2.bz2
-.. |acs43-sysvm64-url-vmware| replace:: http://download.cloud.com/templates/4.3/systemvm64template-2014-01-14-master-vmware.ova
+.. Version specific: 4.3 systemvm template URL
+.. |acs43-sysvm64-url-xen|    replace:: http://download.cloud.com/templates/4.3/systemvm64template-2014-06-23-master-xen.vhd.bz2
+.. |acs43-sysvm64-url-kvm|    replace:: http://download.cloud.com/templates/4.3/systemvm64template-2014-06-23-master-kvm.qcow2.bz2
+.. |acs43-sysvm64-url-vmware| replace:: http://download.cloud.com/templates/4.3/systemvm64template-2014-06-23-master-vmware.ova
+.. |acs43-sysvm64-url-hyperv| replace:: http://download.cloud.com/templates/4.3/systemvm64template-2014-06-23-master-hyperv.vhd.bz2

http://git-wip-us.apache.org/repos/asf/cloudstack-docs-rn/blob/c5ef6bb7/source/index.rst
----------------------------------------------------------------------
diff --git a/source/index.rst b/source/index.rst
index 0a399bb..c15f32b 100644
--- a/source/index.rst
+++ b/source/index.rst
@@ -72,6 +72,7 @@ Contents:
 .. toctree::
    :maxdepth: 1
 
+   upgrade/upgrade-4.4
    upgrade/upgrade-4.3
    upgrade/upgrade-4.2
    upgrade/upgrade-4.1

http://git-wip-us.apache.org/repos/asf/cloudstack-docs-rn/blob/c5ef6bb7/source/upgrade/_sysvm_templates_pre43.rst
----------------------------------------------------------------------
diff --git a/source/upgrade/_sysvm_templates_pre43.rst b/source/upgrade/_sysvm_templates_pre43.rst
index c79a799..c00d374 100644
--- a/source/upgrade/_sysvm_templates_pre43.rst
+++ b/source/upgrade/_sysvm_templates_pre43.rst
@@ -18,6 +18,9 @@
 Update System-VM templates
 --------------------------
 
+.. note::
+   Upgrading pre-4.3 to 4.4.1 require 2 systemvm templates downloaded: the 4.3 and 4.4.
+
 #. While running the existing |version_to_upgrade| system, log in to the UI as 
    root administrator.
 
@@ -25,96 +28,187 @@ Update System-VM templates
 
 #. In Select view, click Templates.
 
-#. Click Register template.
+#. Register 4.3 systemvm template:
+   
+   #. Click Register template.
+
+      The Register template dialog box is displayed.
 
-   The Register template dialog box is displayed.
+   #. In the Register template dialog box, specify the following values
+      (do not change these):
+   
+      +-------------------------+------------------------------------------------------------+
+      | Hypervisor              | Description                                                |
+      +=========================+============================================================+
+      | XenServer               | Name: systemvm-xenserver-4.3                               |
+      |                         |                                                            |
+      |                         | Description: systemvm-xenserver-4.3                        |
+      |                         |                                                            |
+      |                         | URL: |acs43-sysvm64-url-xen|                               |
+      |                         |                                                            |
+      |                         | Zone: Choose the zone where this hypervisor is used        |
+      |                         |                                                            |
+      |                         | Hypervisor: XenServer                                      |
+      |                         |                                                            |
+      |                         | Format: VHD                                                |
+      |                         |                                                            |
+      |                         | OS Type: Debian GNU/Linux 7.0 (64-bit) (or the             |
+      |                         | highest Debian release number available in the             |
+      |                         | dropdown)                                                  |
+      |                         |                                                            |
+      |                         | Extractable: no                                            |
+      |                         |                                                            |
+      |                         | Password Enabled: no                                       |
+      |                         |                                                            |
+      |                         | Public: no                                                 |
+      |                         |                                                            |
+      |                         | Featured: no                                               |
+      |                         |                                                            |
+      |                         | Routing: no                                                |
+      +-------------------------+------------------------------------------------------------+
+      | KVM                     | Name: systemvm-kvm-4.3                                     |
+      |                         |                                                            |
+      |                         | Description: systemvm-kvm-4.3                              |
+      |                         |                                                            |
+      |                         | URL: |acs43-sysvm64-url-kvm|                               |  
+      |                         |                                                            |
+      |                         | Zone: Choose the zone where this hypervisor is used        |
+      |                         |                                                            |
+      |                         | Hypervisor: KVM                                            |
+      |                         |                                                            |
+      |                         | Format: QCOW2                                              |
+      |                         |                                                            |
+      |                         | OS Type: Debian GNU/Linux 7.0 (64-bit) (or the             |
+      |                         | highest Debian release number available in the             |
+      |                         | dropdown)                                                  |
+      |                         |                                                            |
+      |                         | Extractable: no                                            |
+      |                         |                                                            |
+      |                         | Password Enabled: no                                       |
+      |                         |                                                            |
+      |                         | Public: no                                                 |
+      |                         |                                                            |
+      |                         | Featured: no                                               |
+      |                         |                                                            |
+      |                         | Routing: no                                                |
+      +-------------------------+------------------------------------------------------------+
+      | VMware                  | Name: systemvm-vmware-4.3                                  |
+      |                         |                                                            |
+      |                         | Description: systemvm-vmware-4.3                           |
+      |                         |                                                            |
+      |                         | URL: |acs43-sysvm64-url-vmware|                            |
+      |                         |                                                            |
+      |                         | Zone: Choose the zone where this hypervisor is used        |
+      |                         |                                                            |
+      |                         | Hypervisor: VMware                                         |
+      |                         |                                                            |
+      |                         | Format: OVA                                                |
+      |                         |                                                            |
+      |                         | OS Type: Debian GNU/Linux 7.0 (64-bit) (or the             |
+      |                         | highest Debian release number available in the             |
+      |                         | dropdown)                                                  |
+      |                         |                                                            |
+      |                         | Extractable: no                                            |
+      |                         |                                                            |
+      |                         | Password Enabled: no                                       |
+      |                         |                                                            |
+      |                         | Public: no                                                 |
+      |                         |                                                            |
+      |                         | Featured: no                                               |
+      |                         |                                                            |
+      |                         | Routing: no                                                |
+      +-------------------------+------------------------------------------------------------+
 
-#. In the Register template dialog box, specify the following values
-   (do not change these):
+#. Register |version| systemvm template:
+   
+   #. Click Register template.
 
-   *The name of the template must end by "-4.3" when you upgrade to CloudStack 4.4.0*
+      The Register template dialog box is displayed.
 
-   +-------------------------+------------------------------------------------------------+
-   | Hypervisor              | Description                                                |
-   +=========================+============================================================+
-   | XenServer               | Name: systemvm-xenserver-4.3                               |
-   |                         |                                                            |
-   |                         | Description: systemvm-xenserver-4.3                        |
-   |                         |                                                            |
-   |                         | URL: |sysvm64-url-xen|                                     |
-   |                         |                                                            |
-   |                         | Zone: Choose the zone where this hypervisor is used        |
-   |                         |                                                            |
-   |                         | Hypervisor: XenServer                                      |
-   |                         |                                                            |
-   |                         | Format: VHD                                                |
-   |                         |                                                            |
-   |                         | OS Type: Debian GNU/Linux 7.0 (64-bit) (or the             |
-   |                         | highest Debian release number available in the             |
-   |                         | dropdown)                                                  |
-   |                         |                                                            |
-   |                         | Extractable: no                                            |
-   |                         |                                                            |
-   |                         | Password Enabled: no                                       |
-   |                         |                                                            |
-   |                         | Public: no                                                 |
-   |                         |                                                            |
-   |                         | Featured: no                                               |
-   |                         |                                                            |
-   |                         | Routing: no                                                |
-   +-------------------------+------------------------------------------------------------+
-   | KVM                     | Name: systemvm-kvm-4.3                                     |
-   |                         |                                                            |
-   |                         | Description: systemvm-kvm-4.3                              |
-   |                         |                                                            |
-   |                         | URL: |sysvm64-url-kvm|                                     |  
-   |                         |                                                            |
-   |                         | Zone: Choose the zone where this hypervisor is used        |
-   |                         |                                                            |
-   |                         | Hypervisor: KVM                                            |
-   |                         |                                                            |
-   |                         | Format: QCOW2                                              |
-   |                         |                                                            |
-   |                         | OS Type: Debian GNU/Linux 7.0 (64-bit) (or the             |
-   |                         | highest Debian release number available in the             |
-   |                         | dropdown)                                                  |
-   |                         |                                                            |
-   |                         | Extractable: no                                            |
-   |                         |                                                            |
-   |                         | Password Enabled: no                                       |
-   |                         |                                                            |
-   |                         | Public: no                                                 |
-   |                         |                                                            |
-   |                         | Featured: no                                               |
-   |                         |                                                            |
-   |                         | Routing: no                                                |
-   +-------------------------+------------------------------------------------------------+
-   | VMware                  | Name: systemvm-vmware-4.3                                  |
-   |                         |                                                            |
-   |                         | Description: systemvm-vmware-4.3                           |
-   |                         |                                                            |
-   |                         | URL: |sysvm64-url-vmware|                                  |
-   |                         |                                                            |
-   |                         | Zone: Choose the zone where this hypervisor is used        |
-   |                         |                                                            |
-   |                         | Hypervisor: VMware                                         |
-   |                         |                                                            |
-   |                         | Format: OVA                                                |
-   |                         |                                                            |
-   |                         | OS Type: Debian GNU/Linux 7.0 (64-bit) (or the             |
-   |                         | highest Debian release number available in the             |
-   |                         | dropdown)                                                  |
-   |                         |                                                            |
-   |                         | Extractable: no                                            |
-   |                         |                                                            |
-   |                         | Password Enabled: no                                       |
-   |                         |                                                            |
-   |                         | Public: no                                                 |
-   |                         |                                                            |
-   |                         | Featured: no                                               |
-   |                         |                                                            |
-   |                         | Routing: no                                                |
-   +-------------------------+------------------------------------------------------------+
+   #. In the Register template dialog box, specify the following values
+      (do not change these):
+      
+      +-------------------------+------------------------------------------------------------+
+      | Hypervisor              | Description                                                |
+      +=========================+============================================================+
+      | XenServer               | Name: systemvm-xenserver-|version|                         |
+      |                         |                                                            |
+      |                         | Description: systemvm-xenserver-|version|                  |
+      |                         |                                                            |
+      |                         | URL: |sysvm64-url-xen|                                     |
+      |                         |                                                            |
+      |                         | Zone: Choose the zone where this hypervisor is used        |
+      |                         |                                                            |
+      |                         | Hypervisor: XenServer                                      |
+      |                         |                                                            |
+      |                         | Format: VHD                                                |
+      |                         |                                                            |
+      |                         | OS Type: Debian GNU/Linux 7.0 (64-bit) (or the             |
+      |                         | highest Debian release number available in the             |
+      |                         | dropdown)                                                  |
+      |                         |                                                            |
+      |                         | Extractable: no                                            |
+      |                         |                                                            |
+      |                         | Password Enabled: no                                       |
+      |                         |                                                            |
+      |                         | Public: no                                                 |
+      |                         |                                                            |
+      |                         | Featured: no                                               |
+      |                         |                                                            |
+      |                         | Routing: no                                                |
+      +-------------------------+------------------------------------------------------------+
+      | KVM                     | Name: systemvm-kvm-|version|                               |
+      |                         |                                                            |
+      |                         | Description: systemvm-kvm-|version|                        |
+      |                         |                                                            |
+      |                         | URL: |sysvm64-url-kvm|                                     |  
+      |                         |                                                            |
+      |                         | Zone: Choose the zone where this hypervisor is used        |
+      |                         |                                                            |
+      |                         | Hypervisor: KVM                                            |
+      |                         |                                                            |
+      |                         | Format: QCOW2                                              |
+      |                         |                                                            |
+      |                         | OS Type: Debian GNU/Linux 7.0 (64-bit) (or the             |
+      |                         | highest Debian release number available in the             |
+      |                         | dropdown)                                                  |
+      |                         |                                                            |
+      |                         | Extractable: no                                            |
+      |                         |                                                            |
+      |                         | Password Enabled: no                                       |
+      |                         |                                                            |
+      |                         | Public: no                                                 |
+      |                         |                                                            |
+      |                         | Featured: no                                               |
+      |                         |                                                            |
+      |                         | Routing: no                                                |
+      +-------------------------+------------------------------------------------------------+
+      | VMware                  | Name: systemvm-vmware-|version|                            |
+      |                         |                                                            |
+      |                         | Description: systemvm-vmware-|version|                     |
+      |                         |                                                            |
+      |                         | URL: |sysvm64-url-vmware|                                  |
+      |                         |                                                            |
+      |                         | Zone: Choose the zone where this hypervisor is used        |
+      |                         |                                                            |
+      |                         | Hypervisor: VMware                                         |
+      |                         |                                                            |
+      |                         | Format: OVA                                                |
+      |                         |                                                            |
+      |                         | OS Type: Debian GNU/Linux 7.0 (64-bit) (or the             |
+      |                         | highest Debian release number available in the             |
+      |                         | dropdown)                                                  |
+      |                         |                                                            |
+      |                         | Extractable: no                                            |
+      |                         |                                                            |
+      |                         | Password Enabled: no                                       |
+      |                         |                                                            |
+      |                         | Public: no                                                 |
+      |                         |                                                            |
+      |                         | Featured: no                                               |
+      |                         |                                                            |
+      |                         | Routing: no                                                |
+      +-------------------------+------------------------------------------------------------+
 
 #. Watch the screen to be sure that the template downloads successfully and 
    enters the **READY** state. Do not proceed until this is successful.

http://git-wip-us.apache.org/repos/asf/cloudstack-docs-rn/blob/c5ef6bb7/source/upgrade/upgrade-4.4.rst
----------------------------------------------------------------------
diff --git a/source/upgrade/upgrade-4.4.rst b/source/upgrade/upgrade-4.4.rst
new file mode 100644
index 0000000..fe867d9
--- /dev/null
+++ b/source/upgrade/upgrade-4.4.rst
@@ -0,0 +1,352 @@
+.. Licensed to the Apache Software Foundation (ASF) under one
+   or more contributor license agreements.  See the NOTICE file
+   distributed with this work for additional information#
+   regarding copyright ownership.  The ASF licenses this file
+   to you 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.
+
+
+.. |version_to_upgrade| replace:: 4.4.0
+
+Upgrade Instruction from |version_to_upgrade|
+=============================================
+
+
+Any steps that are hypervisor-specific will be called out with a note.
+
+We recommend reading through this section once or twice before beginning
+your upgrade procedure, and working through it on a test system before
+working on a production system.
+
+.. note:: 
+   The following upgrade instructions should be performed regardless of 
+   hypervisor type.
+
+Upgrade Steps:
+
+#. Backup CloudStack database (MySQL)
+
+#. Upgrade CloudStack management server(s)
+
+#. Update hypervisors specific dependencies
+
+
+Packages repository
+-------------------
+
+
+Most users of CloudStack manage the installation and upgrades of
+CloudStack with one of Linux's predominant package systems, RPM or
+APT. This guide assumes you'll be using RPM and Yum (for Red Hat
+Enterprise Linux or CentOS), or APT and Debian packages (for Ubuntu).
+
+Create RPM or Debian packages (as appropriate) and a repository from
+the |version| source, or check the Apache CloudStack downloads page at
+http://cloudstack.apache.org/downloads.html
+for package repositories supplied by community members. You will need
+them for :ref:`ubuntu43` or :ref:`rhel43` and :ref:`kvm43` hosts upgrade. 
+
+Instructions for creating packages from the CloudStack source are in the 
+`CloudStack Installation Guide`_.
+
+.. include:: _sysvm_templates.rst
+
+
+Database Preparation
+--------------------
+
+
+Backup current database
+
+#. Stop your management server or servers. Run this on all management
+   server hosts:
+
+   .. sourcecode:: bash
+
+      $ sudo service cloudstack-management stop
+
+#. If you are running a usage server or usage servers, stop those as well:
+
+   .. sourcecode:: bash
+
+      $ sudo service cloudstack-usage stop
+
+#. Make a backup of your MySQL database. If you run into any issues or
+   need to roll back the upgrade, this will assist in debugging or
+   restoring your existing environment. You'll be prompted for your
+   password.
+
+   .. sourcecode:: bash
+
+      $ mysqldump -u root -p cloud > cloud-backup_`date '+%Y-%m-%d'`.sql
+      $ mysqldump -u root -p cloud_usage > cloud_usage-backup_`date '+%Y-%m-%d'`.sql
+
+#. **(KVM Only)** If primary storage of type local storage is in use, the
+   path for this storage needs to be verified to ensure it passes new
+   validation. Check local storage by querying the cloud.storage\_pool
+   table:
+
+   .. sourcecode:: bash
+
+      $ mysql -u cloud -p -e "select id,name,path from cloud.storage_pool where pool_type='Filesystem'"
+
+   If local storage paths are found to have a trailing forward slash,
+   remove it:
+
+   .. sourcecode:: bash
+
+      $ mysql -u cloud -p -e 'update cloud.storage_pool set path="/var/lib/libvirt/images" where path="/var/lib/libvirt/images/"';
+
+
+.. _ubuntu44:
+
+Management Server on Ubuntu
+---------------------------
+
+
+If you are using Ubuntu, follow this procedure to upgrade your packages. If 
+not, skip to step :ref:`rhel44`.
+
+.. note:: 
+   **Community Packages:** This section assumes you're using the community 
+   supplied packages for CloudStack. If you've created your own packages and 
+   APT repository, substitute your own URL for the ones used in these examples.
+
+The first order of business will be to change the sources list for
+each system with CloudStack packages. This means all management
+servers, and any hosts that have the KVM agent. (No changes should
+be necessary for hosts that are running VMware or Xen.)
+
+
+.. _apt-repo44:
+
+CloudStack apt repository
+^^^^^^^^^^^^^^^^^^^^^^^^^
+
+
+#. Update your apt package list:
+
+   .. sourcecode:: bash
+
+      $ sudo apt-get update
+
+#. Now that you have the repository configured, it's time to upgrade
+   the ``cloudstack-management`` package. 
+
+   .. sourcecode:: bash
+
+      $ sudo apt-get upgrade cloudstack-management
+
+#. If you use CloudStack usage server
+
+   .. sourcecode:: bash
+
+      $ sudo apt-get upgrade cloudstack-usage
+
+
+.. _rhel44:
+
+Management Server on CentOS/RHEL
+--------------------------------
+
+If you are using CentOS or RHEL, follow this procedure to upgrade your 
+packages. If not, skip to hypervisors section, then :ref:`upg-sysvm44`.
+
+.. note:: 
+   **Community Packages:** This section assumes you're using the community 
+   supplied packages for CloudStack. If you've created your own packages and 
+   yum repository, substitute your own URL for the ones used in these examples.
+
+
+.. _rpm-repo44:
+
+CloustStack RPM repository
+^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+
+#. Now that you have the repository configured, it's time to upgrade the 
+   ``cloudstack-management``.
+
+   .. sourcecode:: bash
+
+      $ sudo yum upgrade cloudstack-management
+
+#. If you use CloudStack usage server
+
+   .. sourcecode:: bash
+
+      $ sudo yum upgrade cloudstack-usage
+
+
+hypervisor: XenServer
+---------------------
+
+   **(XenServer only)** Copy vhd-utils file on CloudStack management servers.
+   Copy the file `vhd-utils <http://download.cloud.com.s3.amazonaws.com/tools/vhd-util>`_ 
+   to ``/usr/share/cloudstack-common/scripts/vm/hypervisor/xenserver``.
+
+   .. sourcecode:: bash
+
+      wget -P /usr/share/cloudstack-common/scripts/vm/hypervisor/xenserver \
+      http://download.cloud.com.s3.amazonaws.com/tools/vhd-util
+
+
+hypervisor: VMware
+------------------
+
+   .. warning::
+      For VMware hypervisor CloudStack management server packages must be 
+      build using "noredist". Refer to `Building from Source 
+      <http://docs.cloudstack.apache.org/projects/cloudstack-installation/en/latest/building_from_source.html>`_.
+
+   **(VMware only)** Additional steps are required for each VMware cluster.
+   These steps will not affect running guests in the cloud. These steps
+   are required only for clouds using VMware clusters:
+
+#. Stop the Management Server:
+
+   .. sourcecode:: bash
+
+      $ sudo service cloudstack-management stop
+
+#. Generate the encrypted equivalent of your vCenter password:
+
+   .. sourcecode:: bash
+
+      $ java -classpath /usr/share/cloudstack-common/lib/jasypt-1.9.0.jar org.jasypt.intf.cli.JasyptPBEStringEncryptionCLI encrypt.sh input="_your_vCenter_password_" password="`cat /etc/cloudstack/management/key`" verbose=false
+
+   Store the output from this step, we need to add this in
+   cluster\_details table and vmware\_data\_center tables in place of
+   the plain text password
+
+#. Find the ID of the row of cluster\_details table that you have to
+   update:
+
+   .. sourcecode:: bash
+
+      $ mysql -u <username> -p<password>
+
+   .. sourcecode:: bash
+
+      select * from cloud.cluster_details;
+
+#. Update the plain text password with the encrypted one
+
+   .. sourcecode:: bash
+
+      update cloud.cluster_details set value = '_ciphertext_from_step_1_' where id = _id_from_step_2_;
+
+#. Confirm that the table is updated:
+
+   .. sourcecode:: bash
+
+      select * from cloud.cluster_details;
+
+#. Find the ID of the correct row of vmware\_data\_center that you
+   want to update
+
+   .. sourcecode:: bash
+
+      select * from cloud.vmware_data_center;
+
+#. update the plain text password with the encrypted one:
+
+   .. sourcecode:: bash
+
+      update cloud.vmware_data_center set password = '_ciphertext_from_step_1_' where id = _id_from_step_5_;
+
+#. Confirm that the table is updated:
+
+   .. sourcecode:: bash
+
+      select * from cloud.vmware_data_center;
+
+
+.. _kvm44:
+
+hypervisor: KVM
+---------------
+
+KVM on Ubuntu
+^^^^^^^^^^^^^
+
+(KVM only) Additional steps are required for each KVM host. These
+steps will not affect running guests in the cloud. These steps are
+required only for clouds using KVM as hosts and only on the KVM
+hosts.
+
+#. Configure the :ref:`apt-repo44` as detailed above.
+
+#. Stop the running agent.
+
+   .. sourcecode:: bash
+
+      $ sudo service cloudstack-agent stop
+
+#. Update the agent software.
+
+   .. sourcecode:: bash
+
+      $ sudo apt-get upgrade cloudstack-agent
+
+#. Verify that the file ``/etc/cloudstack/agent/environment.properties`` has a 
+   line that reads:
+
+   .. sourcecode:: bash
+
+      paths.script=/usr/share/cloudstack-common
+
+   If not, add the line.
+
+#. Start the agent.
+
+   .. sourcecode:: bash
+
+      $ sudo service cloudstack-agent start
+
+
+KVM on CentOS/RHEL
+^^^^^^^^^^^^^^^^^^
+For KVM hosts, upgrade the ``cloudstack-agent`` package
+
+#. Configure the :ref:`rpm-repo44` as detailed above.
+
+   .. sourcecode:: bash
+
+      $ sudo yum upgrade cloudstack-agent
+
+#. Verify that the file ``/etc/cloudstack/agent/environment.properties`` has a 
+   line that reads:
+
+   .. sourcecode:: bash
+
+      paths.script=/usr/share/cloudstack-common
+
+   If not, add the line.
+
+#. Restart the agent:
+
+   .. sourcecode:: bash
+
+      $ sudo service cloudstack-agent stop
+      $ sudo killall jsvc
+      $ sudo service cloudstack-agent start
+
+
+.. _upg-sysvm44:
+
+System-VMs and Virtual-Routers
+------------------------------
+
+.. include:: _sysvm_restart.rst
+
+
+.. include:: /global.rst


[8/8] git commit: Merge branch '4.4'

Posted by pd...@apache.org.
Merge branch '4.4'


Project: http://git-wip-us.apache.org/repos/asf/cloudstack-docs-rn/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack-docs-rn/commit/24b2816d
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack-docs-rn/tree/24b2816d
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack-docs-rn/diff/24b2816d

Branch: refs/heads/master
Commit: 24b2816dd3d8e7ebc711720dd7c1e3ed3d207214
Parents: f384d63 36b100c
Author: Pierre-Luc Dion <pd...@apache.org>
Authored: Sun Sep 21 10:06:49 2014 -0400
Committer: Pierre-Luc Dion <pd...@apache.org>
Committed: Sun Sep 21 10:06:49 2014 -0400

----------------------------------------------------------------------
 source/about.rst                          |   2 +-
 source/api-changes.rst                    |  57 +++-
 source/conf.py                            |   2 +-
 source/fixed_issues.rst                   | 154 ++---------
 source/global.rst                         |  10 +-
 source/index.rst                          |   1 +
 source/known_issues.rst                   | 158 ++++-------
 source/upgrade/_sysvm_templates_pre43.rst | 266 +++++++++++++------
 source/upgrade/upgrade-4.4.rst            | 352 +++++++++++++++++++++++++
 9 files changed, 667 insertions(+), 335 deletions(-)
----------------------------------------------------------------------



[5/8] git commit: jira.py: add authentication now required by https://issues.apache.org/jira

Posted by pd...@apache.org.
jira.py: add authentication now required by https://issues.apache.org/jira


Project: http://git-wip-us.apache.org/repos/asf/cloudstack-docs-rn/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack-docs-rn/commit/f958ef01
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack-docs-rn/tree/f958ef01
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack-docs-rn/diff/f958ef01

Branch: refs/heads/master
Commit: f958ef0179f72adb4b8c7243fc30395de1c31d6b
Parents: 93268e7
Author: Pierre-Luc Dion <pd...@apache.org>
Authored: Sat Sep 20 11:02:54 2014 -0400
Committer: Pierre-Luc Dion <pd...@apache.org>
Committed: Sun Sep 21 09:35:33 2014 -0400

----------------------------------------------------------------------
 utils/jira.py | 39 +++++++++++++++++++++++++++++++--------
 1 file changed, 31 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack-docs-rn/blob/f958ef01/utils/jira.py
----------------------------------------------------------------------
diff --git a/utils/jira.py b/utils/jira.py
index c4b931d..e843cba 100755
--- a/utils/jira.py
+++ b/utils/jira.py
@@ -14,25 +14,48 @@
 # KIND, either express or implied.  See the License for the
 # specific language governing permissions and limitations
 # under the License.
- 
+"""jira.py: Output jira issues from https://issues.apache.org/jira into RST format for Apche CloudStack Release-Notes.
+
+Usage:
+  jira.py FILTERID -p USERNAME -u PASSWORD
+  jira.py (-h | --help)
+  jira.py --version
+
+Options:
+  -h --help     Show this screen.
+  --version     Show version.
+
+"""
+from docopt import docopt
 import requests
 import json
 import sys
 import pprint
- 
-filterid=str(sys.argv[1])
-filterurl='https://issues.apache.org/jira/rest/api/2/filter/' + filterid
- 
-r=requests.get(filterurl)
+
+
+if __name__ == '__main__':
+    arguments = docopt(__doc__, version='jira.py 2.0')
+    #print(arguments)
+
+#print arguments['FILTERID']
+#print arguments['PASSWORD']
+#print arguments['USERNAME']
+
+filterurl='https://issues.apache.org/jira/rest/api/2/filter/' + arguments['FILTERID']
+
+
+r=requests.get(filterurl, auth=(arguments['USERNAME'],arguments['PASSWORD']))
 rlist=r.json()['searchUrl']
 
-count=requests.get(rlist).json()['total']
+get_all=requests.get(rlist, auth=(arguments['USERNAME'],arguments['PASSWORD'])).json()
+count=get_all['total']
 
+#print count
 n, m = divmod(count, 50)
 
 for i in range(n+1):
 
-    issueslist=requests.get(rlist+'&startAt='+str(i*50)).json()['issues']
+    issueslist=get_all['issues']
 
     for issue in issueslist:
         '''assignee=issue['fields']['assignee']['displayName']


[2/8] git commit: jira.py: fix loop issue

Posted by pd...@apache.org.
jira.py: fix loop issue


Project: http://git-wip-us.apache.org/repos/asf/cloudstack-docs-rn/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack-docs-rn/commit/42bfa9c5
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack-docs-rn/tree/42bfa9c5
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack-docs-rn/diff/42bfa9c5

Branch: refs/heads/master
Commit: 42bfa9c571b02a6583b8f8fa8fe18097deee5377
Parents: f36e300
Author: Pierre-Luc Dion <pd...@apache.org>
Authored: Sat Sep 20 11:29:48 2014 -0400
Committer: Pierre-Luc Dion <pd...@apache.org>
Committed: Sat Sep 20 11:29:48 2014 -0400

----------------------------------------------------------------------
 utils/jira.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack-docs-rn/blob/42bfa9c5/utils/jira.py
----------------------------------------------------------------------
diff --git a/utils/jira.py b/utils/jira.py
index e843cba..1f668df 100755
--- a/utils/jira.py
+++ b/utils/jira.py
@@ -55,7 +55,7 @@ n, m = divmod(count, 50)
 
 for i in range(n+1):
 
-    issueslist=get_all['issues']
+    issueslist=requests.get(rlist+'&startAt='+str(i*50), auth=(arguments['USERNAME'],arguments['PASSWORD'])).json()['issues']
 
     for issue in issueslist:
         '''assignee=issue['fields']['assignee']['displayName']


[6/8] git commit: jira.py: fix loop issue

Posted by pd...@apache.org.
jira.py: fix loop issue


Project: http://git-wip-us.apache.org/repos/asf/cloudstack-docs-rn/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack-docs-rn/commit/70ec1a4c
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack-docs-rn/tree/70ec1a4c
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack-docs-rn/diff/70ec1a4c

Branch: refs/heads/master
Commit: 70ec1a4cf35bb5caff31428bee6d1edf4811ea3e
Parents: f958ef0
Author: Pierre-Luc Dion <pd...@apache.org>
Authored: Sat Sep 20 11:29:48 2014 -0400
Committer: Pierre-Luc Dion <pd...@apache.org>
Committed: Sun Sep 21 09:35:38 2014 -0400

----------------------------------------------------------------------
 utils/jira.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack-docs-rn/blob/70ec1a4c/utils/jira.py
----------------------------------------------------------------------
diff --git a/utils/jira.py b/utils/jira.py
index e843cba..1f668df 100755
--- a/utils/jira.py
+++ b/utils/jira.py
@@ -55,7 +55,7 @@ n, m = divmod(count, 50)
 
 for i in range(n+1):
 
-    issueslist=get_all['issues']
+    issueslist=requests.get(rlist+'&startAt='+str(i*50), auth=(arguments['USERNAME'],arguments['PASSWORD'])).json()['issues']
 
     for issue in issueslist:
         '''assignee=issue['fields']['assignee']['displayName']


[7/8] git commit: Merge branch '4.4.1' into 4.4

Posted by pd...@apache.org.
Merge branch '4.4.1' into 4.4


Project: http://git-wip-us.apache.org/repos/asf/cloudstack-docs-rn/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack-docs-rn/commit/36b100c8
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack-docs-rn/tree/36b100c8
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack-docs-rn/diff/36b100c8

Branch: refs/heads/master
Commit: 36b100c8982f5f0f6d3c4b3d9de6c34ce516b3e9
Parents: 70ec1a4 c5ef6bb
Author: Pierre-Luc Dion <pd...@apache.org>
Authored: Sun Sep 21 09:50:27 2014 -0400
Committer: Pierre-Luc Dion <pd...@apache.org>
Committed: Sun Sep 21 09:50:27 2014 -0400

----------------------------------------------------------------------
 source/about.rst                          |   4 +-
 source/api-changes.rst                    |  57 +++-
 source/conf.py                            |   2 +-
 source/fixed_issues.rst                   | 154 ++---------
 source/global.rst                         |  10 +-
 source/index.rst                          |   1 +
 source/known_issues.rst                   | 158 ++++-------
 source/upgrade/_sysvm_templates_pre43.rst | 266 +++++++++++++------
 source/upgrade/upgrade-4.3.rst            |   8 +-
 source/upgrade/upgrade-4.4.rst            | 352 +++++++++++++++++++++++++
 source/upgrade/upgrade_notes.rst          |   2 +-
 11 files changed, 673 insertions(+), 341 deletions(-)
----------------------------------------------------------------------