Abhijeet Singh Kaurav
Abhijeet Singh Kaurav
**Environment cache updation tooks too much time during cache update** **Reason** It calls subnets api for each account per environment. Ideally accounts api call should be done outside of environment...
Requirements: - Command should output or create a file locally that should contain the launch params for any blueprint Possible Syntax: - calm get bp launch-params --name Todo: - [...
Right now retries_enabled is set to True. It doesn't exactly get the correct message of api breakage. ```Max retries exceeded with url: /api/nutanix/v3/services/nucalm/status (Caused by ResponseError('too many 503 error responses'))```...
Right now if we do `BF.Vm.Azure(instance_name="vm-7b1b8-0")` It will select public-ip-address only and send to server. Add an option to select private ip also. Something on this way: `BF.Vm.Azure(instance_name="vm-7b1b8-0", use_private_address=True)`
Project env variable is not working for SimpleBlueprint model. It is always getting created with default project or project supplied in metadata. Ideally, env variable /config.ini should be used for...
ex: read_local_file("file_location", default="default_data")
Macros are not resolved in dynamic variables during launch time. Dsl is not sending overridden data during variable values api call. Expected call: POST call `{"requestId":"1864d8c6-8e64-699c-116a-c4f0c277c927","overridden_field":"[{\"key\":\"script\",\"value\":\"user = \\\"username\\\"\\npassword = \\\"Password\\\"\\nip...
Right now, we are passing editable_params.py. Which is good enough for having python script and runtime variables both at same place. For getting started quickly, we can also add `.var`...
`The customer would like to use command line approach to launch the marketplace item without user intervention. The current approach was to define as per in tests/cli/runtime_helpers/ahv/editable_params.py ** The user...
Right now, CalmTask is supported inside variables. Even in Runbook, we need to import CalmTask for runbook dynanic variables. Ex: ``` from calm.dsl.runbooks import runbook, runbook_json from calm.dsl.runbooks import RunbookTask,...