Skip to content

Releases: vidispine/hull

hull-demo-1.33.3

01 Dec 03:21
505ef91

Choose a tag to compare

Changelog


[1.33.3]

FIXES:

  • fixed inconsistency in usage of ConfigMap binaryData entries. Previously, it was possible to provide the binary data via the binaryData entries' value dictionary path property when it is stored in an external file or directly as a string value to the binaryData entries key, omitting the dictionary structure in the value. To restore the symmetry in usage with a value dictionary, it is now possible to alternatively use the inline property in the value dictionary to submit binaryData entries, this works the same way as using a string value for the binaryData directly.

CHANGES:

  • ensured compatibility with Helm v4 major releases. It is expected that the vast majority of HULL based use cases is unaffected by the major version of the Helm binary used to manage the chart. See the information in the README.md about the existing differences between Helm v3 and Helm v4 which may affect HULL based charts as well. To accomodate for these differences, some tests were relaxed or made context aware to the hosting Helm binaries major version.
  • added optional boolean parameter preEncoded to Secret data entries. If set, the value read from the inline property or from an external file with path path will not be Base64 encoded by HULL. Instead, if preEncoded is set to true, the corresponding data content is expected to already be Base64 encoded and HULL will skip auto-encoding it. Setting preEncoded to true foremost allows to import Base64 encoded (binary) data as from a Secret data entry into a pod. Note that when preEncoded is set to true, the data must be correctly Base64 encoded, otherwise the Kubernetes API will not accept it. The preEncoded property applies to Secret data only and is ignored on ConfigMap data entries. Thanks Armin sanarena for the feature request!
  • added convenient way to replace a customizable string pattern with double opening and closing curly braces in the rendered final YAML. This is especially helpful when packaging customresource objects which in its spec may contain templating expressions using double curly braces, popular examples are CRDs for External Secrets Operator and Kyverno. Since these applications have their own templating engine included, their CustomResources typically contain double curly braces. Using this last minute string replacement technique, it becomes possible to execute HULL transformations on such content containing templating expressions partially targeted for Helm and partially targeted for the downstream application. The post-render string replacement of the downstream applications double curly braces allows for a clear separation of the templating stages. To enable the feature, set both hull.config.general.postRender.globalStringReplacements.openingDoubleCurlyBraces.enabled and hull.config.general.postRender.globalStringReplacements.closingDoubleCurlyBraces.enabled to true. Then, whenever down stream double curly braces need replacing in the rendered result, use {+{ for opening and }+} for closing double curly braces and the placeholders will be replaced with {{ and }} respectively last-minute before submittal to the Kubernetes API. If needed, the placeholder values can be customized in the hull.config.general.postRender.globalStringReplacements chart configuration.

hull-demo-1.32.6

01 Dec 07:04
505ef91

Choose a tag to compare

Changelog


[1.32.6]

FIXES:

  • fixed inconsistency in usage of ConfigMap binaryData entries. Previously, it was possible to provide the binary data via the binaryData entries' value dictionary path property when it is stored in an external file or directly as a string value to the binaryData entries key, omitting the dictionary structure in the value. To restore the symmetry in usage with a value dictionary, it is now possible to alternatively use the inline property in the value dictionary to submit binaryData entries, this works the same way as using a string value for the binaryData directly.

CHANGES:

  • ensured compatibility with Helm v4 major releases. It is expected that the vast majority of HULL based use cases is unaffected by the major version of the Helm binary used to manage the chart. See the information in the README.md about the existing differences between Helm v3 and Helm v4 which may affect HULL based charts as well. To accomodate for these differences, some tests were relaxed or made context aware to the hosting Helm binaries major version.
  • added optional boolean parameter preEncoded to Secret data entries. If set, the value read from the inline property or from an external file with path path will not be Base64 encoded by HULL. Instead, if preEncoded is set to true, the corresponding data content is expected to already be Base64 encoded and HULL will skip auto-encoding it. Setting preEncoded to true foremost allows to import Base64 encoded (binary) data as from a Secret data entry into a pod. Note that when preEncoded is set to true, the data must be correctly Base64 encoded, otherwise the Kubernetes API will not accept it. The preEncoded property applies to Secret data only and is ignored on ConfigMap data entries. Thanks Armin sanarena for the feature request!
  • added convenient way to replace a customizable string pattern with double opening and closing curly braces in the rendered final YAML. This is especially helpful when packaging customresource objects which in its spec may contain templating expressions using double curly braces, popular examples are CRDs for External Secrets Operator and Kyverno. Since these applications have their own templating engine included, their CustomResources typically contain double curly braces. Using this last minute string replacement technique, it becomes possible to execute HULL transformations on such content containing templating expressions partially targeted for Helm and partially targeted for the downstream application. The post-render string replacement of the downstream applications double curly braces allows for a clear separation of the templating stages. To enable the feature, set both hull.config.general.postRender.globalStringReplacements.openingDoubleCurlyBraces.enabled and hull.config.general.postRender.globalStringReplacements.closingDoubleCurlyBraces.enabled to true. Then, whenever down stream double curly braces need replacing in the rendered result, use {+{ for opening and }+} for closing double curly braces and the placeholders will be replaced with {{ and }} respectively last-minute before submittal to the Kubernetes API. If needed, the placeholder values can be customized in the hull.config.general.postRender.globalStringReplacements chart configuration.

