Skip to content

IM Version 1.15.0

Compare
Choose a tag to compare
@micafer micafer released this 28 Sep 06:56
· 535 commits to master since this release
ab1a033
  • Fix error resizing VMs: #1498.
  • Enable to set root disk size in EC2, Azure and GCE conns: #1491.
  • Return error if instance is not get in stop, start, reboot ops in EC2 conn: #1490.
  • Fix error in OSCAR or Lambda cons with env variables with ":": #1485.
  • Add requests-cache to improve performance in TOSCA parsing: #1505.
  • Improve performance in Infrastructure List operation: #1506.
    WARNING: It requires a DB update.
    Please make a copy of the DB before applying the script.
    Use scripts/db_1_14_X_to_1_15_X.py to update it.
    It can be used with a docker image with one of these commands:
    # In case of SQLITE:
    docker run --rm -v /etc/im/inf.dat:/inf.dat \
      -ti ghcr.io/grycap/im:db_1_14_15 python3 /db_1_14_X_to_1_15_X.py  \
      "sqlite:///inf.dat" | tee db_update.log
    # In case of MySQL:
    docker run --rm -ti ghcr.io/grycap/im:db_1_14_15 \
      python3 /db_1_14_X_to_1_15_X.py "mysql://username:password@server/db_name" \
      | tee db_update.log