You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Allow timezone to be selected for the logging output (#5)
The timezone for the logger can now be selected using the helm chart
parameter 'timezone'. As logging employs log4j, ensure you use a
Java-friendly timezone ID. Refer to this site for available IDs:
https://docs.oracle.com/middleware/1221/wcs/tag-ref/MISC/TimeZones.html
For example, to use time from Halifax, you would run:
```
helm install k vertica-charts/kafka-scheduler-chart --set timezone="America/Halifax"
```
Allow a password to be supplied for the truststore (#3)
This adds a new helm chart parameter to allow you to specify a password
for the truststore.
This also fixes a bug where the extra JVM opts were not included if
specified.
Update to initializer for truststore only deployments (#2)
Previous fix wasn't complete as I forgot to update the initializer pod.
I am also fixing the VKCONFIG_JVM_OPTS, which didn't have correct
spacing.
Allow only truststore to be set (#1)
Previously when setting up tls you had to specify both the keystore and
truststore. Now, either one can be specified.