hull-1.33.3

01 Dec 03:20
505ef91

Choose a tag to compare

Changelog


[1.33.3]

FIXES:

  • fixed inconsistency in usage of ConfigMap binaryData entries. Previously, it was possible to provide the binary data via the binaryData entries' value dictionary path property when it is stored in an external file or directly as a string value to the binaryData entries key, omitting the dictionary structure in the value. To restore the symmetry in usage with a value dictionary, it is now possible to alternatively use the inline property in the value dictionary to submit binaryData entries, this works the same way as using a string value for the binaryData directly.

CHANGES:

  • ensured compatibility with Helm v4 major releases. It is expected that the vast majority of HULL based use cases is unaffected by the major version of the Helm binary used to manage the chart. See the information in the README.md about the existing differences between Helm v3 and Helm v4 which may affect HULL based charts as well. To accomodate for these differences, some tests were relaxed or made context aware to the hosting Helm binaries major version.
  • added optional boolean parameter preEncoded to Secret data entries. If set, the value read from the inline property or from an external file with path path will not be Base64 encoded by HULL. Instead, if preEncoded is set to true, the corresponding data content is expected to already be Base64 encoded and HULL will skip auto-encoding it. Setting preEncoded to true foremost allows to import Base64 encoded (binary) data as from a Secret data entry into a pod. Note that when preEncoded is set to true, the data must be correctly Base64 encoded, otherwise the Kubernetes API will not accept it. The preEncoded property applies to Secret data only and is ignored on ConfigMap data entries. Thanks Armin sanarena for the feature request!
  • added convenient way to replace a customizable string pattern with double opening and closing curly braces in the rendered final YAML. This is especially helpful when packaging customresource objects which in its spec may contain templating expressions using double curly braces, popular examples are CRDs for External Secrets Operator and Kyverno. Since these applications have their own templating engine included, their CustomResources typically contain double curly braces. Using this last minute string replacement technique, it becomes possible to execute HULL transformations on such content containing templating expressions partially targeted for Helm and partially targeted for the downstream application. The post-render string replacement of the downstream applications double curly braces allows for a clear separation of the templating stages. To enable the feature, set both hull.config.general.postRender.globalStringReplacements.openingDoubleCurlyBraces.enabled and hull.config.general.postRender.globalStringReplacements.closingDoubleCurlyBraces.enabled to true. Then, whenever down stream double curly braces need replacing in the rendered result, use {+{ for opening and }+} for closing double curly braces and the placeholders will be replaced with {{ and }} respectively last-minute before submittal to the Kubernetes API. If needed, the placeholder values can be customized in the hull.config.general.postRender.globalStringReplacements chart configuration.

hull-1.32.6

01 Dec 07:03
505ef91

Choose a tag to compare

Changelog


[1.32.6]

FIXES:

  • fixed inconsistency in usage of ConfigMap binaryData entries. Previously, it was possible to provide the binary data via the binaryData entries' value dictionary path property when it is stored in an external file or directly as a string value to the binaryData entries key, omitting the dictionary structure in the value. To restore the symmetry in usage with a value dictionary, it is now possible to alternatively use the inline property in the value dictionary to submit binaryData entries, this works the same way as using a string value for the binaryData directly.

