The primary motivation for this pull request is to ensure that all values in the Helm chart are strings where required. This can help prevent potential issues with type mismatches in the configuration. Additionally, upgrading the chart version to 0.67.0 ensures that users are aware of this change and can benefit from any other improvements or fixes included in this new version.
Changes
Version Upgrade:
Updated the chart version in charts/hub/Chart.yaml from 0.66.0 to 0.67.0.
Configuration Update:
Converted the value of nginx.ingress.kubernetes.io/enable-cors in charts/hub/templates/kerberos-hub/hub-api.yaml from a boolean to a string (true to "true").
Benefits
Type Consistency: Ensures that all configurations comply with expected types, reducing the risk of runtime errors or misconfigurations.
Version Clarity: The version bump to 0.67.0 clearly communicates to users that there have been changes and they should update their deployments accordingly.
This pull request improves the overall stability and maintainability of the project by enforcing consistent data types and keeping the versioning clear and up-to-date.
Description
Motivation
The primary motivation for this pull request is to ensure that all values in the Helm chart are strings where required. This can help prevent potential issues with type mismatches in the configuration. Additionally, upgrading the chart version to 0.67.0 ensures that users are aware of this change and can benefit from any other improvements or fixes included in this new version.
Changes
Version Upgrade:
charts/hub/Chart.yaml
from0.66.0
to0.67.0
.Configuration Update:
nginx.ingress.kubernetes.io/enable-cors
incharts/hub/templates/kerberos-hub/hub-api.yaml
from a boolean to a string (true
to"true"
).Benefits
This pull request improves the overall stability and maintainability of the project by enforcing consistent data types and keeping the versioning clear and up-to-date.