This project contains Ansible code that creates a baseline in an existing Kubernetes environment for use with the SAS Viya Platform, generates the manifest for an order, and then can also deploy that order into the Kubernetes environment specified.
Apache License 2.0
71
stars
64
forks
source link
fix: (IAC-658): Updating default value for V4MT_TENANT_CAS_CUSTOMIZATION #281
Originally the default value for V4MT_TENANT_CAS_CUSTOMIZATION was set as null. However, ansible treats 'null' as a valid value for dictionary being defined and tries to run dictionary operations.
Change:
Updated the default value for V4MT_TENANT_CAS_CUSTOMIZATION as a empty dictionary.
Tests:
This specific issue was hit when V4MT_TENANT_CAS_CUSTOMIZATION wasn't provided and ansible used the null value as default.
Verified with the default changed, the issue was not seen.
Ran other combinations with V4MT_TENANT_CAS_CUSTOMIZATION only defined for two out three tenants
Also verified when V4MT_TENANT_CAS_CUSTOMIZATION is defined with only tenant names but no customizations.
Originally the default value for V4MT_TENANT_CAS_CUSTOMIZATION was set as null. However, ansible treats 'null' as a valid value for dictionary being defined and tries to run dictionary operations.
Change:
Updated the default value for V4MT_TENANT_CAS_CUSTOMIZATION as a empty dictionary.
Tests:
This specific issue was hit when V4MT_TENANT_CAS_CUSTOMIZATION wasn't provided and ansible used the null value as default.