CHANGES:

  • ensured compatibility with Helm v4 major releases. It is expected that the vast majority of HULL based use cases is unaffected by the major version of the Helm binary used to manage the chart. See the information in the README.md about the existing differences between Helm v3 and Helm v4 which may affect HULL based charts as well. To accomodate for these differences, some tests were relaxed or made context aware to the hosting Helm binaries major version.
  • added optional boolean parameter preEncoded to Secret data entries. If set, the value read from the inline property or from an external file with path path will not be Base64 encoded by HULL. Instead, if preEncoded is set to true, the corresponding data content is expected to already be Base64 encoded and HULL will skip auto-encoding it. Setting preEncoded to true foremost allows to import Base64 encoded (binary) data as from a Secret data entry into a pod. Note that when preEncoded is set to true, the data must be correctly Base64 encoded, otherwise the Kubernetes API will not accept it. The preEncoded property applies to Secret data only and is ignored on ConfigMap data entries. Thanks Armin sanarena for the feature request!
  • added convenient way to replace a customizable string pattern with double opening and closing curly braces in the rendered final YAML. This is especially helpful when packaging customresource objects which in its spec may contain templating expressions using double curly braces, popular examples are CRDs for External Secrets Operator and Kyverno. Since these applications have their own templating engine included, their CustomResources typically contain double curly braces. Using this last minute string replacement technique, it becomes possible to execute HULL transformations on such content containing templating expressions partially targeted for Helm and partially targeted for the downstream application. The post-render string replacement of the downstream applications double curly braces allows for a clear separation of the templating stages. To enable the feature, set both hull.config.general.postRender.globalStringReplacements.openingDoubleCurlyBraces.enabled and hull.config.general.postRender.globalStringReplacements.closingDoubleCurlyBraces.enabled to true. Then, whenever down stream double curly braces need replacing in the rendered result, use {+{ for opening and }+} for closing double curly braces and the placeholders will be replaced with {{ and }} respectively last-minute before submittal to the Kubernetes API. If needed, the placeholder values can be customized in the hull.config.general.postRender.globalStringReplacements chart configuration.

hull-demo-1.34.2

27 Nov 09:36
74c439f

Choose a tag to compare

Changelog


[1.34.2]

FIXES:

  • fixed inconsistency in usage of ConfigMap binaryData entries. Previously, it was possible to provide the binary data via the binaryData entries' value dictionary path property when it is stored in an external file or directly as a string value to the binaryData entries key, omitting the dictionary structure in the value. To restore the symmetry in usage with a value dictionary, it is now possible to alternatively use the inline property in the value dictionary to submit binaryData entries, this works the same way as using a string value for the binaryData directly.

CHANGES:

  • ensured compatibility with Helm v4 major releases. It is expected that the vast majority of HULL based use cases is unaffected by the major version of the Helm binary used to manage the chart. See the information in the README.md about the existing differences between Helm v3 and Helm v4 which may affect HULL based charts as well. To accomodate for these differences, some tests were relaxed or made context aware to the hosting Helm binaries major version.
  • added optional boolean parameter preEncoded to Secret data entries. If set, the value read from the inline property or from an external file with path path will not be Base64 encoded by HULL. Instead, if preEncoded is set to true, the corresponding data content is expected to already be Base64 encoded and HULL will skip auto-encoding it. Setting preEncoded to true foremost allows to import Base64 encoded (binary) data as from a Secret data entry into a pod. Note that when preEncoded is set to true, the data must be correctly Base64 encoded, otherwise the Kubernetes API will not accept it. The preEncoded property applies to Secret data only and is ignored on ConfigMap data entries. Thanks Armin sanarena for the feature request!
  • added convenient way to replace a customizable string pattern with double opening and closing curly braces in the rendered final YAML. This is especially helpful when packaging customresource objects which in its spec may contain templating expressions using double curly braces, popular examples are CRDs for External Secrets Operator and Kyverno. Since these applications have their own templating engine included, their CustomResources typically contain double curly braces. Using this last minute string replacement technique, it becomes possible to execute HULL transformations on such content containing templating expressions partially targeted for Helm and partially targeted for the downstream application. The post-render string replacement of the downstream applications double curly braces allows for a clear separation of the templating stages. To enable the feature, set both hull.config.general.postRender.globalStringReplacements.openingDoubleCurlyBraces.enabled and hull.config.general.postRender.globalStringReplacements.closingDoubleCurlyBraces.enabled to true. Then, whenever down stream double curly braces need replacing in the rendered result, use {+{ for opening and }+} for closing double curly braces and the placeholders will be replaced with {{ and }} respectively last-minute before submittal to the Kubernetes API. If needed, the placeholder values can be customized in the hull.config.general.postRender.globalStringReplacements chart configuration.

hull-demo-1.34.1

07 Nov 15:54
74c439f

Choose a tag to compare

Changelog


[1.34.1]

CHANGES:

  • added optional parameters NOTEMPLATING and SERIALIZATION to hull.util.tools.virtualdata.data.glob transformation. The parameters match the behavior of noTemplating and serialization which are available for processing individual ConfigMap or Secret values. Used with the hull.util.tools.virtualdata.data.glob transformation, templating can be skipped and/or serialization performed on all external files captured via the given glob. Thanks ievgenii-shepeliuk for the feature request.

