Skip to content

Releases: NeowayLabs/klb

0.13.0

26 Dec 11:09
ecb5c54
Compare
Choose a tag to compare

This release add support to new Azure Load Balancer API. Now Azure have two Load Balancer types: Basic and Standard. More information about Azure Load Balancer here

Full example to how use this load balancer package here

0.12.2

15 Sep 19:57
Compare
Choose a tag to compare

This release fixes a bug where dependencies where missing
on the snapshot package.

0.12.1

15 Sep 19:32
Compare
Choose a tag to compare

This release just increases the timeout of the read grant access when copying snapshots to guarantee we won't have problems with copying big snapshots.

Affected function: azure_snapshot_copy

0.12.0

15 Sep 19:01
Compare
Choose a tag to compare

This release breaks compatibility of the vm package.

The functions that have changed are:

  • azure_vm_backup_create
  • azure_snapshot_create

To be more compatible with azure behavior of not allowing snapshots to
be on a different location than the source disks used to generate them.

We also added new functionality to enable backups to be copied through
different locations, check the functions:

  • azure_vm_backup_copy
  • azure_snapshot_copy

There are examples provided on the project for both functionalities.

Fix Azure Download Dir Issues

23 Apr 15:52
ca9fdf1
Compare
Choose a tag to compare

Why call issues ? Well because Azure thinks that the "fs layer" they provide on their BLOB service can be somewhat like a FS...but not actually an FS, so when the behavior is stupid..NO PROBLEM =D. Of course that the behavior is stupid and useless...but on some conceptual level it makes sense for them. So we just make it work inside klb with a layer of behavior adjustements.

Resuming, azure_blob_fs_download_dir now works as expected.

0.11.0

05 Apr 02:31
1f95d08
Compare
Choose a tag to compare

No API has been changed, only adding:

  • BLOB FS API (azure/blob/fs) to manipulate files on Azure BLOB service easier
  • Changed python from 3 to 2 because Azure happened (Azure/azure-cli#5896)

0.10.2

22 Jan 17:06
fc3bf32
Compare
Choose a tag to compare

Change ubuntu image to 16:04 and update az cli on the image to 2.0.25

0.10.1

28 Nov 17:20
9d16a83
Compare
Choose a tag to compare

Add:

  • azure_storage_blob_list
  • azure_storage_blob_list_by_resgroup

0.10.0

25 Nov 18:27
Compare
Choose a tag to compare

This release breaks compatibility of the storage package to
match it better with how Azure works.

Removes:

  • azure_storage_account_create

Breaking changes:

  • azure_storage_account_get_keys

And adds the new/tested:

  • azure_storage_account_create_storage
  • azure_storage_account_create_blob
  • azure_storage_blob_upload
  • azure_storage_blob_upload_by_resgroup
  • azure_storage_blob_download
  • azure_storage_blob_download_by_resgroup

Now it is easier to create Azure Blob containers and
upload/download files from it.

It also updates nash to 0.6 and protects against
invalid parameters when restoring a VM backup.

The following functions should not be called anymore
when recovering a VM backup:

  • azure_vm_set_username
  • azure_vm_set_publickeyfile
  • azure_vm_set_password

0.9.2

16 Nov 20:11
65eaa0c
Compare
Choose a tag to compare
Merge pull request #163 from NeowayLabs/add-vm-tags

Implemented vm tags support