This repository was archived by the owner on Feb 14, 2025. It is now read-only.
Replies: 2 comments 1 reply
-
hmm complicated. but yes, i would say use |
Beta Was this translation helpful? Give feedback.
1 reply
-
Since I am using the https://github.com/puppetlabs/puppetserver-helm-chart, I did this by add a custom script with below helm values: puppetserver:
customentrypoints:
enabled: true
configmaps:
delete-revoked-certs.sh: |-
#!/bin/sh
puppetserver ca delete --revoked |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi Team,
In my case, I would like to delete revoked certificates, but I cannot do it while the container is running, since it requires puppet server is stopped.
So currently I just run the command
puppetserver ca delete --revoked
right after the container is started but before the puppet server service is running..I am wondering what is the better to do this, by define a custom initialize scripts in /docker-custom-entrypoint.d/? do you have any other recommendation?
Thanks in advance!
Beta Was this translation helpful? Give feedback.
All reactions