Compare commits
	
		
			2 Commits
		
	
	
		
			35f5219916
			...
			0b8d26081b
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 0b8d26081b | |||
| f076554b15 | 
@@ -1,5 +1,10 @@
 | 
			
		||||
## PVC Changelog
 | 
			
		||||
 | 
			
		||||
###### [v0.9.60](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.60)
 | 
			
		||||
 | 
			
		||||
  * [Provisioner] Cleans up several remaining bugs in the example scripts; they should all be valid now
 | 
			
		||||
  * [Provisioner] Adjust default libvirt schema to disable RBD caching for a 2x+ performance boost
 | 
			
		||||
 | 
			
		||||
###### [v0.9.59](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.59)
 | 
			
		||||
 | 
			
		||||
  * [API] Flips the mem(prov) and mem(free) selectors making mem(free) the default for "mem" and "memprov" explicit
 | 
			
		||||
 
 | 
			
		||||
@@ -27,7 +27,7 @@ from ssl import SSLContext, TLSVersion
 | 
			
		||||
from distutils.util import strtobool as dustrtobool
 | 
			
		||||
 | 
			
		||||
# Daemon version
 | 
			
		||||
version = "0.9.59"
 | 
			
		||||
version = "0.9.60"
 | 
			
		||||
 | 
			
		||||
# API version
 | 
			
		||||
API_VERSION = 1.0
 | 
			
		||||
 
 | 
			
		||||
@@ -100,7 +100,7 @@ devices_scsi_controller = """    <controller type='scsi' index='0' model='virtio
 | 
			
		||||
#  * vm_name
 | 
			
		||||
#  * disk_id
 | 
			
		||||
devices_disk_header = """    <disk type='network' device='disk'>
 | 
			
		||||
      <driver name='qemu' discard='unmap'/>
 | 
			
		||||
      <driver name='qemu' discard='unmap' cache='none'/>
 | 
			
		||||
      <target dev='{disk_id}' bus='scsi'/>
 | 
			
		||||
      <auth username='libvirt'>
 | 
			
		||||
        <secret type='ceph' uuid='{ceph_storage_secret}'/>
 | 
			
		||||
 
 | 
			
		||||
@@ -2,7 +2,7 @@ from setuptools import setup
 | 
			
		||||
 | 
			
		||||
setup(
 | 
			
		||||
    name="pvc",
 | 
			
		||||
    version="0.9.59",
 | 
			
		||||
    version="0.9.60",
 | 
			
		||||
    packages=["pvc", "pvc.cli_lib"],
 | 
			
		||||
    install_requires=[
 | 
			
		||||
        "Click",
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										7
									
								
								debian/changelog
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										7
									
								
								debian/changelog
									
									
									
									
										vendored
									
									
								
							@@ -1,3 +1,10 @@
 | 
			
		||||
pvc (0.9.60-0) unstable; urgency=high
 | 
			
		||||
 | 
			
		||||
  * [Provisioner] Cleans up several remaining bugs in the example scripts; they should all be valid now
 | 
			
		||||
  * [Provisioner] Adjust default libvirt schema to disable RBD caching for a 2x+ performance boost
 | 
			
		||||
 | 
			
		||||
 -- Joshua M. Boniface <joshua@boniface.me>  Tue, 06 Dec 2022 15:42:55 -0500
 | 
			
		||||
 | 
			
		||||
pvc (0.9.59-0) unstable; urgency=high
 | 
			
		||||
 | 
			
		||||
  * [API] Flips the mem(prov) and mem(free) selectors making mem(free) the default for "mem" and "memprov" explicit
 | 
			
		||||
 
 | 
			
		||||
@@ -48,7 +48,7 @@ import re
 | 
			
		||||
import json
 | 
			
		||||
 | 
			
		||||
# Daemon version
 | 
			
		||||
version = "0.9.59"
 | 
			
		||||
version = "0.9.60"
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
##########################################################
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user