-
Notifications
You must be signed in to change notification settings - Fork 56
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix typo in PUPPETDB_JAVA_ARGS #201
Conversation
The proper flag is -Xloggc (see https://docs.oracle.com/javacomponents/jrockit-hotspot/migration-guide/logging.htm)
|
Hey Linas, I didn't know about this deprecation, thanks for pointing it out. However without this fix, installing the helm chart led to the process crash-looping in my cluster. Adding this fix to my Is it possible that the java runtime in the image itself is too old? |
Are you positive that the problem was due to this? As I'm constantly redeploying a solution via this chart in the past few days and everything starts properly. Do you have any error logs that it causes? The use of this was added specifically due to PuppetDB container logging a deprecation warning and saying that it will use this even if you specify |
Just to be sure, I'll try to remove the remove the line from However, I also noticed that I was using version 8.2.0 of the chart. While 8.2.1 is documented in CHANGELOG.md, I couldn't upgrade to 8.2.1 because it's not been pushed to Artifact hub. This means that a number of fixes are not present, and maybe that's the cause of the difference in behavior between your tests and mine. I'd recommend also pushing 8.2.1 to Artifact hub, even though 9.0.0 was pushed today, because 8.2.0 is broken — two image names are missing the |
@qdii the same change has now been merged in the |
Ah thanks! I totally forgot to check. But happy to hear it's solved :) I'll delete it. |
The proper flag is -Xloggc (see https://docs.oracle.com/javacomponents/jrockit-hotspot/migration-guide/logging.htm)