hull-1.34.2

27 Nov 09:35
74c439f

Choose a tag to compare

Changelog


[1.34.2]

FIXES:

  • fixed inconsistency in usage of ConfigMap binaryData entries. Previously, it was possible to provide the binary data via the binaryData entries' value dictionary path property when it is stored in an external file or directly as a string value to the binaryData entries key, omitting the dictionary structure in the value. To restore the symmetry in usage with a value dictionary, it is now possible to alternatively use the inline property in the value dictionary to submit binaryData entries, this works the same way as using a string value for the binaryData directly.

CHANGES:

  • ensured compatibility with Helm v4 major releases. It is expected that the vast majority of HULL based use cases is unaffected by the major version of the Helm binary used to manage the chart. See the information in the README.md about the existing differences between Helm v3 and Helm v4 which may affect HULL based charts as well. To accomodate for these differences, some tests were relaxed or made context aware to the hosting Helm binaries major version.
  • added optional boolean parameter preEncoded to Secret data entries. If set, the value read from the inline property or from an external file with path path will not be Base64 encoded by HULL. Instead, if preEncoded is set to true, the corresponding data content is expected to already be Base64 encoded and HULL will skip auto-encoding it. Setting preEncoded to true foremost allows to import Base64 encoded (binary) data as from a Secret data entry into a pod. Note that when preEncoded is set to true, the data must be correctly Base64 encoded, otherwise the Kubernetes API will not accept it. The preEncoded property applies to Secret data only and is ignored on ConfigMap data entries. Thanks Armin sanarena for the feature request!
  • added convenient way to replace a customizable string pattern with double opening and closing curly braces in the rendered final YAML. This is especially helpful when packaging customresource objects which in its spec may contain templating expressions using double curly braces, popular examples are CRDs for External Secrets Operator and Kyverno. Since these applications have their own templating engine included, their CustomResources typically contain double curly braces. Using this last minute string replacement technique, it becomes possible to execute HULL transformations on such content containing templating expressions partially targeted for Helm and partially targeted for the downstream application. The post-render string replacement of the downstream applications double curly braces allows for a clear separation of the templating stages. To enable the feature, set both hull.config.general.postRender.globalStringReplacements.openingDoubleCurlyBraces.enabled and hull.config.general.postRender.globalStringReplacements.closingDoubleCurlyBraces.enabled to true. Then, whenever down stream double curly braces need replacing in the rendered result, use {+{ for opening and }+} for closing double curly braces and the placeholders will be replaced with {{ and }} respectively last-minute before submittal to the Kubernetes API. If needed, the placeholder values can be customized in the hull.config.general.postRender.globalStringReplacements chart configuration.

hull-1.34.1

07 Nov 15:53
74c439f

Choose a tag to compare

Changelog


[1.34.1]

CHANGES:

  • added optional parameters NOTEMPLATING and SERIALIZATION to hull.util.tools.virtualdata.data.glob transformation. The parameters match the behavior of noTemplating and serialization which are available for processing individual ConfigMap or Secret values. Used with the hull.util.tools.virtualdata.data.glob transformation, templating can be skipped and/or serialization performed on all external files captured via the given glob. Thanks ievgenii-shepeliuk for the feature request.

hull-demo-1.33.2

06 Nov 22:52
802183d

Choose a tag to compare

Changelog


[1.33.2]

CHANGES:

  • added optional parameters NOTEMPLATING and SERIALIZATION to hull.util.tools.virtualdata.data.glob transformation. The parameters match the behavior of noTemplating and serialization which are available for processing individual ConfigMap or Secret values. Used with the hull.util.tools.virtualdata.data.glob transformation, templating can be skipped and/or serialization performed on all external files captured via the given glob. Thanks ievgenii-shepeliuk for the feature request.

hull-demo-1.33.1

25 Sep 20:14
802183d

Choose a tag to compare

Changelog


[1.33.1]

FIXES:

  • fixed error thrown due to calculation of hashsums attempted on secret and configmap object content when the object instance is implicitly disabled. Setting enabled: false in the corresponding _HULL_OBJECT_TYPE_DEFAULT_ instance will implicitly disable rendering for instances which in this case don't explicitly set enabled: true. Now, when a volumeMount has property hashsumAnnotation set to true and the targeted configmap or secret is either implicitly or explicitly disabled in the chart, the calculation of the hashsum is skipped and no errors are thrown.