feat: complete puppet infrastructure
complete the implementation of puppet in kubernetes, taking many features from the openvox helm chart and improving on them. changes from helm are: - using vault for storing secrets - using g10k instead of r10k - using a single shared g10k cronjob for all masters/compilers - using a single shared /etc/puppetlabs/code directory (shared, cephfs) changes: - deploy puppet master and compiler servers with statefulset/deployment - deploy puppetdb with postgresql backend, taking advantage of cnpg cluster and pooler - deploy puppetboard - all supporting configmaps, services, ingresses, and hpas - added vaultstaticsecret for eyaml private keys - configured secure mounting of eyaml keys at /var/lib/puppet/keys/ - updated base kustomization to include all 23 new puppet resource files
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: ConfigMap
|
||||
metadata:
|
||||
labels:
|
||||
app.kubernetes.io/component: puppetboard
|
||||
app.kubernetes.io/instance: puppetserver
|
||||
app.kubernetes.io/name: puppetserver
|
||||
app.kubernetes.io/version: 8.8.0
|
||||
name: puppetboard-config
|
||||
namespace: puppet
|
||||
data:
|
||||
PUPPETDB_HOST: "puppetdb"
|
||||
PUPPETDB_PORT: "8080"
|
||||
LOGLEVEL: "info"
|
||||
PUPPETDB_TIMEOUT: "20"
|
||||
UNRESPONSIVE_HOURS: "3"
|
||||
ENABLE_CATALOG: "False"
|
||||
ENABLE_QUERY: "True"
|
||||
LOCALISE_TIMESTAMP: "True"
|
||||
OFFLINE_MODE: "True"
|
||||
DEFAULT_ENVIRONMENT: "*"
|
||||
REPORTS_COUNT: "40"
|
||||
Reference in New Issue
Block a user