Created
November 15, 2018 13:39
-
-
Save raphink/9b8b614b384c51e3adc50a81bbd1f354 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3.1" | |
services: | |
puppet: | |
build: . | |
image: camptocamp/puppetserver:arbitrary_user | |
hostname: puppet.camptocamp.com | |
user: "12345678" | |
volumes: | |
- ./code:/etc/puppetlabs/code:ro | |
- puppetca:/etc/puppetlabs/puppet/ssl/ca:rw | |
- ./configmaps/auth.conf:/etc/puppetlabs/puppetserver/conf.d/auth.conf:ro | |
- ./configmaps/csr_attributes.yaml:/etc/puppetlabs/puppet/csr_attributes.yaml:ro | |
- ./configmaps/puppet.conf:/etc/puppetlabs/puppet/puppet.conf:ro | |
#- ./configmaps/routes.yaml:/etc/puppetlabs/puppet/routes.yaml:ro | |
secrets: | |
- ca_key.pem | |
- ca_crt.pem | |
- ca_crl.pem | |
- gpg.asc | |
- autosign_psk | |
secrets: | |
ca_key.pem: | |
file: configmaps/ca_key.pem | |
ca_crt.pem: | |
file: configmaps/ca_crt.pem | |
ca_crl.pem: | |
file: configmaps/ca_crl.pem | |
gpg.asc: | |
file: configmaps/gpg.asc | |
autosign_psk: | |
file: configmaps/autosign_psk | |
volumes: | |
puppetca: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment