├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── angular-osf ├── Chart.yaml ├── files │ └── robots.txt ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── configmap.yaml │ ├── deployment.yaml │ ├── hpa.yaml │ ├── ingress.yaml │ ├── pdb.yaml │ └── service.yaml └── values.yaml ├── barman ├── Chart.yaml ├── files │ └── barman.conf ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── configmap.yaml │ ├── secret.yaml │ └── statefulset.yaml └── values.yaml ├── bitnami-common ├── .helmignore ├── Chart.yaml ├── README.md ├── templates │ ├── _affinities.tpl │ ├── _capabilities.tpl │ ├── _errors.tpl │ ├── _images.tpl │ ├── _ingress.tpl │ ├── _labels.tpl │ ├── _names.tpl │ ├── _secrets.tpl │ ├── _storage.tpl │ ├── _tplvalues.tpl │ ├── _utils.tpl │ ├── _warnings.tpl │ └── validations │ │ ├── _cassandra.tpl │ │ ├── _mariadb.tpl │ │ ├── _mongodb.tpl │ │ ├── _mysql.tpl │ │ ├── _postgresql.tpl │ │ ├── _redis.tpl │ │ └── _validations.tpl └── values.yaml ├── cerebro ├── Chart.yaml ├── README.md ├── templates │ ├── _helpers.tpl │ ├── deployment.yaml │ └── secret.yaml └── values.yaml ├── cert-manager ├── Chart.yaml ├── README.md ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── cainjector-deployment.yaml │ ├── cainjector-psp-clusterrole.yaml │ ├── cainjector-psp-clusterrolebinding.yaml │ ├── cainjector-psp.yaml │ ├── cainjector-rbac.yaml │ ├── cainjector-serviceaccount.yaml │ ├── crds.yaml │ ├── deployment.yaml │ ├── psp-clusterrole.yaml │ ├── psp-clusterrolebinding.yaml │ ├── psp.yaml │ ├── rbac.yaml │ ├── service.yaml │ ├── serviceaccount.yaml │ ├── servicemonitor.yaml │ ├── startupapicheck-job.yaml │ ├── startupapicheck-psp-clusterrole.yaml │ ├── startupapicheck-psp-clusterrolebinding.yaml │ ├── startupapicheck-psp.yaml │ ├── startupapicheck-rbac.yaml │ ├── startupapicheck-serviceaccount.yaml │ ├── webhook-config.yaml │ ├── webhook-deployment.yaml │ ├── webhook-mutating-webhook.yaml │ ├── webhook-psp-clusterrole.yaml │ ├── webhook-psp-clusterrolebinding.yaml │ ├── webhook-psp.yaml │ ├── webhook-rbac.yaml │ ├── webhook-service.yaml │ ├── webhook-serviceaccount.yaml │ └── webhook-validating-webhook.yaml └── values.yaml ├── echoheaders ├── Chart.yaml ├── README.md ├── templates │ ├── _helpers.tpl │ ├── deployment.yaml │ ├── ingress.yaml │ └── service.yaml └── values.yaml ├── elastic-stack ├── .helmignore ├── Chart.yaml ├── README.md ├── requirements.lock ├── requirements.yaml ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ └── ingress.yaml └── values.yaml ├── elasticsearch-old ├── Chart.yaml ├── README.md ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── client-deployment.yaml │ ├── client-pdb.yaml │ ├── client-svc.yaml │ ├── clusterrole.yaml │ ├── clusterrolebinding.yaml │ ├── configmap.yaml │ ├── data-pdb.yaml │ ├── data-statefulset.yaml │ ├── master-pdb.yaml │ ├── master-statefulset.yaml │ ├── master-svc.yaml │ ├── secret.yaml │ └── service-account.yaml └── values.yaml ├── elasticsearch ├── Chart.yaml ├── Makefile ├── README.md ├── examples │ ├── config │ │ ├── Makefile │ │ ├── README.md │ │ ├── test │ │ │ └── goss.yaml │ │ ├── values.yaml │ │ └── watcher_encryption_key │ ├── default │ │ ├── Makefile │ │ ├── README.md │ │ ├── rolling_upgrade.sh │ │ └── test │ │ │ └── goss.yaml │ ├── docker-for-mac │ │ ├── Makefile │ │ ├── README.md │ │ └── values.yaml │ ├── kubernetes-kind │ │ ├── Makefile │ │ ├── README.md │ │ ├── values-local-path.yaml │ │ └── values.yaml │ ├── microk8s │ │ ├── Makefile │ │ ├── README.md │ │ └── values.yaml │ ├── migration │ │ ├── Makefile │ │ ├── README.md │ │ ├── client.yaml │ │ ├── data.yaml │ │ └── master.yaml │ ├── minikube │ │ ├── Makefile │ │ ├── README.md │ │ └── values.yaml │ ├── multi │ │ ├── Makefile │ │ ├── README.md │ │ ├── client.yaml │ │ ├── data.yaml │ │ ├── master.yaml │ │ └── test │ │ │ └── goss.yaml │ ├── networkpolicy │ │ ├── Makefile │ │ └── values.yaml │ ├── openshift │ │ ├── Makefile │ │ ├── README.md │ │ ├── test │ │ │ └── goss.yaml │ │ └── values.yaml │ ├── security │ │ ├── Makefile │ │ ├── README.md │ │ ├── test │ │ │ └── goss.yaml │ │ └── values.yaml │ └── upgrade │ │ ├── Makefile │ │ ├── README.md │ │ ├── test │ │ └── goss.yaml │ │ └── values.yaml ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── configmap.yaml │ ├── ingress.yaml │ ├── networkpolicy.yaml │ ├── poddisruptionbudget.yaml │ ├── podsecuritypolicy.yaml │ ├── role.yaml │ ├── rolebinding.yaml │ ├── secret-cert.yaml │ ├── secret.yaml │ ├── service.yaml │ ├── serviceaccount.yaml │ ├── statefulset.yaml │ └── test │ │ └── test-elasticsearch-health.yaml ├── tests │ └── elasticsearch_test.py └── values.yaml ├── ember ├── .helmignore ├── Chart.yaml ├── files │ ├── replace-config.js │ └── robots.txt ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── configmap.yaml │ ├── deployment.yaml │ ├── hpa.yaml │ ├── ingress.yaml │ ├── pdb.yaml │ └── service.yaml └── values.yaml ├── flower ├── .helmignore ├── Chart.yaml ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── deployment.yaml │ ├── ingress.yaml │ └── service.yaml └── values.yaml ├── gcloud-sqlproxy ├── .helmignore ├── Chart.yaml ├── README.md ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── deployment.yaml │ ├── networkpolicy.yaml │ ├── secrets.yaml │ └── svc.yaml └── values.yaml ├── http-redirect ├── Chart.yaml ├── README.md ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── configmap.yaml │ ├── deployment.yaml │ ├── ingress.yaml │ ├── networkpolicy.yaml │ └── service.yaml └── values.yaml ├── hubot ├── .helmignore ├── Chart.yaml ├── files │ └── scripts │ │ └── health-check.js ├── requirements.lock ├── requirements.yaml ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── configmap.yaml │ ├── deployment.yaml │ ├── hpa.yaml │ ├── ingress.yaml │ ├── pdb.yaml │ ├── secret.yaml │ └── service.yaml └── values.yaml ├── ingress-nginx ├── .helmignore ├── CHANGELOG.md ├── Chart.yaml ├── OWNERS ├── README.md ├── README.md.gotmpl ├── ci │ ├── controller-custom-ingressclass-flags.yaml │ ├── daemonset-customconfig-values.yaml │ ├── daemonset-customnodeport-values.yaml │ ├── daemonset-extra-modules.yaml │ ├── daemonset-headers-values.yaml │ ├── daemonset-internal-lb-values.yaml │ ├── daemonset-nodeport-values.yaml │ ├── daemonset-podannotations-values.yaml │ ├── daemonset-tcp-udp-configMapNamespace-values.yaml │ ├── daemonset-tcp-udp-values.yaml │ ├── daemonset-tcp-values.yaml │ ├── deamonset-default-values.yaml │ ├── deamonset-metrics-values.yaml │ ├── deamonset-psp-values.yaml │ ├── deamonset-webhook-and-psp-values.yaml │ ├── deamonset-webhook-values.yaml │ ├── deployment-autoscaling-behavior-values.yaml │ ├── deployment-autoscaling-values.yaml │ ├── deployment-customconfig-values.yaml │ ├── deployment-customnodeport-values.yaml │ ├── deployment-default-values.yaml │ ├── deployment-extra-modules.yaml │ ├── deployment-headers-values.yaml │ ├── deployment-internal-lb-values.yaml │ ├── deployment-metrics-values.yaml │ ├── deployment-nodeport-values.yaml │ ├── deployment-podannotations-values.yaml │ ├── deployment-psp-values.yaml │ ├── deployment-tcp-udp-configMapNamespace-values.yaml │ ├── deployment-tcp-udp-values.yaml │ ├── deployment-tcp-values.yaml │ ├── deployment-webhook-and-psp-values.yaml │ ├── deployment-webhook-resources-values.yaml │ └── deployment-webhook-values.yaml ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── _params.tpl │ ├── admission-webhooks │ │ ├── job-patch │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── job-createSecret.yaml │ │ │ ├── job-patchWebhook.yaml │ │ │ ├── psp.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ └── serviceaccount.yaml │ │ └── validating-webhook.yaml │ ├── clusterrole.yaml │ ├── clusterrolebinding.yaml │ ├── controller-configmap-addheaders.yaml │ ├── controller-configmap-proxyheaders.yaml │ ├── controller-configmap-tcp.yaml │ ├── controller-configmap-udp.yaml │ ├── controller-configmap.yaml │ ├── controller-daemonset.yaml │ ├── controller-deployment.yaml │ ├── controller-hpa.yaml │ ├── controller-ingressclass.yaml │ ├── controller-keda.yaml │ ├── controller-poddisruptionbudget.yaml │ ├── controller-prometheusrules.yaml │ ├── controller-psp.yaml │ ├── controller-role.yaml │ ├── controller-rolebinding.yaml │ ├── controller-service-internal.yaml │ ├── controller-service-metrics.yaml │ ├── controller-service-webhook.yaml │ ├── controller-service.yaml │ ├── controller-serviceaccount.yaml │ ├── controller-servicemonitor.yaml │ ├── default-backend-deployment.yaml │ ├── default-backend-hpa.yaml │ ├── default-backend-poddisruptionbudget.yaml │ ├── default-backend-psp.yaml │ ├── default-backend-role.yaml │ ├── default-backend-rolebinding.yaml │ ├── default-backend-service.yaml │ ├── default-backend-serviceaccount.yaml │ └── dh-param-secret.yaml └── values.yaml ├── jenkins ├── .helmignore ├── Chart.yaml ├── README.md ├── files │ └── robots.txt ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── agent-networkpolicy.yaml │ ├── certificate-webhook.yaml │ ├── certificate.yaml │ ├── clusterrole.yaml │ ├── clusterrolebinding.yaml │ ├── configmap.yaml │ ├── deployment.yaml │ ├── ingress-webhook.yaml │ ├── ingress.yaml │ ├── master-service.yaml │ ├── networkpolicy.yaml │ ├── pvc.yaml │ ├── secret.yaml │ ├── service-webhook.yaml │ ├── service.yaml │ └── serviceaccount.yaml └── values.yaml ├── kibana ├── .helmignore ├── Chart.yaml ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── deployment.yaml │ ├── ingress.yaml │ └── service.yaml └── values.yaml ├── maintenance ├── .helmignore ├── Chart.yaml ├── files │ ├── 503.html │ └── 503.json ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── configmap.yaml │ ├── deployment.yaml │ ├── hpa.yaml │ ├── pdb.yaml │ └── service.yaml └── values.yaml ├── mfr ├── .helmignore ├── Chart.yaml ├── files │ └── robots.txt ├── requirements.lock ├── requirements.yaml ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── autoroll-cron.yaml │ ├── certificate-networkpolicy.yaml │ ├── certificate.yaml │ ├── configmap.yaml │ ├── deployment.yaml │ ├── hpa.yaml │ ├── ingress.yaml │ ├── networkpolicy.yaml │ ├── pdb.yaml │ ├── secret.yaml │ ├── service.yaml │ ├── worker-deployment.yaml │ ├── worker-hpa.yaml │ └── worker-pdb.yaml └── values.yaml ├── mongodb ├── .helmignore ├── Chart.yaml ├── README.md ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── configmap.yaml │ ├── secret.yaml │ ├── service.yaml │ └── statefulset.yaml └── values.yaml ├── nessus ├── .helmignore ├── Chart.yaml ├── README.md ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── certificate.yaml │ ├── ingress.yaml │ ├── secret.yaml │ ├── service.yaml │ └── statefulset.yaml └── values.yaml ├── nginx-ingress ├── .helmignore ├── Chart.yaml ├── README.md ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── clusterrole.yaml │ ├── clusterrolebinding.yaml │ ├── controller-configmap.yaml │ ├── controller-daemonset.yaml │ ├── controller-deployment.yaml │ ├── controller-hpa.yaml │ ├── controller-metrics-service.yaml │ ├── controller-networkpolicy.yaml │ ├── controller-pdb.yaml │ ├── controller-service.yaml │ ├── controller-stats-service.yaml │ ├── default-backend-deployment.yaml │ ├── default-backend-networkpolicy.yaml │ ├── default-backend-pdb.yaml │ ├── default-backend-service.yaml │ ├── headers-configmap.yaml │ ├── role.yaml │ ├── rolebinding.yaml │ ├── serviceaccount.yaml │ ├── tcp-configmap.yaml │ └── udp-configmap.yaml └── values.yaml ├── nginx ├── .helmignore ├── Chart.yaml ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── certificate.yaml │ ├── configmap.yaml │ ├── deployment.yaml │ ├── ingress.yaml │ ├── service.yaml │ └── tests │ │ └── test-connection.yaml └── values.yaml ├── osf-cas ├── .helmignore ├── Chart.yaml ├── files │ ├── apache │ │ └── shibboleth │ │ │ ├── accessError.html │ │ │ ├── attrChecker.html │ │ │ ├── attribute-map.xml │ │ │ ├── attribute-policy.xml │ │ │ ├── bindingTemplate.html │ │ │ ├── console.logger │ │ │ ├── discoveryTemplate.html │ │ │ ├── globalLogout.html │ │ │ ├── localLogout.html │ │ │ ├── metadataError.html │ │ │ ├── native.logger │ │ │ ├── partialLogout.html │ │ │ ├── postTemplate.html │ │ │ ├── protocols.xml │ │ │ ├── security-policy.xml │ │ │ ├── sessionError.html │ │ │ ├── shibd.logger │ │ │ ├── sslError.html │ │ │ ├── syslog.logger │ │ │ └── upgrade.xsl │ └── jetty │ │ └── institutions-auth.xsl ├── requirements.lock ├── requirements.yaml ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── certificate-networkpolicy.yaml │ ├── certificate.yaml │ ├── configmap.yaml │ ├── deployment.yaml │ ├── hpa.yaml │ ├── ingress.yaml │ ├── networkpolicy.yaml │ ├── pdb.yaml │ ├── secret.yaml │ └── service.yaml └── values.yaml ├── osf-graveyvalet ├── Chart.yaml ├── files │ └── robots.txt ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── beat-deployment.yaml │ ├── beat-pvc.yaml │ ├── certificate-networkpolicy.yaml │ ├── certificate.yaml │ ├── configmap.yaml │ ├── deployment.yaml │ ├── hpa.yaml │ ├── ingress.yaml │ ├── migration-job.yaml │ ├── migration-secret.yaml │ ├── networkpolicy.yaml │ ├── pdb.yaml │ ├── secret.yaml │ ├── service.yaml │ └── worker-deployment.yaml └── values.yaml ├── osf-pigeon ├── Chart.yaml ├── files │ └── robots.txt ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── certificate-networkpolicy.yaml │ ├── certificate.yaml │ ├── configmap.yaml │ ├── deployment.yaml │ ├── hpa.yaml │ ├── ingress.yaml │ ├── networkpolicy.yaml │ ├── pdb.yaml │ ├── secret.yaml │ └── service.yaml └── values.yaml ├── osf-preprints ├── Chart.yaml ├── requirements.lock ├── requirements.yaml ├── templates │ └── .gitkeep └── values.yaml ├── osf-reviews ├── Chart.yaml ├── requirements.lock ├── requirements.yaml ├── templates │ └── .gitkeep └── values.yaml ├── osf-web-mirage ├── Chart.yaml ├── requirements.yaml ├── templates │ └── .gitkeep └── values.yaml ├── osf-web ├── Chart.yaml ├── requirements.lock ├── requirements.yaml ├── templates │ └── .gitkeep └── values.yaml ├── osf ├── .helmignore ├── Chart.yaml ├── README.md ├── files │ ├── admin-robots.txt │ ├── api-robots.txt │ └── web-robots.txt ├── requirements.lock ├── requirements.yaml ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── admin-certificate.yaml │ ├── admin-deployment.yaml │ ├── admin-hpa.yaml │ ├── admin-ingress.yaml │ ├── admin-pdb.yaml │ ├── admin-pvc.yaml │ ├── admin-service.yaml │ ├── api-certificate.yaml │ ├── api-deployment.yaml │ ├── api-hpa.yaml │ ├── api-ingress.yaml │ ├── api-pdb.yaml │ ├── api-service.yaml │ ├── beat-deployment.yaml │ ├── beat-pvc.yaml │ ├── certificate-networkpolicy.yaml │ ├── configmap.yaml │ ├── migration-job.yaml │ ├── migration-pvc.yaml │ ├── migration-secret.yaml │ ├── purge-cronjob.yaml │ ├── purge-pvc.yaml │ ├── purge-secret.yaml │ ├── secret.yaml │ ├── task-hpa.yaml │ ├── task-pdb.yaml │ ├── task-statefulset.yaml │ ├── web-certificate.yaml │ ├── web-deployment.yaml │ ├── web-hpa.yaml │ ├── web-ingress.yaml │ ├── web-pdb.yaml │ ├── web-service.yaml │ ├── worker-deployment.yaml │ ├── worker-hpa.yaml │ └── worker-pdb.yaml └── values.yaml ├── pgbouncer ├── .helmignore ├── Chart.yaml ├── README.md ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── configmap.yaml │ ├── deployment.yaml │ ├── pdb.yaml │ ├── secret.yaml │ └── service.yaml └── values.yaml ├── postgresql-ha ├── .helmignore ├── Chart.yaml ├── README.md ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── extra-list.yaml │ ├── ldap-secrets.yaml │ ├── metrics-configmap.yaml │ ├── networkpolicy-egress.yaml │ ├── networkpolicy-ingress.yaml │ ├── pgpool │ │ ├── configmap.yaml │ │ ├── custom-users-secrets.yaml │ │ ├── deployment.yaml │ │ ├── initdb-scripts-configmap.yaml │ │ ├── pdb.yaml │ │ ├── secrets.yaml │ │ └── service.yaml │ ├── podsecuritypolicy.yaml │ ├── postgresql │ │ ├── configmap.yaml │ │ ├── extended-configmap.yaml │ │ ├── hooks-scripts-configmap.yaml │ │ ├── initdb-scripts-configmap.yaml │ │ ├── metrics-service.yaml │ │ ├── pdb.yaml │ │ ├── secrets.yaml │ │ ├── service-headless.yaml │ │ ├── service-witness.yaml │ │ ├── service.yaml │ │ ├── servicemonitor.yaml │ │ ├── statefulset.yaml │ │ └── witness-statefulset.yaml │ ├── role.yaml │ ├── rolebinding.yaml │ ├── serviceaccount.yaml │ └── tls-secrets.yaml ├── values.schema.json └── values.yaml ├── postgresql ├── Chart.yaml ├── README.md ├── files │ ├── entrypoint.sh │ ├── repmgr.conf │ └── supervisord.conf ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── configmap.yaml │ ├── master-service.yaml │ ├── master-statefulset.yaml │ ├── networkpolicy.yaml │ ├── secret.yaml │ ├── standby-service.yaml │ └── standby-statefulset.yaml └── values.yaml ├── prerender ├── .helmignore ├── Chart.yaml ├── requirements.lock ├── requirements.yaml ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── configmap.yaml │ ├── deployment.yaml │ ├── hpa.yaml │ ├── ingress.yaml │ ├── pdb.yaml │ ├── secret.yaml │ └── service.yaml └── values.yaml ├── rabbitmq ├── .helmignore ├── Chart.yaml ├── README.md ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── certs.yaml │ ├── configuration.yaml │ ├── healthchecks.yaml │ ├── ingress.yaml │ ├── role.yaml │ ├── rolebinding.yaml │ ├── secrets.yaml │ ├── serviceaccount.yaml │ ├── servicemonitor.yaml │ ├── statefulset.yaml │ ├── svc-headless.yaml │ └── svc.yaml ├── values-production.yaml └── values.yaml ├── redis ├── .helmignore ├── Chart.yaml ├── README.md ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── networkpolicy.yaml │ ├── secret.yaml │ ├── service.yaml │ └── statefulset.yaml └── values.yaml ├── sentry ├── .helmignore ├── Chart.yaml ├── README.md ├── requirements.lock ├── requirements.yaml ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── certificate.yaml │ ├── client-certificate.yaml │ ├── client-ingress.yaml │ ├── client-service.yaml │ ├── configmap.yaml │ ├── cron-deployment.yaml │ ├── hooks │ │ ├── db-init.job.yaml │ │ └── user-create.job.yaml │ ├── ingress.yaml │ ├── secret.yaml │ ├── service.yaml │ ├── statefulset.yaml │ └── workers-deployment.yaml └── values.yaml ├── share-web ├── Chart.yaml ├── requirements.lock ├── requirements.yaml ├── templates │ └── .gitkeep └── values.yaml ├── share ├── .helmignore ├── Chart.yaml ├── files │ ├── robots.txt │ └── uwsgi.ini ├── requirements.lock ├── requirements.yaml ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── beat-deployment.yaml │ ├── certificate.yaml │ ├── configmap.yaml │ ├── indexer-deployment.yaml │ ├── indexer-hpa.yaml │ ├── indexer-pdb.yaml │ ├── migration-job.yaml │ ├── pg-secret.yaml │ ├── secret.yaml │ ├── web-deployment.yaml │ ├── web-hpa.yaml │ ├── web-ingress.yaml │ ├── web-pdb.yaml │ ├── web-service.yaml │ ├── worker-deployment.yaml │ ├── worker-hpa.yaml │ └── worker-pdb.yaml └── values.yaml ├── sharejs ├── .helmignore ├── Chart.yaml ├── files │ └── robots.txt ├── requirements.lock ├── requirements.yaml ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── configmap.yaml │ ├── deployment.yaml │ ├── hpa.yaml │ ├── ingress.yaml │ ├── pdb.yaml │ ├── secret.yaml │ └── service.yaml └── values.yaml ├── tls-certificates ├── .helmignore ├── Chart.yaml ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ └── secretlist.yaml └── values.yaml ├── triton-share ├── .helmignore ├── Chart.yaml ├── files │ ├── app.js │ └── robots.txt ├── requirements.lock ├── requirements.yaml ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── certificate-networkpolicy.yaml │ ├── certificate.yaml │ ├── configmap.yaml │ ├── deployment.yaml │ ├── ingress.yaml │ ├── networkpolicy.yaml │ ├── service.yaml │ └── tests │ │ └── test-connection.yaml └── values.yaml └── wb ├── .helmignore ├── Chart.yaml ├── files └── robots.txt ├── requirements.lock ├── requirements.yaml ├── templates ├── NOTES.txt ├── _helpers.tpl ├── certificate-networkpolicy.yaml ├── certificate.yaml ├── configmap.yaml ├── deployment.yaml ├── hpa.yaml ├── ingress.yaml ├── networkpolicy.yaml ├── pdb.yaml ├── secret.yaml └── service.yaml └── values.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | charts/ -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/README.md -------------------------------------------------------------------------------- /angular-osf/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/angular-osf/Chart.yaml -------------------------------------------------------------------------------- /angular-osf/files/robots.txt: -------------------------------------------------------------------------------- 1 | # http://www.robotstxt.org 2 | User-agent: * 3 | Disallow: / 4 | -------------------------------------------------------------------------------- /angular-osf/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/angular-osf/templates/NOTES.txt -------------------------------------------------------------------------------- /angular-osf/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/angular-osf/templates/_helpers.tpl -------------------------------------------------------------------------------- /angular-osf/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/angular-osf/templates/configmap.yaml -------------------------------------------------------------------------------- /angular-osf/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/angular-osf/templates/deployment.yaml -------------------------------------------------------------------------------- /angular-osf/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/angular-osf/templates/hpa.yaml -------------------------------------------------------------------------------- /angular-osf/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/angular-osf/templates/ingress.yaml -------------------------------------------------------------------------------- /angular-osf/templates/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/angular-osf/templates/pdb.yaml -------------------------------------------------------------------------------- /angular-osf/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/angular-osf/templates/service.yaml -------------------------------------------------------------------------------- /angular-osf/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/angular-osf/values.yaml -------------------------------------------------------------------------------- /barman/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/barman/Chart.yaml -------------------------------------------------------------------------------- /barman/files/barman.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/barman/files/barman.conf -------------------------------------------------------------------------------- /barman/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/barman/templates/NOTES.txt -------------------------------------------------------------------------------- /barman/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/barman/templates/_helpers.tpl -------------------------------------------------------------------------------- /barman/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/barman/templates/configmap.yaml -------------------------------------------------------------------------------- /barman/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/barman/templates/secret.yaml -------------------------------------------------------------------------------- /barman/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/barman/templates/statefulset.yaml -------------------------------------------------------------------------------- /barman/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/barman/values.yaml -------------------------------------------------------------------------------- /bitnami-common/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/bitnami-common/.helmignore -------------------------------------------------------------------------------- /bitnami-common/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/bitnami-common/Chart.yaml -------------------------------------------------------------------------------- /bitnami-common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/bitnami-common/README.md -------------------------------------------------------------------------------- /bitnami-common/templates/_affinities.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/bitnami-common/templates/_affinities.tpl -------------------------------------------------------------------------------- /bitnami-common/templates/_capabilities.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/bitnami-common/templates/_capabilities.tpl -------------------------------------------------------------------------------- /bitnami-common/templates/_errors.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/bitnami-common/templates/_errors.tpl -------------------------------------------------------------------------------- /bitnami-common/templates/_images.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/bitnami-common/templates/_images.tpl -------------------------------------------------------------------------------- /bitnami-common/templates/_ingress.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/bitnami-common/templates/_ingress.tpl -------------------------------------------------------------------------------- /bitnami-common/templates/_labels.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/bitnami-common/templates/_labels.tpl -------------------------------------------------------------------------------- /bitnami-common/templates/_names.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/bitnami-common/templates/_names.tpl -------------------------------------------------------------------------------- /bitnami-common/templates/_secrets.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/bitnami-common/templates/_secrets.tpl -------------------------------------------------------------------------------- /bitnami-common/templates/_storage.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/bitnami-common/templates/_storage.tpl -------------------------------------------------------------------------------- /bitnami-common/templates/_tplvalues.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/bitnami-common/templates/_tplvalues.tpl -------------------------------------------------------------------------------- /bitnami-common/templates/_utils.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/bitnami-common/templates/_utils.tpl -------------------------------------------------------------------------------- /bitnami-common/templates/_warnings.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/bitnami-common/templates/_warnings.tpl -------------------------------------------------------------------------------- /bitnami-common/templates/validations/_cassandra.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/bitnami-common/templates/validations/_cassandra.tpl -------------------------------------------------------------------------------- /bitnami-common/templates/validations/_mariadb.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/bitnami-common/templates/validations/_mariadb.tpl -------------------------------------------------------------------------------- /bitnami-common/templates/validations/_mongodb.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/bitnami-common/templates/validations/_mongodb.tpl -------------------------------------------------------------------------------- /bitnami-common/templates/validations/_mysql.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/bitnami-common/templates/validations/_mysql.tpl -------------------------------------------------------------------------------- /bitnami-common/templates/validations/_postgresql.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/bitnami-common/templates/validations/_postgresql.tpl -------------------------------------------------------------------------------- /bitnami-common/templates/validations/_redis.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/bitnami-common/templates/validations/_redis.tpl -------------------------------------------------------------------------------- /bitnami-common/templates/validations/_validations.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/bitnami-common/templates/validations/_validations.tpl -------------------------------------------------------------------------------- /bitnami-common/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/bitnami-common/values.yaml -------------------------------------------------------------------------------- /cerebro/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/cerebro/Chart.yaml -------------------------------------------------------------------------------- /cerebro/README.md: -------------------------------------------------------------------------------- 1 | # cerebro 2 | -------------------------------------------------------------------------------- /cerebro/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/cerebro/templates/_helpers.tpl -------------------------------------------------------------------------------- /cerebro/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/cerebro/templates/deployment.yaml -------------------------------------------------------------------------------- /cerebro/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/cerebro/templates/secret.yaml -------------------------------------------------------------------------------- /cerebro/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/cerebro/values.yaml -------------------------------------------------------------------------------- /cert-manager/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/cert-manager/Chart.yaml -------------------------------------------------------------------------------- /cert-manager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/cert-manager/README.md -------------------------------------------------------------------------------- /cert-manager/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/cert-manager/templates/NOTES.txt -------------------------------------------------------------------------------- /cert-manager/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/cert-manager/templates/_helpers.tpl -------------------------------------------------------------------------------- /cert-manager/templates/cainjector-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/cert-manager/templates/cainjector-deployment.yaml -------------------------------------------------------------------------------- /cert-manager/templates/cainjector-psp-clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/cert-manager/templates/cainjector-psp-clusterrole.yaml -------------------------------------------------------------------------------- /cert-manager/templates/cainjector-psp-clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/cert-manager/templates/cainjector-psp-clusterrolebinding.yaml -------------------------------------------------------------------------------- /cert-manager/templates/cainjector-psp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/cert-manager/templates/cainjector-psp.yaml -------------------------------------------------------------------------------- /cert-manager/templates/cainjector-rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/cert-manager/templates/cainjector-rbac.yaml -------------------------------------------------------------------------------- /cert-manager/templates/cainjector-serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/cert-manager/templates/cainjector-serviceaccount.yaml -------------------------------------------------------------------------------- /cert-manager/templates/crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/cert-manager/templates/crds.yaml -------------------------------------------------------------------------------- /cert-manager/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/cert-manager/templates/deployment.yaml -------------------------------------------------------------------------------- /cert-manager/templates/psp-clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/cert-manager/templates/psp-clusterrole.yaml -------------------------------------------------------------------------------- /cert-manager/templates/psp-clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/cert-manager/templates/psp-clusterrolebinding.yaml -------------------------------------------------------------------------------- /cert-manager/templates/psp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/cert-manager/templates/psp.yaml -------------------------------------------------------------------------------- /cert-manager/templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/cert-manager/templates/rbac.yaml -------------------------------------------------------------------------------- /cert-manager/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/cert-manager/templates/service.yaml -------------------------------------------------------------------------------- /cert-manager/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/cert-manager/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /cert-manager/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/cert-manager/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /cert-manager/templates/startupapicheck-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/cert-manager/templates/startupapicheck-job.yaml -------------------------------------------------------------------------------- /cert-manager/templates/startupapicheck-psp-clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/cert-manager/templates/startupapicheck-psp-clusterrole.yaml -------------------------------------------------------------------------------- /cert-manager/templates/startupapicheck-psp-clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/cert-manager/templates/startupapicheck-psp-clusterrolebinding.yaml -------------------------------------------------------------------------------- /cert-manager/templates/startupapicheck-psp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/cert-manager/templates/startupapicheck-psp.yaml -------------------------------------------------------------------------------- /cert-manager/templates/startupapicheck-rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/cert-manager/templates/startupapicheck-rbac.yaml -------------------------------------------------------------------------------- /cert-manager/templates/startupapicheck-serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/cert-manager/templates/startupapicheck-serviceaccount.yaml -------------------------------------------------------------------------------- /cert-manager/templates/webhook-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/cert-manager/templates/webhook-config.yaml -------------------------------------------------------------------------------- /cert-manager/templates/webhook-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/cert-manager/templates/webhook-deployment.yaml -------------------------------------------------------------------------------- /cert-manager/templates/webhook-mutating-webhook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/cert-manager/templates/webhook-mutating-webhook.yaml -------------------------------------------------------------------------------- /cert-manager/templates/webhook-psp-clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/cert-manager/templates/webhook-psp-clusterrole.yaml -------------------------------------------------------------------------------- /cert-manager/templates/webhook-psp-clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/cert-manager/templates/webhook-psp-clusterrolebinding.yaml -------------------------------------------------------------------------------- /cert-manager/templates/webhook-psp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/cert-manager/templates/webhook-psp.yaml -------------------------------------------------------------------------------- /cert-manager/templates/webhook-rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/cert-manager/templates/webhook-rbac.yaml -------------------------------------------------------------------------------- /cert-manager/templates/webhook-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/cert-manager/templates/webhook-service.yaml -------------------------------------------------------------------------------- /cert-manager/templates/webhook-serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/cert-manager/templates/webhook-serviceaccount.yaml -------------------------------------------------------------------------------- /cert-manager/templates/webhook-validating-webhook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/cert-manager/templates/webhook-validating-webhook.yaml -------------------------------------------------------------------------------- /cert-manager/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/cert-manager/values.yaml -------------------------------------------------------------------------------- /echoheaders/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/echoheaders/Chart.yaml -------------------------------------------------------------------------------- /echoheaders/README.md: -------------------------------------------------------------------------------- 1 | # Echoheaders Helm Chart 2 | -------------------------------------------------------------------------------- /echoheaders/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/echoheaders/templates/_helpers.tpl -------------------------------------------------------------------------------- /echoheaders/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/echoheaders/templates/deployment.yaml -------------------------------------------------------------------------------- /echoheaders/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/echoheaders/templates/ingress.yaml -------------------------------------------------------------------------------- /echoheaders/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/echoheaders/templates/service.yaml -------------------------------------------------------------------------------- /echoheaders/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/echoheaders/values.yaml -------------------------------------------------------------------------------- /elastic-stack/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elastic-stack/.helmignore -------------------------------------------------------------------------------- /elastic-stack/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elastic-stack/Chart.yaml -------------------------------------------------------------------------------- /elastic-stack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elastic-stack/README.md -------------------------------------------------------------------------------- /elastic-stack/requirements.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elastic-stack/requirements.lock -------------------------------------------------------------------------------- /elastic-stack/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elastic-stack/requirements.yaml -------------------------------------------------------------------------------- /elastic-stack/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elastic-stack/templates/NOTES.txt -------------------------------------------------------------------------------- /elastic-stack/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elastic-stack/templates/_helpers.tpl -------------------------------------------------------------------------------- /elastic-stack/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elastic-stack/templates/ingress.yaml -------------------------------------------------------------------------------- /elastic-stack/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elastic-stack/values.yaml -------------------------------------------------------------------------------- /elasticsearch-old/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch-old/Chart.yaml -------------------------------------------------------------------------------- /elasticsearch-old/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch-old/README.md -------------------------------------------------------------------------------- /elasticsearch-old/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch-old/templates/NOTES.txt -------------------------------------------------------------------------------- /elasticsearch-old/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch-old/templates/_helpers.tpl -------------------------------------------------------------------------------- /elasticsearch-old/templates/client-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch-old/templates/client-deployment.yaml -------------------------------------------------------------------------------- /elasticsearch-old/templates/client-pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch-old/templates/client-pdb.yaml -------------------------------------------------------------------------------- /elasticsearch-old/templates/client-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch-old/templates/client-svc.yaml -------------------------------------------------------------------------------- /elasticsearch-old/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch-old/templates/clusterrole.yaml -------------------------------------------------------------------------------- /elasticsearch-old/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch-old/templates/clusterrolebinding.yaml -------------------------------------------------------------------------------- /elasticsearch-old/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch-old/templates/configmap.yaml -------------------------------------------------------------------------------- /elasticsearch-old/templates/data-pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch-old/templates/data-pdb.yaml -------------------------------------------------------------------------------- /elasticsearch-old/templates/data-statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch-old/templates/data-statefulset.yaml -------------------------------------------------------------------------------- /elasticsearch-old/templates/master-pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch-old/templates/master-pdb.yaml -------------------------------------------------------------------------------- /elasticsearch-old/templates/master-statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch-old/templates/master-statefulset.yaml -------------------------------------------------------------------------------- /elasticsearch-old/templates/master-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch-old/templates/master-svc.yaml -------------------------------------------------------------------------------- /elasticsearch-old/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch-old/templates/secret.yaml -------------------------------------------------------------------------------- /elasticsearch-old/templates/service-account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch-old/templates/service-account.yaml -------------------------------------------------------------------------------- /elasticsearch-old/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch-old/values.yaml -------------------------------------------------------------------------------- /elasticsearch/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/Chart.yaml -------------------------------------------------------------------------------- /elasticsearch/Makefile: -------------------------------------------------------------------------------- 1 | include ../helpers/common.mk 2 | -------------------------------------------------------------------------------- /elasticsearch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/README.md -------------------------------------------------------------------------------- /elasticsearch/examples/config/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/examples/config/Makefile -------------------------------------------------------------------------------- /elasticsearch/examples/config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/examples/config/README.md -------------------------------------------------------------------------------- /elasticsearch/examples/config/test/goss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/examples/config/test/goss.yaml -------------------------------------------------------------------------------- /elasticsearch/examples/config/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/examples/config/values.yaml -------------------------------------------------------------------------------- /elasticsearch/examples/config/watcher_encryption_key: -------------------------------------------------------------------------------- 1 | supersecret 2 | -------------------------------------------------------------------------------- /elasticsearch/examples/default/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/examples/default/Makefile -------------------------------------------------------------------------------- /elasticsearch/examples/default/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/examples/default/README.md -------------------------------------------------------------------------------- /elasticsearch/examples/default/rolling_upgrade.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/examples/default/rolling_upgrade.sh -------------------------------------------------------------------------------- /elasticsearch/examples/default/test/goss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/examples/default/test/goss.yaml -------------------------------------------------------------------------------- /elasticsearch/examples/docker-for-mac/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/examples/docker-for-mac/Makefile -------------------------------------------------------------------------------- /elasticsearch/examples/docker-for-mac/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/examples/docker-for-mac/README.md -------------------------------------------------------------------------------- /elasticsearch/examples/docker-for-mac/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/examples/docker-for-mac/values.yaml -------------------------------------------------------------------------------- /elasticsearch/examples/kubernetes-kind/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/examples/kubernetes-kind/Makefile -------------------------------------------------------------------------------- /elasticsearch/examples/kubernetes-kind/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/examples/kubernetes-kind/README.md -------------------------------------------------------------------------------- /elasticsearch/examples/kubernetes-kind/values-local-path.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/examples/kubernetes-kind/values-local-path.yaml -------------------------------------------------------------------------------- /elasticsearch/examples/kubernetes-kind/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/examples/kubernetes-kind/values.yaml -------------------------------------------------------------------------------- /elasticsearch/examples/microk8s/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/examples/microk8s/Makefile -------------------------------------------------------------------------------- /elasticsearch/examples/microk8s/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/examples/microk8s/README.md -------------------------------------------------------------------------------- /elasticsearch/examples/microk8s/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/examples/microk8s/values.yaml -------------------------------------------------------------------------------- /elasticsearch/examples/migration/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/examples/migration/Makefile -------------------------------------------------------------------------------- /elasticsearch/examples/migration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/examples/migration/README.md -------------------------------------------------------------------------------- /elasticsearch/examples/migration/client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/examples/migration/client.yaml -------------------------------------------------------------------------------- /elasticsearch/examples/migration/data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/examples/migration/data.yaml -------------------------------------------------------------------------------- /elasticsearch/examples/migration/master.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/examples/migration/master.yaml -------------------------------------------------------------------------------- /elasticsearch/examples/minikube/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/examples/minikube/Makefile -------------------------------------------------------------------------------- /elasticsearch/examples/minikube/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/examples/minikube/README.md -------------------------------------------------------------------------------- /elasticsearch/examples/minikube/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/examples/minikube/values.yaml -------------------------------------------------------------------------------- /elasticsearch/examples/multi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/examples/multi/Makefile -------------------------------------------------------------------------------- /elasticsearch/examples/multi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/examples/multi/README.md -------------------------------------------------------------------------------- /elasticsearch/examples/multi/client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/examples/multi/client.yaml -------------------------------------------------------------------------------- /elasticsearch/examples/multi/data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/examples/multi/data.yaml -------------------------------------------------------------------------------- /elasticsearch/examples/multi/master.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/examples/multi/master.yaml -------------------------------------------------------------------------------- /elasticsearch/examples/multi/test/goss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/examples/multi/test/goss.yaml -------------------------------------------------------------------------------- /elasticsearch/examples/networkpolicy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/examples/networkpolicy/Makefile -------------------------------------------------------------------------------- /elasticsearch/examples/networkpolicy/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/examples/networkpolicy/values.yaml -------------------------------------------------------------------------------- /elasticsearch/examples/openshift/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/examples/openshift/Makefile -------------------------------------------------------------------------------- /elasticsearch/examples/openshift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/examples/openshift/README.md -------------------------------------------------------------------------------- /elasticsearch/examples/openshift/test/goss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/examples/openshift/test/goss.yaml -------------------------------------------------------------------------------- /elasticsearch/examples/openshift/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/examples/openshift/values.yaml -------------------------------------------------------------------------------- /elasticsearch/examples/security/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/examples/security/Makefile -------------------------------------------------------------------------------- /elasticsearch/examples/security/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/examples/security/README.md -------------------------------------------------------------------------------- /elasticsearch/examples/security/test/goss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/examples/security/test/goss.yaml -------------------------------------------------------------------------------- /elasticsearch/examples/security/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/examples/security/values.yaml -------------------------------------------------------------------------------- /elasticsearch/examples/upgrade/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/examples/upgrade/Makefile -------------------------------------------------------------------------------- /elasticsearch/examples/upgrade/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/examples/upgrade/README.md -------------------------------------------------------------------------------- /elasticsearch/examples/upgrade/test/goss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/examples/upgrade/test/goss.yaml -------------------------------------------------------------------------------- /elasticsearch/examples/upgrade/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/examples/upgrade/values.yaml -------------------------------------------------------------------------------- /elasticsearch/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/templates/NOTES.txt -------------------------------------------------------------------------------- /elasticsearch/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/templates/_helpers.tpl -------------------------------------------------------------------------------- /elasticsearch/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/templates/configmap.yaml -------------------------------------------------------------------------------- /elasticsearch/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/templates/ingress.yaml -------------------------------------------------------------------------------- /elasticsearch/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /elasticsearch/templates/poddisruptionbudget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/templates/poddisruptionbudget.yaml -------------------------------------------------------------------------------- /elasticsearch/templates/podsecuritypolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/templates/podsecuritypolicy.yaml -------------------------------------------------------------------------------- /elasticsearch/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/templates/role.yaml -------------------------------------------------------------------------------- /elasticsearch/templates/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/templates/rolebinding.yaml -------------------------------------------------------------------------------- /elasticsearch/templates/secret-cert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/templates/secret-cert.yaml -------------------------------------------------------------------------------- /elasticsearch/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/templates/secret.yaml -------------------------------------------------------------------------------- /elasticsearch/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/templates/service.yaml -------------------------------------------------------------------------------- /elasticsearch/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /elasticsearch/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/templates/statefulset.yaml -------------------------------------------------------------------------------- /elasticsearch/templates/test/test-elasticsearch-health.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/templates/test/test-elasticsearch-health.yaml -------------------------------------------------------------------------------- /elasticsearch/tests/elasticsearch_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/tests/elasticsearch_test.py -------------------------------------------------------------------------------- /elasticsearch/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/elasticsearch/values.yaml -------------------------------------------------------------------------------- /ember/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ember/.helmignore -------------------------------------------------------------------------------- /ember/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ember/Chart.yaml -------------------------------------------------------------------------------- /ember/files/replace-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ember/files/replace-config.js -------------------------------------------------------------------------------- /ember/files/robots.txt: -------------------------------------------------------------------------------- 1 | # http://www.robotstxt.org 2 | User-agent: * 3 | Disallow: / 4 | -------------------------------------------------------------------------------- /ember/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ember/templates/NOTES.txt -------------------------------------------------------------------------------- /ember/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ember/templates/_helpers.tpl -------------------------------------------------------------------------------- /ember/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ember/templates/configmap.yaml -------------------------------------------------------------------------------- /ember/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ember/templates/deployment.yaml -------------------------------------------------------------------------------- /ember/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ember/templates/hpa.yaml -------------------------------------------------------------------------------- /ember/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ember/templates/ingress.yaml -------------------------------------------------------------------------------- /ember/templates/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ember/templates/pdb.yaml -------------------------------------------------------------------------------- /ember/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ember/templates/service.yaml -------------------------------------------------------------------------------- /ember/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ember/values.yaml -------------------------------------------------------------------------------- /flower/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/flower/.helmignore -------------------------------------------------------------------------------- /flower/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/flower/Chart.yaml -------------------------------------------------------------------------------- /flower/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/flower/templates/NOTES.txt -------------------------------------------------------------------------------- /flower/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/flower/templates/_helpers.tpl -------------------------------------------------------------------------------- /flower/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/flower/templates/deployment.yaml -------------------------------------------------------------------------------- /flower/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/flower/templates/ingress.yaml -------------------------------------------------------------------------------- /flower/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/flower/templates/service.yaml -------------------------------------------------------------------------------- /flower/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/flower/values.yaml -------------------------------------------------------------------------------- /gcloud-sqlproxy/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/gcloud-sqlproxy/.helmignore -------------------------------------------------------------------------------- /gcloud-sqlproxy/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/gcloud-sqlproxy/Chart.yaml -------------------------------------------------------------------------------- /gcloud-sqlproxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/gcloud-sqlproxy/README.md -------------------------------------------------------------------------------- /gcloud-sqlproxy/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/gcloud-sqlproxy/templates/NOTES.txt -------------------------------------------------------------------------------- /gcloud-sqlproxy/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/gcloud-sqlproxy/templates/_helpers.tpl -------------------------------------------------------------------------------- /gcloud-sqlproxy/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/gcloud-sqlproxy/templates/deployment.yaml -------------------------------------------------------------------------------- /gcloud-sqlproxy/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/gcloud-sqlproxy/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /gcloud-sqlproxy/templates/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/gcloud-sqlproxy/templates/secrets.yaml -------------------------------------------------------------------------------- /gcloud-sqlproxy/templates/svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/gcloud-sqlproxy/templates/svc.yaml -------------------------------------------------------------------------------- /gcloud-sqlproxy/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/gcloud-sqlproxy/values.yaml -------------------------------------------------------------------------------- /http-redirect/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/http-redirect/Chart.yaml -------------------------------------------------------------------------------- /http-redirect/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/http-redirect/README.md -------------------------------------------------------------------------------- /http-redirect/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | The http-redirect has been installed. 2 | -------------------------------------------------------------------------------- /http-redirect/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/http-redirect/templates/_helpers.tpl -------------------------------------------------------------------------------- /http-redirect/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/http-redirect/templates/configmap.yaml -------------------------------------------------------------------------------- /http-redirect/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/http-redirect/templates/deployment.yaml -------------------------------------------------------------------------------- /http-redirect/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/http-redirect/templates/ingress.yaml -------------------------------------------------------------------------------- /http-redirect/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/http-redirect/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /http-redirect/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/http-redirect/templates/service.yaml -------------------------------------------------------------------------------- /http-redirect/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/http-redirect/values.yaml -------------------------------------------------------------------------------- /hubot/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/hubot/.helmignore -------------------------------------------------------------------------------- /hubot/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/hubot/Chart.yaml -------------------------------------------------------------------------------- /hubot/files/scripts/health-check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/hubot/files/scripts/health-check.js -------------------------------------------------------------------------------- /hubot/requirements.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/hubot/requirements.lock -------------------------------------------------------------------------------- /hubot/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/hubot/requirements.yaml -------------------------------------------------------------------------------- /hubot/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | Check your chat service at type: 2 | 3 | hubot ping 4 | -------------------------------------------------------------------------------- /hubot/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/hubot/templates/_helpers.tpl -------------------------------------------------------------------------------- /hubot/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/hubot/templates/configmap.yaml -------------------------------------------------------------------------------- /hubot/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/hubot/templates/deployment.yaml -------------------------------------------------------------------------------- /hubot/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/hubot/templates/hpa.yaml -------------------------------------------------------------------------------- /hubot/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/hubot/templates/ingress.yaml -------------------------------------------------------------------------------- /hubot/templates/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/hubot/templates/pdb.yaml -------------------------------------------------------------------------------- /hubot/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/hubot/templates/secret.yaml -------------------------------------------------------------------------------- /hubot/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/hubot/templates/service.yaml -------------------------------------------------------------------------------- /hubot/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/hubot/values.yaml -------------------------------------------------------------------------------- /ingress-nginx/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/.helmignore -------------------------------------------------------------------------------- /ingress-nginx/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/CHANGELOG.md -------------------------------------------------------------------------------- /ingress-nginx/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/Chart.yaml -------------------------------------------------------------------------------- /ingress-nginx/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/OWNERS -------------------------------------------------------------------------------- /ingress-nginx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/README.md -------------------------------------------------------------------------------- /ingress-nginx/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/README.md.gotmpl -------------------------------------------------------------------------------- /ingress-nginx/ci/controller-custom-ingressclass-flags.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/ci/controller-custom-ingressclass-flags.yaml -------------------------------------------------------------------------------- /ingress-nginx/ci/daemonset-customconfig-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/ci/daemonset-customconfig-values.yaml -------------------------------------------------------------------------------- /ingress-nginx/ci/daemonset-customnodeport-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/ci/daemonset-customnodeport-values.yaml -------------------------------------------------------------------------------- /ingress-nginx/ci/daemonset-extra-modules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/ci/daemonset-extra-modules.yaml -------------------------------------------------------------------------------- /ingress-nginx/ci/daemonset-headers-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/ci/daemonset-headers-values.yaml -------------------------------------------------------------------------------- /ingress-nginx/ci/daemonset-internal-lb-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/ci/daemonset-internal-lb-values.yaml -------------------------------------------------------------------------------- /ingress-nginx/ci/daemonset-nodeport-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/ci/daemonset-nodeport-values.yaml -------------------------------------------------------------------------------- /ingress-nginx/ci/daemonset-podannotations-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/ci/daemonset-podannotations-values.yaml -------------------------------------------------------------------------------- /ingress-nginx/ci/daemonset-tcp-udp-configMapNamespace-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/ci/daemonset-tcp-udp-configMapNamespace-values.yaml -------------------------------------------------------------------------------- /ingress-nginx/ci/daemonset-tcp-udp-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/ci/daemonset-tcp-udp-values.yaml -------------------------------------------------------------------------------- /ingress-nginx/ci/daemonset-tcp-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/ci/daemonset-tcp-values.yaml -------------------------------------------------------------------------------- /ingress-nginx/ci/deamonset-default-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/ci/deamonset-default-values.yaml -------------------------------------------------------------------------------- /ingress-nginx/ci/deamonset-metrics-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/ci/deamonset-metrics-values.yaml -------------------------------------------------------------------------------- /ingress-nginx/ci/deamonset-psp-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/ci/deamonset-psp-values.yaml -------------------------------------------------------------------------------- /ingress-nginx/ci/deamonset-webhook-and-psp-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/ci/deamonset-webhook-and-psp-values.yaml -------------------------------------------------------------------------------- /ingress-nginx/ci/deamonset-webhook-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/ci/deamonset-webhook-values.yaml -------------------------------------------------------------------------------- /ingress-nginx/ci/deployment-autoscaling-behavior-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/ci/deployment-autoscaling-behavior-values.yaml -------------------------------------------------------------------------------- /ingress-nginx/ci/deployment-autoscaling-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/ci/deployment-autoscaling-values.yaml -------------------------------------------------------------------------------- /ingress-nginx/ci/deployment-customconfig-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/ci/deployment-customconfig-values.yaml -------------------------------------------------------------------------------- /ingress-nginx/ci/deployment-customnodeport-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/ci/deployment-customnodeport-values.yaml -------------------------------------------------------------------------------- /ingress-nginx/ci/deployment-default-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/ci/deployment-default-values.yaml -------------------------------------------------------------------------------- /ingress-nginx/ci/deployment-extra-modules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/ci/deployment-extra-modules.yaml -------------------------------------------------------------------------------- /ingress-nginx/ci/deployment-headers-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/ci/deployment-headers-values.yaml -------------------------------------------------------------------------------- /ingress-nginx/ci/deployment-internal-lb-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/ci/deployment-internal-lb-values.yaml -------------------------------------------------------------------------------- /ingress-nginx/ci/deployment-metrics-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/ci/deployment-metrics-values.yaml -------------------------------------------------------------------------------- /ingress-nginx/ci/deployment-nodeport-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/ci/deployment-nodeport-values.yaml -------------------------------------------------------------------------------- /ingress-nginx/ci/deployment-podannotations-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/ci/deployment-podannotations-values.yaml -------------------------------------------------------------------------------- /ingress-nginx/ci/deployment-psp-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/ci/deployment-psp-values.yaml -------------------------------------------------------------------------------- /ingress-nginx/ci/deployment-tcp-udp-configMapNamespace-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/ci/deployment-tcp-udp-configMapNamespace-values.yaml -------------------------------------------------------------------------------- /ingress-nginx/ci/deployment-tcp-udp-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/ci/deployment-tcp-udp-values.yaml -------------------------------------------------------------------------------- /ingress-nginx/ci/deployment-tcp-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/ci/deployment-tcp-values.yaml -------------------------------------------------------------------------------- /ingress-nginx/ci/deployment-webhook-and-psp-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/ci/deployment-webhook-and-psp-values.yaml -------------------------------------------------------------------------------- /ingress-nginx/ci/deployment-webhook-resources-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/ci/deployment-webhook-resources-values.yaml -------------------------------------------------------------------------------- /ingress-nginx/ci/deployment-webhook-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/ci/deployment-webhook-values.yaml -------------------------------------------------------------------------------- /ingress-nginx/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/templates/NOTES.txt -------------------------------------------------------------------------------- /ingress-nginx/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/templates/_helpers.tpl -------------------------------------------------------------------------------- /ingress-nginx/templates/_params.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/templates/_params.tpl -------------------------------------------------------------------------------- /ingress-nginx/templates/admission-webhooks/job-patch/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/templates/admission-webhooks/job-patch/clusterrole.yaml -------------------------------------------------------------------------------- /ingress-nginx/templates/admission-webhooks/job-patch/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/templates/admission-webhooks/job-patch/clusterrolebinding.yaml -------------------------------------------------------------------------------- /ingress-nginx/templates/admission-webhooks/job-patch/job-createSecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/templates/admission-webhooks/job-patch/job-createSecret.yaml -------------------------------------------------------------------------------- /ingress-nginx/templates/admission-webhooks/job-patch/job-patchWebhook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/templates/admission-webhooks/job-patch/job-patchWebhook.yaml -------------------------------------------------------------------------------- /ingress-nginx/templates/admission-webhooks/job-patch/psp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/templates/admission-webhooks/job-patch/psp.yaml -------------------------------------------------------------------------------- /ingress-nginx/templates/admission-webhooks/job-patch/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/templates/admission-webhooks/job-patch/role.yaml -------------------------------------------------------------------------------- /ingress-nginx/templates/admission-webhooks/job-patch/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/templates/admission-webhooks/job-patch/rolebinding.yaml -------------------------------------------------------------------------------- /ingress-nginx/templates/admission-webhooks/job-patch/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/templates/admission-webhooks/job-patch/serviceaccount.yaml -------------------------------------------------------------------------------- /ingress-nginx/templates/admission-webhooks/validating-webhook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/templates/admission-webhooks/validating-webhook.yaml -------------------------------------------------------------------------------- /ingress-nginx/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/templates/clusterrole.yaml -------------------------------------------------------------------------------- /ingress-nginx/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/templates/clusterrolebinding.yaml -------------------------------------------------------------------------------- /ingress-nginx/templates/controller-configmap-addheaders.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/templates/controller-configmap-addheaders.yaml -------------------------------------------------------------------------------- /ingress-nginx/templates/controller-configmap-proxyheaders.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/templates/controller-configmap-proxyheaders.yaml -------------------------------------------------------------------------------- /ingress-nginx/templates/controller-configmap-tcp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/templates/controller-configmap-tcp.yaml -------------------------------------------------------------------------------- /ingress-nginx/templates/controller-configmap-udp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/templates/controller-configmap-udp.yaml -------------------------------------------------------------------------------- /ingress-nginx/templates/controller-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/templates/controller-configmap.yaml -------------------------------------------------------------------------------- /ingress-nginx/templates/controller-daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/templates/controller-daemonset.yaml -------------------------------------------------------------------------------- /ingress-nginx/templates/controller-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/templates/controller-deployment.yaml -------------------------------------------------------------------------------- /ingress-nginx/templates/controller-hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/templates/controller-hpa.yaml -------------------------------------------------------------------------------- /ingress-nginx/templates/controller-ingressclass.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/templates/controller-ingressclass.yaml -------------------------------------------------------------------------------- /ingress-nginx/templates/controller-keda.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/templates/controller-keda.yaml -------------------------------------------------------------------------------- /ingress-nginx/templates/controller-poddisruptionbudget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/templates/controller-poddisruptionbudget.yaml -------------------------------------------------------------------------------- /ingress-nginx/templates/controller-prometheusrules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/templates/controller-prometheusrules.yaml -------------------------------------------------------------------------------- /ingress-nginx/templates/controller-psp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/templates/controller-psp.yaml -------------------------------------------------------------------------------- /ingress-nginx/templates/controller-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/templates/controller-role.yaml -------------------------------------------------------------------------------- /ingress-nginx/templates/controller-rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/templates/controller-rolebinding.yaml -------------------------------------------------------------------------------- /ingress-nginx/templates/controller-service-internal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/templates/controller-service-internal.yaml -------------------------------------------------------------------------------- /ingress-nginx/templates/controller-service-metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/templates/controller-service-metrics.yaml -------------------------------------------------------------------------------- /ingress-nginx/templates/controller-service-webhook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/templates/controller-service-webhook.yaml -------------------------------------------------------------------------------- /ingress-nginx/templates/controller-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/templates/controller-service.yaml -------------------------------------------------------------------------------- /ingress-nginx/templates/controller-serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/templates/controller-serviceaccount.yaml -------------------------------------------------------------------------------- /ingress-nginx/templates/controller-servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/templates/controller-servicemonitor.yaml -------------------------------------------------------------------------------- /ingress-nginx/templates/default-backend-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/templates/default-backend-deployment.yaml -------------------------------------------------------------------------------- /ingress-nginx/templates/default-backend-hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/templates/default-backend-hpa.yaml -------------------------------------------------------------------------------- /ingress-nginx/templates/default-backend-poddisruptionbudget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/templates/default-backend-poddisruptionbudget.yaml -------------------------------------------------------------------------------- /ingress-nginx/templates/default-backend-psp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/templates/default-backend-psp.yaml -------------------------------------------------------------------------------- /ingress-nginx/templates/default-backend-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/templates/default-backend-role.yaml -------------------------------------------------------------------------------- /ingress-nginx/templates/default-backend-rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/templates/default-backend-rolebinding.yaml -------------------------------------------------------------------------------- /ingress-nginx/templates/default-backend-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/templates/default-backend-service.yaml -------------------------------------------------------------------------------- /ingress-nginx/templates/default-backend-serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/templates/default-backend-serviceaccount.yaml -------------------------------------------------------------------------------- /ingress-nginx/templates/dh-param-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/templates/dh-param-secret.yaml -------------------------------------------------------------------------------- /ingress-nginx/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/ingress-nginx/values.yaml -------------------------------------------------------------------------------- /jenkins/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/jenkins/.helmignore -------------------------------------------------------------------------------- /jenkins/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/jenkins/Chart.yaml -------------------------------------------------------------------------------- /jenkins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/jenkins/README.md -------------------------------------------------------------------------------- /jenkins/files/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / 3 | -------------------------------------------------------------------------------- /jenkins/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/jenkins/templates/NOTES.txt -------------------------------------------------------------------------------- /jenkins/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/jenkins/templates/_helpers.tpl -------------------------------------------------------------------------------- /jenkins/templates/agent-networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/jenkins/templates/agent-networkpolicy.yaml -------------------------------------------------------------------------------- /jenkins/templates/certificate-webhook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/jenkins/templates/certificate-webhook.yaml -------------------------------------------------------------------------------- /jenkins/templates/certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/jenkins/templates/certificate.yaml -------------------------------------------------------------------------------- /jenkins/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/jenkins/templates/clusterrole.yaml -------------------------------------------------------------------------------- /jenkins/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/jenkins/templates/clusterrolebinding.yaml -------------------------------------------------------------------------------- /jenkins/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/jenkins/templates/configmap.yaml -------------------------------------------------------------------------------- /jenkins/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/jenkins/templates/deployment.yaml -------------------------------------------------------------------------------- /jenkins/templates/ingress-webhook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/jenkins/templates/ingress-webhook.yaml -------------------------------------------------------------------------------- /jenkins/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/jenkins/templates/ingress.yaml -------------------------------------------------------------------------------- /jenkins/templates/master-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/jenkins/templates/master-service.yaml -------------------------------------------------------------------------------- /jenkins/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/jenkins/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /jenkins/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/jenkins/templates/pvc.yaml -------------------------------------------------------------------------------- /jenkins/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/jenkins/templates/secret.yaml -------------------------------------------------------------------------------- /jenkins/templates/service-webhook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/jenkins/templates/service-webhook.yaml -------------------------------------------------------------------------------- /jenkins/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/jenkins/templates/service.yaml -------------------------------------------------------------------------------- /jenkins/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/jenkins/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /jenkins/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/jenkins/values.yaml -------------------------------------------------------------------------------- /kibana/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/kibana/.helmignore -------------------------------------------------------------------------------- /kibana/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/kibana/Chart.yaml -------------------------------------------------------------------------------- /kibana/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/kibana/templates/NOTES.txt -------------------------------------------------------------------------------- /kibana/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/kibana/templates/_helpers.tpl -------------------------------------------------------------------------------- /kibana/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/kibana/templates/deployment.yaml -------------------------------------------------------------------------------- /kibana/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/kibana/templates/ingress.yaml -------------------------------------------------------------------------------- /kibana/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/kibana/templates/service.yaml -------------------------------------------------------------------------------- /kibana/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/kibana/values.yaml -------------------------------------------------------------------------------- /maintenance/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/maintenance/.helmignore -------------------------------------------------------------------------------- /maintenance/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/maintenance/Chart.yaml -------------------------------------------------------------------------------- /maintenance/files/503.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/maintenance/files/503.html -------------------------------------------------------------------------------- /maintenance/files/503.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/maintenance/files/503.json -------------------------------------------------------------------------------- /maintenance/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/maintenance/templates/NOTES.txt -------------------------------------------------------------------------------- /maintenance/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/maintenance/templates/_helpers.tpl -------------------------------------------------------------------------------- /maintenance/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/maintenance/templates/configmap.yaml -------------------------------------------------------------------------------- /maintenance/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/maintenance/templates/deployment.yaml -------------------------------------------------------------------------------- /maintenance/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/maintenance/templates/hpa.yaml -------------------------------------------------------------------------------- /maintenance/templates/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/maintenance/templates/pdb.yaml -------------------------------------------------------------------------------- /maintenance/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/maintenance/templates/service.yaml -------------------------------------------------------------------------------- /maintenance/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/maintenance/values.yaml -------------------------------------------------------------------------------- /mfr/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/mfr/.helmignore -------------------------------------------------------------------------------- /mfr/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/mfr/Chart.yaml -------------------------------------------------------------------------------- /mfr/files/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / 3 | -------------------------------------------------------------------------------- /mfr/requirements.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/mfr/requirements.lock -------------------------------------------------------------------------------- /mfr/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/mfr/requirements.yaml -------------------------------------------------------------------------------- /mfr/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/mfr/templates/NOTES.txt -------------------------------------------------------------------------------- /mfr/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/mfr/templates/_helpers.tpl -------------------------------------------------------------------------------- /mfr/templates/autoroll-cron.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/mfr/templates/autoroll-cron.yaml -------------------------------------------------------------------------------- /mfr/templates/certificate-networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/mfr/templates/certificate-networkpolicy.yaml -------------------------------------------------------------------------------- /mfr/templates/certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/mfr/templates/certificate.yaml -------------------------------------------------------------------------------- /mfr/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/mfr/templates/configmap.yaml -------------------------------------------------------------------------------- /mfr/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/mfr/templates/deployment.yaml -------------------------------------------------------------------------------- /mfr/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/mfr/templates/hpa.yaml -------------------------------------------------------------------------------- /mfr/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/mfr/templates/ingress.yaml -------------------------------------------------------------------------------- /mfr/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/mfr/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /mfr/templates/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/mfr/templates/pdb.yaml -------------------------------------------------------------------------------- /mfr/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/mfr/templates/secret.yaml -------------------------------------------------------------------------------- /mfr/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/mfr/templates/service.yaml -------------------------------------------------------------------------------- /mfr/templates/worker-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/mfr/templates/worker-deployment.yaml -------------------------------------------------------------------------------- /mfr/templates/worker-hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/mfr/templates/worker-hpa.yaml -------------------------------------------------------------------------------- /mfr/templates/worker-pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/mfr/templates/worker-pdb.yaml -------------------------------------------------------------------------------- /mfr/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/mfr/values.yaml -------------------------------------------------------------------------------- /mongodb/.helmignore: -------------------------------------------------------------------------------- 1 | .git 2 | -------------------------------------------------------------------------------- /mongodb/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/mongodb/Chart.yaml -------------------------------------------------------------------------------- /mongodb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/mongodb/README.md -------------------------------------------------------------------------------- /mongodb/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/mongodb/templates/NOTES.txt -------------------------------------------------------------------------------- /mongodb/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/mongodb/templates/_helpers.tpl -------------------------------------------------------------------------------- /mongodb/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/mongodb/templates/configmap.yaml -------------------------------------------------------------------------------- /mongodb/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/mongodb/templates/secret.yaml -------------------------------------------------------------------------------- /mongodb/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/mongodb/templates/service.yaml -------------------------------------------------------------------------------- /mongodb/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/mongodb/templates/statefulset.yaml -------------------------------------------------------------------------------- /mongodb/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/mongodb/values.yaml -------------------------------------------------------------------------------- /nessus/.helmignore: -------------------------------------------------------------------------------- 1 | .git 2 | -------------------------------------------------------------------------------- /nessus/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/nessus/Chart.yaml -------------------------------------------------------------------------------- /nessus/README.md: -------------------------------------------------------------------------------- 1 | # Nessus -------------------------------------------------------------------------------- /nessus/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | ... -------------------------------------------------------------------------------- /nessus/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/nessus/templates/_helpers.tpl -------------------------------------------------------------------------------- /nessus/templates/certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/nessus/templates/certificate.yaml -------------------------------------------------------------------------------- /nessus/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/nessus/templates/ingress.yaml -------------------------------------------------------------------------------- /nessus/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/nessus/templates/secret.yaml -------------------------------------------------------------------------------- /nessus/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/nessus/templates/service.yaml -------------------------------------------------------------------------------- /nessus/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/nessus/templates/statefulset.yaml -------------------------------------------------------------------------------- /nessus/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/nessus/values.yaml -------------------------------------------------------------------------------- /nginx-ingress/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/nginx-ingress/.helmignore -------------------------------------------------------------------------------- /nginx-ingress/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/nginx-ingress/Chart.yaml -------------------------------------------------------------------------------- /nginx-ingress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/nginx-ingress/README.md -------------------------------------------------------------------------------- /nginx-ingress/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/nginx-ingress/templates/NOTES.txt -------------------------------------------------------------------------------- /nginx-ingress/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/nginx-ingress/templates/_helpers.tpl -------------------------------------------------------------------------------- /nginx-ingress/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/nginx-ingress/templates/clusterrole.yaml -------------------------------------------------------------------------------- /nginx-ingress/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/nginx-ingress/templates/clusterrolebinding.yaml -------------------------------------------------------------------------------- /nginx-ingress/templates/controller-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/nginx-ingress/templates/controller-configmap.yaml -------------------------------------------------------------------------------- /nginx-ingress/templates/controller-daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/nginx-ingress/templates/controller-daemonset.yaml -------------------------------------------------------------------------------- /nginx-ingress/templates/controller-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/nginx-ingress/templates/controller-deployment.yaml -------------------------------------------------------------------------------- /nginx-ingress/templates/controller-hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/nginx-ingress/templates/controller-hpa.yaml -------------------------------------------------------------------------------- /nginx-ingress/templates/controller-metrics-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/nginx-ingress/templates/controller-metrics-service.yaml -------------------------------------------------------------------------------- /nginx-ingress/templates/controller-networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/nginx-ingress/templates/controller-networkpolicy.yaml -------------------------------------------------------------------------------- /nginx-ingress/templates/controller-pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/nginx-ingress/templates/controller-pdb.yaml -------------------------------------------------------------------------------- /nginx-ingress/templates/controller-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/nginx-ingress/templates/controller-service.yaml -------------------------------------------------------------------------------- /nginx-ingress/templates/controller-stats-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/nginx-ingress/templates/controller-stats-service.yaml -------------------------------------------------------------------------------- /nginx-ingress/templates/default-backend-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/nginx-ingress/templates/default-backend-deployment.yaml -------------------------------------------------------------------------------- /nginx-ingress/templates/default-backend-networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/nginx-ingress/templates/default-backend-networkpolicy.yaml -------------------------------------------------------------------------------- /nginx-ingress/templates/default-backend-pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/nginx-ingress/templates/default-backend-pdb.yaml -------------------------------------------------------------------------------- /nginx-ingress/templates/default-backend-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/nginx-ingress/templates/default-backend-service.yaml -------------------------------------------------------------------------------- /nginx-ingress/templates/headers-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/nginx-ingress/templates/headers-configmap.yaml -------------------------------------------------------------------------------- /nginx-ingress/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/nginx-ingress/templates/role.yaml -------------------------------------------------------------------------------- /nginx-ingress/templates/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/nginx-ingress/templates/rolebinding.yaml -------------------------------------------------------------------------------- /nginx-ingress/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/nginx-ingress/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /nginx-ingress/templates/tcp-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/nginx-ingress/templates/tcp-configmap.yaml -------------------------------------------------------------------------------- /nginx-ingress/templates/udp-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/nginx-ingress/templates/udp-configmap.yaml -------------------------------------------------------------------------------- /nginx-ingress/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/nginx-ingress/values.yaml -------------------------------------------------------------------------------- /nginx/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/nginx/.helmignore -------------------------------------------------------------------------------- /nginx/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/nginx/Chart.yaml -------------------------------------------------------------------------------- /nginx/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/nginx/templates/NOTES.txt -------------------------------------------------------------------------------- /nginx/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/nginx/templates/_helpers.tpl -------------------------------------------------------------------------------- /nginx/templates/certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/nginx/templates/certificate.yaml -------------------------------------------------------------------------------- /nginx/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/nginx/templates/configmap.yaml -------------------------------------------------------------------------------- /nginx/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/nginx/templates/deployment.yaml -------------------------------------------------------------------------------- /nginx/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/nginx/templates/ingress.yaml -------------------------------------------------------------------------------- /nginx/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/nginx/templates/service.yaml -------------------------------------------------------------------------------- /nginx/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/nginx/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /nginx/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/nginx/values.yaml -------------------------------------------------------------------------------- /osf-cas/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-cas/.helmignore -------------------------------------------------------------------------------- /osf-cas/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-cas/Chart.yaml -------------------------------------------------------------------------------- /osf-cas/files/apache/shibboleth/accessError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-cas/files/apache/shibboleth/accessError.html -------------------------------------------------------------------------------- /osf-cas/files/apache/shibboleth/attrChecker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-cas/files/apache/shibboleth/attrChecker.html -------------------------------------------------------------------------------- /osf-cas/files/apache/shibboleth/attribute-map.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-cas/files/apache/shibboleth/attribute-map.xml -------------------------------------------------------------------------------- /osf-cas/files/apache/shibboleth/attribute-policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-cas/files/apache/shibboleth/attribute-policy.xml -------------------------------------------------------------------------------- /osf-cas/files/apache/shibboleth/bindingTemplate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-cas/files/apache/shibboleth/bindingTemplate.html -------------------------------------------------------------------------------- /osf-cas/files/apache/shibboleth/console.logger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-cas/files/apache/shibboleth/console.logger -------------------------------------------------------------------------------- /osf-cas/files/apache/shibboleth/discoveryTemplate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-cas/files/apache/shibboleth/discoveryTemplate.html -------------------------------------------------------------------------------- /osf-cas/files/apache/shibboleth/globalLogout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-cas/files/apache/shibboleth/globalLogout.html -------------------------------------------------------------------------------- /osf-cas/files/apache/shibboleth/localLogout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-cas/files/apache/shibboleth/localLogout.html -------------------------------------------------------------------------------- /osf-cas/files/apache/shibboleth/metadataError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-cas/files/apache/shibboleth/metadataError.html -------------------------------------------------------------------------------- /osf-cas/files/apache/shibboleth/native.logger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-cas/files/apache/shibboleth/native.logger -------------------------------------------------------------------------------- /osf-cas/files/apache/shibboleth/partialLogout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-cas/files/apache/shibboleth/partialLogout.html -------------------------------------------------------------------------------- /osf-cas/files/apache/shibboleth/postTemplate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-cas/files/apache/shibboleth/postTemplate.html -------------------------------------------------------------------------------- /osf-cas/files/apache/shibboleth/protocols.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-cas/files/apache/shibboleth/protocols.xml -------------------------------------------------------------------------------- /osf-cas/files/apache/shibboleth/security-policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-cas/files/apache/shibboleth/security-policy.xml -------------------------------------------------------------------------------- /osf-cas/files/apache/shibboleth/sessionError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-cas/files/apache/shibboleth/sessionError.html -------------------------------------------------------------------------------- /osf-cas/files/apache/shibboleth/shibd.logger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-cas/files/apache/shibboleth/shibd.logger -------------------------------------------------------------------------------- /osf-cas/files/apache/shibboleth/sslError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-cas/files/apache/shibboleth/sslError.html -------------------------------------------------------------------------------- /osf-cas/files/apache/shibboleth/syslog.logger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-cas/files/apache/shibboleth/syslog.logger -------------------------------------------------------------------------------- /osf-cas/files/apache/shibboleth/upgrade.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-cas/files/apache/shibboleth/upgrade.xsl -------------------------------------------------------------------------------- /osf-cas/files/jetty/institutions-auth.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-cas/files/jetty/institutions-auth.xsl -------------------------------------------------------------------------------- /osf-cas/requirements.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-cas/requirements.lock -------------------------------------------------------------------------------- /osf-cas/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-cas/requirements.yaml -------------------------------------------------------------------------------- /osf-cas/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-cas/templates/NOTES.txt -------------------------------------------------------------------------------- /osf-cas/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-cas/templates/_helpers.tpl -------------------------------------------------------------------------------- /osf-cas/templates/certificate-networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-cas/templates/certificate-networkpolicy.yaml -------------------------------------------------------------------------------- /osf-cas/templates/certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-cas/templates/certificate.yaml -------------------------------------------------------------------------------- /osf-cas/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-cas/templates/configmap.yaml -------------------------------------------------------------------------------- /osf-cas/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-cas/templates/deployment.yaml -------------------------------------------------------------------------------- /osf-cas/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-cas/templates/hpa.yaml -------------------------------------------------------------------------------- /osf-cas/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-cas/templates/ingress.yaml -------------------------------------------------------------------------------- /osf-cas/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-cas/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /osf-cas/templates/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-cas/templates/pdb.yaml -------------------------------------------------------------------------------- /osf-cas/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-cas/templates/secret.yaml -------------------------------------------------------------------------------- /osf-cas/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-cas/templates/service.yaml -------------------------------------------------------------------------------- /osf-cas/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-cas/values.yaml -------------------------------------------------------------------------------- /osf-graveyvalet/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-graveyvalet/Chart.yaml -------------------------------------------------------------------------------- /osf-graveyvalet/files/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / 3 | -------------------------------------------------------------------------------- /osf-graveyvalet/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-graveyvalet/templates/NOTES.txt -------------------------------------------------------------------------------- /osf-graveyvalet/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-graveyvalet/templates/_helpers.tpl -------------------------------------------------------------------------------- /osf-graveyvalet/templates/beat-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-graveyvalet/templates/beat-deployment.yaml -------------------------------------------------------------------------------- /osf-graveyvalet/templates/beat-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-graveyvalet/templates/beat-pvc.yaml -------------------------------------------------------------------------------- /osf-graveyvalet/templates/certificate-networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-graveyvalet/templates/certificate-networkpolicy.yaml -------------------------------------------------------------------------------- /osf-graveyvalet/templates/certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-graveyvalet/templates/certificate.yaml -------------------------------------------------------------------------------- /osf-graveyvalet/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-graveyvalet/templates/configmap.yaml -------------------------------------------------------------------------------- /osf-graveyvalet/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-graveyvalet/templates/deployment.yaml -------------------------------------------------------------------------------- /osf-graveyvalet/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-graveyvalet/templates/hpa.yaml -------------------------------------------------------------------------------- /osf-graveyvalet/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-graveyvalet/templates/ingress.yaml -------------------------------------------------------------------------------- /osf-graveyvalet/templates/migration-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-graveyvalet/templates/migration-job.yaml -------------------------------------------------------------------------------- /osf-graveyvalet/templates/migration-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-graveyvalet/templates/migration-secret.yaml -------------------------------------------------------------------------------- /osf-graveyvalet/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-graveyvalet/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /osf-graveyvalet/templates/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-graveyvalet/templates/pdb.yaml -------------------------------------------------------------------------------- /osf-graveyvalet/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-graveyvalet/templates/secret.yaml -------------------------------------------------------------------------------- /osf-graveyvalet/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-graveyvalet/templates/service.yaml -------------------------------------------------------------------------------- /osf-graveyvalet/templates/worker-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-graveyvalet/templates/worker-deployment.yaml -------------------------------------------------------------------------------- /osf-graveyvalet/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-graveyvalet/values.yaml -------------------------------------------------------------------------------- /osf-pigeon/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-pigeon/Chart.yaml -------------------------------------------------------------------------------- /osf-pigeon/files/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / 3 | -------------------------------------------------------------------------------- /osf-pigeon/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-pigeon/templates/NOTES.txt -------------------------------------------------------------------------------- /osf-pigeon/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-pigeon/templates/_helpers.tpl -------------------------------------------------------------------------------- /osf-pigeon/templates/certificate-networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-pigeon/templates/certificate-networkpolicy.yaml -------------------------------------------------------------------------------- /osf-pigeon/templates/certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-pigeon/templates/certificate.yaml -------------------------------------------------------------------------------- /osf-pigeon/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-pigeon/templates/configmap.yaml -------------------------------------------------------------------------------- /osf-pigeon/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-pigeon/templates/deployment.yaml -------------------------------------------------------------------------------- /osf-pigeon/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-pigeon/templates/hpa.yaml -------------------------------------------------------------------------------- /osf-pigeon/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-pigeon/templates/ingress.yaml -------------------------------------------------------------------------------- /osf-pigeon/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-pigeon/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /osf-pigeon/templates/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-pigeon/templates/pdb.yaml -------------------------------------------------------------------------------- /osf-pigeon/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-pigeon/templates/secret.yaml -------------------------------------------------------------------------------- /osf-pigeon/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-pigeon/templates/service.yaml -------------------------------------------------------------------------------- /osf-pigeon/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-pigeon/values.yaml -------------------------------------------------------------------------------- /osf-preprints/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-preprints/Chart.yaml -------------------------------------------------------------------------------- /osf-preprints/requirements.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-preprints/requirements.lock -------------------------------------------------------------------------------- /osf-preprints/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-preprints/requirements.yaml -------------------------------------------------------------------------------- /osf-preprints/templates/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /osf-preprints/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-preprints/values.yaml -------------------------------------------------------------------------------- /osf-reviews/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-reviews/Chart.yaml -------------------------------------------------------------------------------- /osf-reviews/requirements.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-reviews/requirements.lock -------------------------------------------------------------------------------- /osf-reviews/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-reviews/requirements.yaml -------------------------------------------------------------------------------- /osf-reviews/templates/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /osf-reviews/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-reviews/values.yaml -------------------------------------------------------------------------------- /osf-web-mirage/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-web-mirage/Chart.yaml -------------------------------------------------------------------------------- /osf-web-mirage/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-web-mirage/requirements.yaml -------------------------------------------------------------------------------- /osf-web-mirage/templates/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /osf-web-mirage/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-web-mirage/values.yaml -------------------------------------------------------------------------------- /osf-web/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-web/Chart.yaml -------------------------------------------------------------------------------- /osf-web/requirements.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-web/requirements.lock -------------------------------------------------------------------------------- /osf-web/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-web/requirements.yaml -------------------------------------------------------------------------------- /osf-web/templates/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /osf-web/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf-web/values.yaml -------------------------------------------------------------------------------- /osf/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf/.helmignore -------------------------------------------------------------------------------- /osf/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf/Chart.yaml -------------------------------------------------------------------------------- /osf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf/README.md -------------------------------------------------------------------------------- /osf/files/admin-robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / 3 | -------------------------------------------------------------------------------- /osf/files/api-robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / 3 | -------------------------------------------------------------------------------- /osf/files/web-robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf/files/web-robots.txt -------------------------------------------------------------------------------- /osf/requirements.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf/requirements.lock -------------------------------------------------------------------------------- /osf/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf/requirements.yaml -------------------------------------------------------------------------------- /osf/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf/templates/NOTES.txt -------------------------------------------------------------------------------- /osf/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf/templates/_helpers.tpl -------------------------------------------------------------------------------- /osf/templates/admin-certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf/templates/admin-certificate.yaml -------------------------------------------------------------------------------- /osf/templates/admin-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf/templates/admin-deployment.yaml -------------------------------------------------------------------------------- /osf/templates/admin-hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf/templates/admin-hpa.yaml -------------------------------------------------------------------------------- /osf/templates/admin-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf/templates/admin-ingress.yaml -------------------------------------------------------------------------------- /osf/templates/admin-pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf/templates/admin-pdb.yaml -------------------------------------------------------------------------------- /osf/templates/admin-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf/templates/admin-pvc.yaml -------------------------------------------------------------------------------- /osf/templates/admin-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf/templates/admin-service.yaml -------------------------------------------------------------------------------- /osf/templates/api-certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf/templates/api-certificate.yaml -------------------------------------------------------------------------------- /osf/templates/api-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf/templates/api-deployment.yaml -------------------------------------------------------------------------------- /osf/templates/api-hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf/templates/api-hpa.yaml -------------------------------------------------------------------------------- /osf/templates/api-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf/templates/api-ingress.yaml -------------------------------------------------------------------------------- /osf/templates/api-pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf/templates/api-pdb.yaml -------------------------------------------------------------------------------- /osf/templates/api-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf/templates/api-service.yaml -------------------------------------------------------------------------------- /osf/templates/beat-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf/templates/beat-deployment.yaml -------------------------------------------------------------------------------- /osf/templates/beat-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf/templates/beat-pvc.yaml -------------------------------------------------------------------------------- /osf/templates/certificate-networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf/templates/certificate-networkpolicy.yaml -------------------------------------------------------------------------------- /osf/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf/templates/configmap.yaml -------------------------------------------------------------------------------- /osf/templates/migration-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf/templates/migration-job.yaml -------------------------------------------------------------------------------- /osf/templates/migration-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf/templates/migration-pvc.yaml -------------------------------------------------------------------------------- /osf/templates/migration-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf/templates/migration-secret.yaml -------------------------------------------------------------------------------- /osf/templates/purge-cronjob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf/templates/purge-cronjob.yaml -------------------------------------------------------------------------------- /osf/templates/purge-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf/templates/purge-pvc.yaml -------------------------------------------------------------------------------- /osf/templates/purge-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf/templates/purge-secret.yaml -------------------------------------------------------------------------------- /osf/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf/templates/secret.yaml -------------------------------------------------------------------------------- /osf/templates/task-hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf/templates/task-hpa.yaml -------------------------------------------------------------------------------- /osf/templates/task-pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf/templates/task-pdb.yaml -------------------------------------------------------------------------------- /osf/templates/task-statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf/templates/task-statefulset.yaml -------------------------------------------------------------------------------- /osf/templates/web-certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf/templates/web-certificate.yaml -------------------------------------------------------------------------------- /osf/templates/web-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf/templates/web-deployment.yaml -------------------------------------------------------------------------------- /osf/templates/web-hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf/templates/web-hpa.yaml -------------------------------------------------------------------------------- /osf/templates/web-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf/templates/web-ingress.yaml -------------------------------------------------------------------------------- /osf/templates/web-pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf/templates/web-pdb.yaml -------------------------------------------------------------------------------- /osf/templates/web-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf/templates/web-service.yaml -------------------------------------------------------------------------------- /osf/templates/worker-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf/templates/worker-deployment.yaml -------------------------------------------------------------------------------- /osf/templates/worker-hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf/templates/worker-hpa.yaml -------------------------------------------------------------------------------- /osf/templates/worker-pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf/templates/worker-pdb.yaml -------------------------------------------------------------------------------- /osf/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/osf/values.yaml -------------------------------------------------------------------------------- /pgbouncer/.helmignore: -------------------------------------------------------------------------------- 1 | .git 2 | -------------------------------------------------------------------------------- /pgbouncer/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/pgbouncer/Chart.yaml -------------------------------------------------------------------------------- /pgbouncer/README.md: -------------------------------------------------------------------------------- 1 | # PgBouncer -------------------------------------------------------------------------------- /pgbouncer/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | ... -------------------------------------------------------------------------------- /pgbouncer/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/pgbouncer/templates/_helpers.tpl -------------------------------------------------------------------------------- /pgbouncer/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/pgbouncer/templates/configmap.yaml -------------------------------------------------------------------------------- /pgbouncer/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/pgbouncer/templates/deployment.yaml -------------------------------------------------------------------------------- /pgbouncer/templates/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/pgbouncer/templates/pdb.yaml -------------------------------------------------------------------------------- /pgbouncer/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/pgbouncer/templates/secret.yaml -------------------------------------------------------------------------------- /pgbouncer/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/pgbouncer/templates/service.yaml -------------------------------------------------------------------------------- /pgbouncer/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/pgbouncer/values.yaml -------------------------------------------------------------------------------- /postgresql-ha/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/postgresql-ha/.helmignore -------------------------------------------------------------------------------- /postgresql-ha/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/postgresql-ha/Chart.yaml -------------------------------------------------------------------------------- /postgresql-ha/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/postgresql-ha/README.md -------------------------------------------------------------------------------- /postgresql-ha/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/postgresql-ha/templates/NOTES.txt -------------------------------------------------------------------------------- /postgresql-ha/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/postgresql-ha/templates/_helpers.tpl -------------------------------------------------------------------------------- /postgresql-ha/templates/extra-list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/postgresql-ha/templates/extra-list.yaml -------------------------------------------------------------------------------- /postgresql-ha/templates/ldap-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/postgresql-ha/templates/ldap-secrets.yaml -------------------------------------------------------------------------------- /postgresql-ha/templates/metrics-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/postgresql-ha/templates/metrics-configmap.yaml -------------------------------------------------------------------------------- /postgresql-ha/templates/networkpolicy-egress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/postgresql-ha/templates/networkpolicy-egress.yaml -------------------------------------------------------------------------------- /postgresql-ha/templates/networkpolicy-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/postgresql-ha/templates/networkpolicy-ingress.yaml -------------------------------------------------------------------------------- /postgresql-ha/templates/pgpool/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/postgresql-ha/templates/pgpool/configmap.yaml -------------------------------------------------------------------------------- /postgresql-ha/templates/pgpool/custom-users-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/postgresql-ha/templates/pgpool/custom-users-secrets.yaml -------------------------------------------------------------------------------- /postgresql-ha/templates/pgpool/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/postgresql-ha/templates/pgpool/deployment.yaml -------------------------------------------------------------------------------- /postgresql-ha/templates/pgpool/initdb-scripts-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/postgresql-ha/templates/pgpool/initdb-scripts-configmap.yaml -------------------------------------------------------------------------------- /postgresql-ha/templates/pgpool/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/postgresql-ha/templates/pgpool/pdb.yaml -------------------------------------------------------------------------------- /postgresql-ha/templates/pgpool/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/postgresql-ha/templates/pgpool/secrets.yaml -------------------------------------------------------------------------------- /postgresql-ha/templates/pgpool/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/postgresql-ha/templates/pgpool/service.yaml -------------------------------------------------------------------------------- /postgresql-ha/templates/podsecuritypolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/postgresql-ha/templates/podsecuritypolicy.yaml -------------------------------------------------------------------------------- /postgresql-ha/templates/postgresql/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/postgresql-ha/templates/postgresql/configmap.yaml -------------------------------------------------------------------------------- /postgresql-ha/templates/postgresql/extended-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/postgresql-ha/templates/postgresql/extended-configmap.yaml -------------------------------------------------------------------------------- /postgresql-ha/templates/postgresql/hooks-scripts-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/postgresql-ha/templates/postgresql/hooks-scripts-configmap.yaml -------------------------------------------------------------------------------- /postgresql-ha/templates/postgresql/initdb-scripts-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/postgresql-ha/templates/postgresql/initdb-scripts-configmap.yaml -------------------------------------------------------------------------------- /postgresql-ha/templates/postgresql/metrics-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/postgresql-ha/templates/postgresql/metrics-service.yaml -------------------------------------------------------------------------------- /postgresql-ha/templates/postgresql/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/postgresql-ha/templates/postgresql/pdb.yaml -------------------------------------------------------------------------------- /postgresql-ha/templates/postgresql/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/postgresql-ha/templates/postgresql/secrets.yaml -------------------------------------------------------------------------------- /postgresql-ha/templates/postgresql/service-headless.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/postgresql-ha/templates/postgresql/service-headless.yaml -------------------------------------------------------------------------------- /postgresql-ha/templates/postgresql/service-witness.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/postgresql-ha/templates/postgresql/service-witness.yaml -------------------------------------------------------------------------------- /postgresql-ha/templates/postgresql/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/postgresql-ha/templates/postgresql/service.yaml -------------------------------------------------------------------------------- /postgresql-ha/templates/postgresql/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/postgresql-ha/templates/postgresql/servicemonitor.yaml -------------------------------------------------------------------------------- /postgresql-ha/templates/postgresql/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/postgresql-ha/templates/postgresql/statefulset.yaml -------------------------------------------------------------------------------- /postgresql-ha/templates/postgresql/witness-statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/postgresql-ha/templates/postgresql/witness-statefulset.yaml -------------------------------------------------------------------------------- /postgresql-ha/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/postgresql-ha/templates/role.yaml -------------------------------------------------------------------------------- /postgresql-ha/templates/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/postgresql-ha/templates/rolebinding.yaml -------------------------------------------------------------------------------- /postgresql-ha/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/postgresql-ha/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /postgresql-ha/templates/tls-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/postgresql-ha/templates/tls-secrets.yaml -------------------------------------------------------------------------------- /postgresql-ha/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/postgresql-ha/values.schema.json -------------------------------------------------------------------------------- /postgresql-ha/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/postgresql-ha/values.yaml -------------------------------------------------------------------------------- /postgresql/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/postgresql/Chart.yaml -------------------------------------------------------------------------------- /postgresql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/postgresql/README.md -------------------------------------------------------------------------------- /postgresql/files/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/postgresql/files/entrypoint.sh -------------------------------------------------------------------------------- /postgresql/files/repmgr.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/postgresql/files/repmgr.conf -------------------------------------------------------------------------------- /postgresql/files/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/postgresql/files/supervisord.conf -------------------------------------------------------------------------------- /postgresql/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/postgresql/templates/NOTES.txt -------------------------------------------------------------------------------- /postgresql/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/postgresql/templates/_helpers.tpl -------------------------------------------------------------------------------- /postgresql/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/postgresql/templates/configmap.yaml -------------------------------------------------------------------------------- /postgresql/templates/master-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/postgresql/templates/master-service.yaml -------------------------------------------------------------------------------- /postgresql/templates/master-statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/postgresql/templates/master-statefulset.yaml -------------------------------------------------------------------------------- /postgresql/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/postgresql/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /postgresql/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/postgresql/templates/secret.yaml -------------------------------------------------------------------------------- /postgresql/templates/standby-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/postgresql/templates/standby-service.yaml -------------------------------------------------------------------------------- /postgresql/templates/standby-statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/postgresql/templates/standby-statefulset.yaml -------------------------------------------------------------------------------- /postgresql/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/postgresql/values.yaml -------------------------------------------------------------------------------- /prerender/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/prerender/.helmignore -------------------------------------------------------------------------------- /prerender/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/prerender/Chart.yaml -------------------------------------------------------------------------------- /prerender/requirements.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/prerender/requirements.lock -------------------------------------------------------------------------------- /prerender/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/prerender/requirements.yaml -------------------------------------------------------------------------------- /prerender/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/prerender/templates/NOTES.txt -------------------------------------------------------------------------------- /prerender/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/prerender/templates/_helpers.tpl -------------------------------------------------------------------------------- /prerender/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/prerender/templates/configmap.yaml -------------------------------------------------------------------------------- /prerender/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/prerender/templates/deployment.yaml -------------------------------------------------------------------------------- /prerender/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/prerender/templates/hpa.yaml -------------------------------------------------------------------------------- /prerender/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/prerender/templates/ingress.yaml -------------------------------------------------------------------------------- /prerender/templates/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/prerender/templates/pdb.yaml -------------------------------------------------------------------------------- /prerender/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/prerender/templates/secret.yaml -------------------------------------------------------------------------------- /prerender/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/prerender/templates/service.yaml -------------------------------------------------------------------------------- /prerender/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/prerender/values.yaml -------------------------------------------------------------------------------- /rabbitmq/.helmignore: -------------------------------------------------------------------------------- 1 | .git 2 | -------------------------------------------------------------------------------- /rabbitmq/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/rabbitmq/Chart.yaml -------------------------------------------------------------------------------- /rabbitmq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/rabbitmq/README.md -------------------------------------------------------------------------------- /rabbitmq/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/rabbitmq/templates/NOTES.txt -------------------------------------------------------------------------------- /rabbitmq/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/rabbitmq/templates/_helpers.tpl -------------------------------------------------------------------------------- /rabbitmq/templates/certs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/rabbitmq/templates/certs.yaml -------------------------------------------------------------------------------- /rabbitmq/templates/configuration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/rabbitmq/templates/configuration.yaml -------------------------------------------------------------------------------- /rabbitmq/templates/healthchecks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/rabbitmq/templates/healthchecks.yaml -------------------------------------------------------------------------------- /rabbitmq/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/rabbitmq/templates/ingress.yaml -------------------------------------------------------------------------------- /rabbitmq/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/rabbitmq/templates/role.yaml -------------------------------------------------------------------------------- /rabbitmq/templates/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/rabbitmq/templates/rolebinding.yaml -------------------------------------------------------------------------------- /rabbitmq/templates/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/rabbitmq/templates/secrets.yaml -------------------------------------------------------------------------------- /rabbitmq/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/rabbitmq/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /rabbitmq/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/rabbitmq/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /rabbitmq/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/rabbitmq/templates/statefulset.yaml -------------------------------------------------------------------------------- /rabbitmq/templates/svc-headless.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/rabbitmq/templates/svc-headless.yaml -------------------------------------------------------------------------------- /rabbitmq/templates/svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/rabbitmq/templates/svc.yaml -------------------------------------------------------------------------------- /rabbitmq/values-production.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/rabbitmq/values-production.yaml -------------------------------------------------------------------------------- /rabbitmq/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/rabbitmq/values.yaml -------------------------------------------------------------------------------- /redis/.helmignore: -------------------------------------------------------------------------------- 1 | .git 2 | -------------------------------------------------------------------------------- /redis/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/redis/Chart.yaml -------------------------------------------------------------------------------- /redis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/redis/README.md -------------------------------------------------------------------------------- /redis/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/redis/templates/NOTES.txt -------------------------------------------------------------------------------- /redis/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/redis/templates/_helpers.tpl -------------------------------------------------------------------------------- /redis/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/redis/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /redis/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/redis/templates/secret.yaml -------------------------------------------------------------------------------- /redis/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/redis/templates/service.yaml -------------------------------------------------------------------------------- /redis/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/redis/templates/statefulset.yaml -------------------------------------------------------------------------------- /redis/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/redis/values.yaml -------------------------------------------------------------------------------- /sentry/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/sentry/.helmignore -------------------------------------------------------------------------------- /sentry/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/sentry/Chart.yaml -------------------------------------------------------------------------------- /sentry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/sentry/README.md -------------------------------------------------------------------------------- /sentry/requirements.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/sentry/requirements.lock -------------------------------------------------------------------------------- /sentry/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/sentry/requirements.yaml -------------------------------------------------------------------------------- /sentry/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/sentry/templates/NOTES.txt -------------------------------------------------------------------------------- /sentry/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/sentry/templates/_helpers.tpl -------------------------------------------------------------------------------- /sentry/templates/certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/sentry/templates/certificate.yaml -------------------------------------------------------------------------------- /sentry/templates/client-certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/sentry/templates/client-certificate.yaml -------------------------------------------------------------------------------- /sentry/templates/client-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/sentry/templates/client-ingress.yaml -------------------------------------------------------------------------------- /sentry/templates/client-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/sentry/templates/client-service.yaml -------------------------------------------------------------------------------- /sentry/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/sentry/templates/configmap.yaml -------------------------------------------------------------------------------- /sentry/templates/cron-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/sentry/templates/cron-deployment.yaml -------------------------------------------------------------------------------- /sentry/templates/hooks/db-init.job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/sentry/templates/hooks/db-init.job.yaml -------------------------------------------------------------------------------- /sentry/templates/hooks/user-create.job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/sentry/templates/hooks/user-create.job.yaml -------------------------------------------------------------------------------- /sentry/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/sentry/templates/ingress.yaml -------------------------------------------------------------------------------- /sentry/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/sentry/templates/secret.yaml -------------------------------------------------------------------------------- /sentry/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/sentry/templates/service.yaml -------------------------------------------------------------------------------- /sentry/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/sentry/templates/statefulset.yaml -------------------------------------------------------------------------------- /sentry/templates/workers-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/sentry/templates/workers-deployment.yaml -------------------------------------------------------------------------------- /sentry/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/sentry/values.yaml -------------------------------------------------------------------------------- /share-web/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/share-web/Chart.yaml -------------------------------------------------------------------------------- /share-web/requirements.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/share-web/requirements.lock -------------------------------------------------------------------------------- /share-web/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/share-web/requirements.yaml -------------------------------------------------------------------------------- /share-web/templates/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /share-web/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/share-web/values.yaml -------------------------------------------------------------------------------- /share/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/share/.helmignore -------------------------------------------------------------------------------- /share/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/share/Chart.yaml -------------------------------------------------------------------------------- /share/files/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / 3 | -------------------------------------------------------------------------------- /share/files/uwsgi.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/share/files/uwsgi.ini -------------------------------------------------------------------------------- /share/requirements.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/share/requirements.lock -------------------------------------------------------------------------------- /share/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/share/requirements.yaml -------------------------------------------------------------------------------- /share/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | TODO -------------------------------------------------------------------------------- /share/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/share/templates/_helpers.tpl -------------------------------------------------------------------------------- /share/templates/beat-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/share/templates/beat-deployment.yaml -------------------------------------------------------------------------------- /share/templates/certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/share/templates/certificate.yaml -------------------------------------------------------------------------------- /share/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/share/templates/configmap.yaml -------------------------------------------------------------------------------- /share/templates/indexer-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/share/templates/indexer-deployment.yaml -------------------------------------------------------------------------------- /share/templates/indexer-hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/share/templates/indexer-hpa.yaml -------------------------------------------------------------------------------- /share/templates/indexer-pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/share/templates/indexer-pdb.yaml -------------------------------------------------------------------------------- /share/templates/migration-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/share/templates/migration-job.yaml -------------------------------------------------------------------------------- /share/templates/pg-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/share/templates/pg-secret.yaml -------------------------------------------------------------------------------- /share/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/share/templates/secret.yaml -------------------------------------------------------------------------------- /share/templates/web-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/share/templates/web-deployment.yaml -------------------------------------------------------------------------------- /share/templates/web-hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/share/templates/web-hpa.yaml -------------------------------------------------------------------------------- /share/templates/web-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/share/templates/web-ingress.yaml -------------------------------------------------------------------------------- /share/templates/web-pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/share/templates/web-pdb.yaml -------------------------------------------------------------------------------- /share/templates/web-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/share/templates/web-service.yaml -------------------------------------------------------------------------------- /share/templates/worker-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/share/templates/worker-deployment.yaml -------------------------------------------------------------------------------- /share/templates/worker-hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/share/templates/worker-hpa.yaml -------------------------------------------------------------------------------- /share/templates/worker-pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/share/templates/worker-pdb.yaml -------------------------------------------------------------------------------- /share/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/share/values.yaml -------------------------------------------------------------------------------- /sharejs/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/sharejs/.helmignore -------------------------------------------------------------------------------- /sharejs/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/sharejs/Chart.yaml -------------------------------------------------------------------------------- /sharejs/files/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / 3 | -------------------------------------------------------------------------------- /sharejs/requirements.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/sharejs/requirements.lock -------------------------------------------------------------------------------- /sharejs/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/sharejs/requirements.yaml -------------------------------------------------------------------------------- /sharejs/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | 1. Get the application URL by running these commands: 2 | {{/* TODO */}} 3 | -------------------------------------------------------------------------------- /sharejs/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/sharejs/templates/_helpers.tpl -------------------------------------------------------------------------------- /sharejs/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/sharejs/templates/configmap.yaml -------------------------------------------------------------------------------- /sharejs/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/sharejs/templates/deployment.yaml -------------------------------------------------------------------------------- /sharejs/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/sharejs/templates/hpa.yaml -------------------------------------------------------------------------------- /sharejs/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/sharejs/templates/ingress.yaml -------------------------------------------------------------------------------- /sharejs/templates/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/sharejs/templates/pdb.yaml -------------------------------------------------------------------------------- /sharejs/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/sharejs/templates/secret.yaml -------------------------------------------------------------------------------- /sharejs/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/sharejs/templates/service.yaml -------------------------------------------------------------------------------- /sharejs/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/sharejs/values.yaml -------------------------------------------------------------------------------- /tls-certificates/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/tls-certificates/.helmignore -------------------------------------------------------------------------------- /tls-certificates/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/tls-certificates/Chart.yaml -------------------------------------------------------------------------------- /tls-certificates/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/tls-certificates/templates/NOTES.txt -------------------------------------------------------------------------------- /tls-certificates/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/tls-certificates/templates/_helpers.tpl -------------------------------------------------------------------------------- /tls-certificates/templates/secretlist.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/tls-certificates/templates/secretlist.yaml -------------------------------------------------------------------------------- /tls-certificates/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/tls-certificates/values.yaml -------------------------------------------------------------------------------- /triton-share/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/triton-share/.helmignore -------------------------------------------------------------------------------- /triton-share/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/triton-share/Chart.yaml -------------------------------------------------------------------------------- /triton-share/files/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/triton-share/files/app.js -------------------------------------------------------------------------------- /triton-share/files/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / 3 | -------------------------------------------------------------------------------- /triton-share/requirements.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/triton-share/requirements.lock -------------------------------------------------------------------------------- /triton-share/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/triton-share/requirements.yaml -------------------------------------------------------------------------------- /triton-share/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/triton-share/templates/NOTES.txt -------------------------------------------------------------------------------- /triton-share/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/triton-share/templates/_helpers.tpl -------------------------------------------------------------------------------- /triton-share/templates/certificate-networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/triton-share/templates/certificate-networkpolicy.yaml -------------------------------------------------------------------------------- /triton-share/templates/certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/triton-share/templates/certificate.yaml -------------------------------------------------------------------------------- /triton-share/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/triton-share/templates/configmap.yaml -------------------------------------------------------------------------------- /triton-share/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/triton-share/templates/deployment.yaml -------------------------------------------------------------------------------- /triton-share/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/triton-share/templates/ingress.yaml -------------------------------------------------------------------------------- /triton-share/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/triton-share/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /triton-share/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/triton-share/templates/service.yaml -------------------------------------------------------------------------------- /triton-share/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/triton-share/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /triton-share/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/triton-share/values.yaml -------------------------------------------------------------------------------- /wb/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/wb/.helmignore -------------------------------------------------------------------------------- /wb/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/wb/Chart.yaml -------------------------------------------------------------------------------- /wb/files/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / 3 | -------------------------------------------------------------------------------- /wb/requirements.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/wb/requirements.lock -------------------------------------------------------------------------------- /wb/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/wb/requirements.yaml -------------------------------------------------------------------------------- /wb/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/wb/templates/NOTES.txt -------------------------------------------------------------------------------- /wb/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/wb/templates/_helpers.tpl -------------------------------------------------------------------------------- /wb/templates/certificate-networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/wb/templates/certificate-networkpolicy.yaml -------------------------------------------------------------------------------- /wb/templates/certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/wb/templates/certificate.yaml -------------------------------------------------------------------------------- /wb/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/wb/templates/configmap.yaml -------------------------------------------------------------------------------- /wb/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/wb/templates/deployment.yaml -------------------------------------------------------------------------------- /wb/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/wb/templates/hpa.yaml -------------------------------------------------------------------------------- /wb/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/wb/templates/ingress.yaml -------------------------------------------------------------------------------- /wb/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/wb/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /wb/templates/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/wb/templates/pdb.yaml -------------------------------------------------------------------------------- /wb/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/wb/templates/secret.yaml -------------------------------------------------------------------------------- /wb/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/wb/templates/service.yaml -------------------------------------------------------------------------------- /wb/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/helm-charts/HEAD/wb/values.yaml --------------------------------------------------------------------------------