├── .github └── workflows │ └── release.yaml ├── .gitignore ├── .helmignore ├── CHANGELOG.md ├── CODEOWNERS ├── Chart.lock ├── Chart.yaml ├── LICENSE ├── Makefile ├── README.md ├── init ├── README.md └── puppet-certs │ ├── puppetdb │ └── .gitignore │ └── puppetserver │ └── .gitignore ├── templates ├── NOTES.txt ├── _helpers.tpl ├── hiera-configmap.yaml ├── jmx-configmap.yaml ├── jmx-servicemonitor.yaml ├── postgresql-configmap.yaml ├── private_key.pkcs7.pem.yaml ├── public_key.pkcs7.pem.yaml ├── puppet-crl-updater-cronjob.yaml ├── puppet-preInstall.job.yaml ├── puppet-r10k-deployment.yaml ├── puppetboard-ingress.yaml ├── puppetdb-customconfigs-configmap.yaml ├── puppetdb-deployment.yaml ├── puppetdb-metrics-configmap.yaml ├── puppetdb-podsecuritypolicy.yaml ├── puppetdb-preInstall.configMap.yaml ├── puppetdb-pvc.yaml ├── puppetdb-role.yaml ├── puppetdb-rolebinding.yaml ├── puppetdb-secret.yaml ├── puppetdb-service.yaml ├── puppetdb-serviceaccount.yaml ├── puppetdb-servicemonitor.yaml ├── puppetdb.networkpolicy.yaml ├── puppetserver-ca-backup-cronjob.yaml ├── puppetserver-ca-backup-secret.yaml ├── puppetserver-ca-pvc.yaml ├── puppetserver-code-pvc.yaml ├── puppetserver-compilers.networkpolicy.yaml ├── puppetserver-compilers.pdb.yaml ├── puppetserver-confd-pvc.yaml ├── puppetserver-custom-entrypoints-configmap.yaml ├── puppetserver-customconfigs-configmap.yaml ├── puppetserver-data-pvc.yaml ├── puppetserver-deployment-compilers.yaml ├── puppetserver-deployment-masters.yaml ├── puppetserver-hpa-compilers.yaml ├── puppetserver-hpa-masters.yaml ├── puppetserver-ingress-compilers.yaml ├── puppetserver-ingress-masters.yaml ├── puppetserver-init-configmap.yaml ├── puppetserver-manifests-configmap.yaml ├── puppetserver-masters.networkpolicy.yaml ├── puppetserver-masters.pdb.yaml ├── puppetserver-podsecuritypolicy.yaml ├── puppetserver-preInstall.configMap.yaml ├── puppetserver-puppetserver-pvc.yaml ├── puppetserver-pvc.yaml ├── puppetserver-role.yaml ├── puppetserver-rolebinding.yaml ├── puppetserver-service-agents-to-masters.yaml ├── puppetserver-service-compilers-headless.yaml ├── puppetserver-service-compilers.yaml ├── puppetserver-service-masters.yaml ├── puppetserver-serviceaccount.yaml ├── puppetserver-setup.configmap.yaml ├── puppetserver-statefulset-compilers.yaml ├── r10k-code-secret.yaml ├── r10k-code.configmap.yaml ├── r10k-hiera-secret.yaml ├── r10k-hiera.configmap.yaml └── update-crl-configmap.yaml ├── tests ├── __snapshot__ │ ├── jmx-servicemonitor_test.yaml.snap │ ├── puppetdb-pvc_test.yaml.snap │ ├── puppetdb-servicemonitor_test.yaml.snap │ ├── puppetdb.networkpolicy_test.yaml.snap │ ├── puppetserver-ca-pvc_test.yaml.snap │ ├── puppetserver-code-pvc_test.yaml.snap │ ├── puppetserver-compilers.deployment_test.yaml.snap │ ├── puppetserver-compilers.networkpolicy_test.yaml.snap │ ├── puppetserver-compilers.pdb_test.yaml.snap │ ├── puppetserver-compilers.statefulset_test.yaml.snap │ ├── puppetserver-data-pvc_test.yaml.snap │ ├── puppetserver-masters.networkpolicy_test.yaml.snap │ ├── puppetserver-masters.pdb_test.yaml.snap │ ├── puppetserver-pvc_test.yaml.snap │ └── puppetserver-statefulset.compilers_test.yaml.snap ├── jmx-servicemonitor_test.yaml ├── puppetdb-pvc_test.yaml ├── puppetdb-servicemonitor_test.yaml ├── puppetdb.networkpolicy_test.yaml ├── puppetserver-ca-pvc_test.yaml ├── puppetserver-code-pvc_test.yaml ├── puppetserver-compilers.deployment_test.yaml ├── puppetserver-compilers.networkpolicy_test.yaml ├── puppetserver-compilers.pdb_test.yaml ├── puppetserver-compilers.statefulset_test.yaml ├── puppetserver-data-pvc_test.yaml ├── puppetserver-masters.networkpolicy_test.yaml ├── puppetserver-masters.pdb_test.yaml └── puppetserver-pvc_test.yaml └── values.yaml /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | charts 2 | requirements.lock 3 | -------------------------------------------------------------------------------- /.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/.helmignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/Chart.lock -------------------------------------------------------------------------------- /Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/Chart.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/README.md -------------------------------------------------------------------------------- /init/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/init/README.md -------------------------------------------------------------------------------- /init/puppet-certs/puppetdb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/init/puppet-certs/puppetdb/.gitignore -------------------------------------------------------------------------------- /init/puppet-certs/puppetserver/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/init/puppet-certs/puppetserver/.gitignore -------------------------------------------------------------------------------- /templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/templates/NOTES.txt -------------------------------------------------------------------------------- /templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/templates/_helpers.tpl -------------------------------------------------------------------------------- /templates/hiera-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/templates/hiera-configmap.yaml -------------------------------------------------------------------------------- /templates/jmx-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/templates/jmx-configmap.yaml -------------------------------------------------------------------------------- /templates/jmx-servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/templates/jmx-servicemonitor.yaml -------------------------------------------------------------------------------- /templates/postgresql-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/templates/postgresql-configmap.yaml -------------------------------------------------------------------------------- /templates/private_key.pkcs7.pem.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/templates/private_key.pkcs7.pem.yaml -------------------------------------------------------------------------------- /templates/public_key.pkcs7.pem.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/templates/public_key.pkcs7.pem.yaml -------------------------------------------------------------------------------- /templates/puppet-crl-updater-cronjob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/templates/puppet-crl-updater-cronjob.yaml -------------------------------------------------------------------------------- /templates/puppet-preInstall.job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/templates/puppet-preInstall.job.yaml -------------------------------------------------------------------------------- /templates/puppet-r10k-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/templates/puppet-r10k-deployment.yaml -------------------------------------------------------------------------------- /templates/puppetboard-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/templates/puppetboard-ingress.yaml -------------------------------------------------------------------------------- /templates/puppetdb-customconfigs-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/templates/puppetdb-customconfigs-configmap.yaml -------------------------------------------------------------------------------- /templates/puppetdb-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/templates/puppetdb-deployment.yaml -------------------------------------------------------------------------------- /templates/puppetdb-metrics-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/templates/puppetdb-metrics-configmap.yaml -------------------------------------------------------------------------------- /templates/puppetdb-podsecuritypolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/templates/puppetdb-podsecuritypolicy.yaml -------------------------------------------------------------------------------- /templates/puppetdb-preInstall.configMap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/templates/puppetdb-preInstall.configMap.yaml -------------------------------------------------------------------------------- /templates/puppetdb-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/templates/puppetdb-pvc.yaml -------------------------------------------------------------------------------- /templates/puppetdb-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/templates/puppetdb-role.yaml -------------------------------------------------------------------------------- /templates/puppetdb-rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/templates/puppetdb-rolebinding.yaml -------------------------------------------------------------------------------- /templates/puppetdb-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/templates/puppetdb-secret.yaml -------------------------------------------------------------------------------- /templates/puppetdb-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/templates/puppetdb-service.yaml -------------------------------------------------------------------------------- /templates/puppetdb-serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/templates/puppetdb-serviceaccount.yaml -------------------------------------------------------------------------------- /templates/puppetdb-servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/templates/puppetdb-servicemonitor.yaml -------------------------------------------------------------------------------- /templates/puppetdb.networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/templates/puppetdb.networkpolicy.yaml -------------------------------------------------------------------------------- /templates/puppetserver-ca-backup-cronjob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/templates/puppetserver-ca-backup-cronjob.yaml -------------------------------------------------------------------------------- /templates/puppetserver-ca-backup-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/templates/puppetserver-ca-backup-secret.yaml -------------------------------------------------------------------------------- /templates/puppetserver-ca-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/templates/puppetserver-ca-pvc.yaml -------------------------------------------------------------------------------- /templates/puppetserver-code-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/templates/puppetserver-code-pvc.yaml -------------------------------------------------------------------------------- /templates/puppetserver-compilers.networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/templates/puppetserver-compilers.networkpolicy.yaml -------------------------------------------------------------------------------- /templates/puppetserver-compilers.pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/templates/puppetserver-compilers.pdb.yaml -------------------------------------------------------------------------------- /templates/puppetserver-confd-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/templates/puppetserver-confd-pvc.yaml -------------------------------------------------------------------------------- /templates/puppetserver-custom-entrypoints-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/templates/puppetserver-custom-entrypoints-configmap.yaml -------------------------------------------------------------------------------- /templates/puppetserver-customconfigs-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/templates/puppetserver-customconfigs-configmap.yaml -------------------------------------------------------------------------------- /templates/puppetserver-data-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/templates/puppetserver-data-pvc.yaml -------------------------------------------------------------------------------- /templates/puppetserver-deployment-compilers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/templates/puppetserver-deployment-compilers.yaml -------------------------------------------------------------------------------- /templates/puppetserver-deployment-masters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/templates/puppetserver-deployment-masters.yaml -------------------------------------------------------------------------------- /templates/puppetserver-hpa-compilers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/templates/puppetserver-hpa-compilers.yaml -------------------------------------------------------------------------------- /templates/puppetserver-hpa-masters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/templates/puppetserver-hpa-masters.yaml -------------------------------------------------------------------------------- /templates/puppetserver-ingress-compilers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/templates/puppetserver-ingress-compilers.yaml -------------------------------------------------------------------------------- /templates/puppetserver-ingress-masters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/templates/puppetserver-ingress-masters.yaml -------------------------------------------------------------------------------- /templates/puppetserver-init-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/templates/puppetserver-init-configmap.yaml -------------------------------------------------------------------------------- /templates/puppetserver-manifests-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/templates/puppetserver-manifests-configmap.yaml -------------------------------------------------------------------------------- /templates/puppetserver-masters.networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/templates/puppetserver-masters.networkpolicy.yaml -------------------------------------------------------------------------------- /templates/puppetserver-masters.pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/templates/puppetserver-masters.pdb.yaml -------------------------------------------------------------------------------- /templates/puppetserver-podsecuritypolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/templates/puppetserver-podsecuritypolicy.yaml -------------------------------------------------------------------------------- /templates/puppetserver-preInstall.configMap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/templates/puppetserver-preInstall.configMap.yaml -------------------------------------------------------------------------------- /templates/puppetserver-puppetserver-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/templates/puppetserver-puppetserver-pvc.yaml -------------------------------------------------------------------------------- /templates/puppetserver-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/templates/puppetserver-pvc.yaml -------------------------------------------------------------------------------- /templates/puppetserver-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/templates/puppetserver-role.yaml -------------------------------------------------------------------------------- /templates/puppetserver-rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/templates/puppetserver-rolebinding.yaml -------------------------------------------------------------------------------- /templates/puppetserver-service-agents-to-masters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/templates/puppetserver-service-agents-to-masters.yaml -------------------------------------------------------------------------------- /templates/puppetserver-service-compilers-headless.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/templates/puppetserver-service-compilers-headless.yaml -------------------------------------------------------------------------------- /templates/puppetserver-service-compilers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/templates/puppetserver-service-compilers.yaml -------------------------------------------------------------------------------- /templates/puppetserver-service-masters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/templates/puppetserver-service-masters.yaml -------------------------------------------------------------------------------- /templates/puppetserver-serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/templates/puppetserver-serviceaccount.yaml -------------------------------------------------------------------------------- /templates/puppetserver-setup.configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/templates/puppetserver-setup.configmap.yaml -------------------------------------------------------------------------------- /templates/puppetserver-statefulset-compilers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/templates/puppetserver-statefulset-compilers.yaml -------------------------------------------------------------------------------- /templates/r10k-code-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/templates/r10k-code-secret.yaml -------------------------------------------------------------------------------- /templates/r10k-code.configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/templates/r10k-code.configmap.yaml -------------------------------------------------------------------------------- /templates/r10k-hiera-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/templates/r10k-hiera-secret.yaml -------------------------------------------------------------------------------- /templates/r10k-hiera.configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/templates/r10k-hiera.configmap.yaml -------------------------------------------------------------------------------- /templates/update-crl-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/templates/update-crl-configmap.yaml -------------------------------------------------------------------------------- /tests/__snapshot__/jmx-servicemonitor_test.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/tests/__snapshot__/jmx-servicemonitor_test.yaml.snap -------------------------------------------------------------------------------- /tests/__snapshot__/puppetdb-pvc_test.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/tests/__snapshot__/puppetdb-pvc_test.yaml.snap -------------------------------------------------------------------------------- /tests/__snapshot__/puppetdb-servicemonitor_test.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/tests/__snapshot__/puppetdb-servicemonitor_test.yaml.snap -------------------------------------------------------------------------------- /tests/__snapshot__/puppetdb.networkpolicy_test.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/tests/__snapshot__/puppetdb.networkpolicy_test.yaml.snap -------------------------------------------------------------------------------- /tests/__snapshot__/puppetserver-ca-pvc_test.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/tests/__snapshot__/puppetserver-ca-pvc_test.yaml.snap -------------------------------------------------------------------------------- /tests/__snapshot__/puppetserver-code-pvc_test.yaml.snap: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /tests/__snapshot__/puppetserver-compilers.deployment_test.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/tests/__snapshot__/puppetserver-compilers.deployment_test.yaml.snap -------------------------------------------------------------------------------- /tests/__snapshot__/puppetserver-compilers.networkpolicy_test.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/tests/__snapshot__/puppetserver-compilers.networkpolicy_test.yaml.snap -------------------------------------------------------------------------------- /tests/__snapshot__/puppetserver-compilers.pdb_test.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/tests/__snapshot__/puppetserver-compilers.pdb_test.yaml.snap -------------------------------------------------------------------------------- /tests/__snapshot__/puppetserver-compilers.statefulset_test.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/tests/__snapshot__/puppetserver-compilers.statefulset_test.yaml.snap -------------------------------------------------------------------------------- /tests/__snapshot__/puppetserver-data-pvc_test.yaml.snap: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /tests/__snapshot__/puppetserver-masters.networkpolicy_test.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/tests/__snapshot__/puppetserver-masters.networkpolicy_test.yaml.snap -------------------------------------------------------------------------------- /tests/__snapshot__/puppetserver-masters.pdb_test.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/tests/__snapshot__/puppetserver-masters.pdb_test.yaml.snap -------------------------------------------------------------------------------- /tests/__snapshot__/puppetserver-pvc_test.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/tests/__snapshot__/puppetserver-pvc_test.yaml.snap -------------------------------------------------------------------------------- /tests/__snapshot__/puppetserver-statefulset.compilers_test.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/tests/__snapshot__/puppetserver-statefulset.compilers_test.yaml.snap -------------------------------------------------------------------------------- /tests/jmx-servicemonitor_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/tests/jmx-servicemonitor_test.yaml -------------------------------------------------------------------------------- /tests/puppetdb-pvc_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/tests/puppetdb-pvc_test.yaml -------------------------------------------------------------------------------- /tests/puppetdb-servicemonitor_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/tests/puppetdb-servicemonitor_test.yaml -------------------------------------------------------------------------------- /tests/puppetdb.networkpolicy_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/tests/puppetdb.networkpolicy_test.yaml -------------------------------------------------------------------------------- /tests/puppetserver-ca-pvc_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/tests/puppetserver-ca-pvc_test.yaml -------------------------------------------------------------------------------- /tests/puppetserver-code-pvc_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/tests/puppetserver-code-pvc_test.yaml -------------------------------------------------------------------------------- /tests/puppetserver-compilers.deployment_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/tests/puppetserver-compilers.deployment_test.yaml -------------------------------------------------------------------------------- /tests/puppetserver-compilers.networkpolicy_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/tests/puppetserver-compilers.networkpolicy_test.yaml -------------------------------------------------------------------------------- /tests/puppetserver-compilers.pdb_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/tests/puppetserver-compilers.pdb_test.yaml -------------------------------------------------------------------------------- /tests/puppetserver-compilers.statefulset_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/tests/puppetserver-compilers.statefulset_test.yaml -------------------------------------------------------------------------------- /tests/puppetserver-data-pvc_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/tests/puppetserver-data-pvc_test.yaml -------------------------------------------------------------------------------- /tests/puppetserver-masters.networkpolicy_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/tests/puppetserver-masters.networkpolicy_test.yaml -------------------------------------------------------------------------------- /tests/puppetserver-masters.pdb_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/tests/puppetserver-masters.pdb_test.yaml -------------------------------------------------------------------------------- /tests/puppetserver-pvc_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/tests/puppetserver-pvc_test.yaml -------------------------------------------------------------------------------- /values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/puppetserver-helm-chart/HEAD/values.yaml --------------------------------------------------------------------------------