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
Perhaps I'm overlooking something here, but the ca data is stored outside of the puppetserver-config volume and is lost when stopping the stack. The ca is stored in /etc/puppetlabs/puppet/ssl/ca which is a symlink to /etc/puppetlabs/puppetserver/ca which is not defined as a volume.
Expected Behavior
The ca is persisted to the puppetserver-config volume with the rest of the ssl data.
Steps to Reproduce
Steps to reproduce the behavior:
Provision the stack
docker compose down
docker compose up -d
bye bye ca
Environment
Ubuntu 20.04
Additional Context
I'm going to work around this issue by mapping a volume to /etc/puppetlabs/puppetserver.
The text was updated successfully, but these errors were encountered:
Running /docker-entrypoint.d/70-set-dns-alt-names.sh
Running /docker-entrypoint.d/80-ca.sh
Error:
Existing file at '/etc/puppetlabs/puppet/ssl/certs/puppet.pem'
Existing file at '/etc/puppetlabs/puppet/ssl/certs/ca.pem'
Existing file at '/etc/puppetlabs/puppet/ssl/crl.pem'
If you would really like to replace your CA, please delete the existing files first.
Note that any certificates that were issued by this CA will become invalid if you
replace it!```
how can i restart with the current/already there ca and certs?
Describe the Bug
Perhaps I'm overlooking something here, but the ca data is stored outside of the
puppetserver-config
volume and is lost when stopping the stack. The ca is stored in/etc/puppetlabs/puppet/ssl/ca
which is a symlink to/etc/puppetlabs/puppetserver/ca
which is not defined as a volume.Expected Behavior
The ca is persisted to the
puppetserver-config
volume with the rest of the ssl data.Steps to Reproduce
Steps to reproduce the behavior:
docker compose down
docker compose up -d
Environment
Additional Context
I'm going to work around this issue by mapping a volume to
/etc/puppetlabs/puppetserver
.The text was updated successfully, but these errors were encountered: