├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── DCO ├── LICENSE ├── MAINTAINERS ├── README.md ├── ct-install.yaml ├── ct.yaml ├── docs └── tests.md ├── incubator ├── jupyter-single │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── ingress.yaml │ │ ├── pvc.yaml │ │ └── service.yaml │ └── values.yaml └── spark-api-jupyter │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── deployment.yaml │ ├── ingress.yaml │ └── service.yaml │ └── values.yaml ├── infra ├── code-annotation │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── ci │ │ └── test-values.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── ingress.yaml │ │ ├── persistent-volume-claim.yaml │ │ ├── secrets.yaml │ │ └── service.yaml │ └── values.yaml ├── ewbf-miner │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── _helpers.tpl │ │ └── deployment.yaml │ └── values.yaml ├── ghost-gcs-backup │ ├── .helmignore │ ├── Chart.yaml │ ├── ci │ │ └── test-values.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── cronjob.yaml │ │ └── secret.yaml │ └── values.yaml ├── git-server │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── ci │ │ └── test-values.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ └── service.yaml │ └── values.yaml ├── google-cloud-dns-healthcheck │ ├── .helmignore │ ├── Chart.yaml │ ├── ci │ │ └── test-values.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ └── cronjob.yaml │ └── values.yaml ├── hue │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── ingress.yaml │ │ └── service.yaml │ └── values.yaml ├── k8s-pod-headless-service-operator │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── rbac.yaml │ │ └── serviceaccount.yaml │ └── values.yaml ├── kubernetes-local-pv-provisioner │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── daemonset.yaml │ │ ├── rbac.yaml │ │ └── serviceaccount.yaml │ └── values.yaml ├── landing │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── ci │ │ └── test-values.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── ingress.yaml │ │ └── service.yaml │ └── values.yaml ├── ml-deployment │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ └── service.yaml │ └── values.yaml ├── nfs-gluster-bridge │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ └── service.yaml │ └── values.yaml ├── online-net-stock-alert │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ └── cronjob.yaml │ └── values.yaml ├── prometheus-external-monitor │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── endpoint.yaml │ │ ├── service.yaml │ │ └── servicemonitor.yaml │ └── values.yaml ├── scylla │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── scylla-config-configmap.yaml │ │ ├── scylla-configmap.yaml │ │ ├── scylla-service.yaml │ │ └── scylla-statefulset.yaml │ └── values.yaml └── website-redirect │ ├── .helmignore │ ├── Chart.yaml │ ├── ci │ └── test-values.yaml │ ├── templates │ ├── _helpers.tpl │ ├── caddy-configmap.yaml │ ├── deployment.yaml │ ├── ingress.yaml │ ├── service.yaml │ └── tests │ │ ├── test-configmap.yaml │ │ └── test-pod.yaml │ └── values.yaml ├── scripts ├── install-minikube.sh └── repo-sync.sh └── stable ├── bblfsh-web ├── .helmignore ├── Chart.yaml ├── README.md ├── charts │ └── bblfshd-sidecar-1.1.1.tgz ├── ci │ └── test-values.yaml ├── requirements.lock ├── requirements.yaml ├── templates │ ├── _helpers.tpl │ ├── deployment.yaml │ ├── ingress.yaml │ ├── service.yaml │ └── tests │ │ ├── test-configmap.yaml │ │ └── test.yaml └── values.yaml ├── bblfshd-sidecar ├── .helmignore ├── Chart.yaml ├── README.md ├── templates │ ├── _helpers.tpl │ ├── install-drivers-configmap.yaml │ ├── service.yaml │ └── servicemonitor.yaml └── values.yaml ├── bblfshd ├── .helmignore ├── Chart.yaml ├── README.md ├── images │ └── logo.png ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── deployment.yaml │ ├── install-drivers-configmap.yaml │ ├── service.yaml │ ├── servicemonitor.yaml │ └── tests │ │ ├── test-configmap.yaml │ │ └── test.yaml └── values.yaml ├── borges ├── .helmignore ├── Chart.yaml ├── README.md ├── templates │ ├── _helpers.tpl │ ├── consumer-deployment.yaml │ ├── producer-deployment.yaml │ └── republish-deployment.yaml └── values.yaml ├── gemini ├── .helmignore ├── Chart.yaml ├── charts │ └── bblfshd-sidecar-0.2.0.tgz ├── requirements.yaml ├── templates │ ├── _helpers.tpl │ ├── deployment.yaml │ └── pvc.yaml └── values.yaml ├── gitbase ├── .helmignore ├── Chart.yaml ├── charts │ └── bblfshd-sidecar-0.2.0.tgz ├── ci │ └── test-values.yaml ├── requirements.yaml ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── service.yaml │ ├── statefulset.yaml │ └── tests │ │ ├── test-configmap.yaml │ │ └── test.yaml └── values.yaml ├── lookout-gometalint-analyzer ├── .helmignore ├── Chart.yaml ├── templates │ ├── _helpers.tpl │ ├── deployment.yaml │ └── service.yaml └── values.yaml ├── lookout-sonarcheck-analyzer ├── .helmignore ├── Chart.yaml ├── README.md ├── templates │ ├── _helpers.tpl │ ├── deployment.yaml │ └── service.yaml └── values.yaml ├── lookout-style-analyzer ├── .helmignore ├── Chart.yaml ├── ci │ └── pvc-values.yaml ├── templates │ ├── _helpers.tpl │ ├── deployment.yaml │ ├── init-db.yaml │ └── service.yaml └── values.yaml ├── lookout-terraform-analyzer ├── .helmignore ├── Chart.yaml ├── templates │ ├── _helpers.tpl │ ├── deployment.yaml │ └── service.yaml └── values.yaml ├── lookout-typos-analyzer ├── .helmignore ├── Chart.yaml ├── templates │ ├── _helpers.tpl │ ├── deployment.yaml │ └── service.yaml └── values.yaml ├── lookout ├── .helmignore ├── Chart.yaml ├── charts │ └── bblfshd-sidecar-1.1.1.tgz ├── ci │ └── test-values.yaml ├── requirements.lock ├── requirements.yaml ├── templates │ ├── _helpers.tpl │ ├── lookout-configmap.yaml │ ├── lookout-init-db.yaml │ ├── watch-deployment.yaml │ ├── work-deployment.yaml │ └── work-service.yaml └── values.yaml ├── rovers ├── .helmignore ├── Chart.yaml ├── README.md ├── ci │ ├── given-secret-values.yaml │ └── predef-secret-values.yaml ├── templates │ ├── _helpers.tpl │ ├── deployment.yaml │ ├── initdb-job.yaml │ └── secret.yaml └── values.yaml ├── sourced-ui ├── .helmignore ├── Chart.yaml ├── ci │ └── test-values.yaml ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── admin-secret.yaml │ ├── deployment.yaml │ ├── gitbase-secret.yaml │ ├── ingress.yaml │ ├── init-db-job.yaml │ ├── postgres-secret.yaml │ ├── service.yaml │ └── warmup-configmap.yaml └── values.yaml ├── spark-thrift-server ├── .helmignore ├── Chart.yaml ├── ci │ └── test-values.yaml ├── templates │ ├── _helpers.tpl │ ├── deployment.yaml │ ├── gitbase-secret.yaml │ └── service.yaml └── values.yaml └── spark ├── .helmignore ├── Chart.yaml ├── README.md ├── templates ├── .helmignore ├── NOTES.txt ├── _helpers.tpl ├── configmap.yaml ├── livy-service.yaml ├── spark-master-deployment.yaml ├── spark-master-service.yaml ├── spark-webui-proxy-deployment.yaml ├── spark-webui-proxy-service.yaml ├── spark-webui-service.yaml ├── spark-worker-deployment.yaml └── tests │ ├── test-job-pod.yaml │ ├── test-webui-configmap.yaml │ └── test-webui.yaml └── values.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | repository 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DCO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/DCO -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/MAINTAINERS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/README.md -------------------------------------------------------------------------------- /ct-install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/ct-install.yaml -------------------------------------------------------------------------------- /ct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/ct.yaml -------------------------------------------------------------------------------- /docs/tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/docs/tests.md -------------------------------------------------------------------------------- /incubator/jupyter-single/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/incubator/jupyter-single/.helmignore -------------------------------------------------------------------------------- /incubator/jupyter-single/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/incubator/jupyter-single/Chart.yaml -------------------------------------------------------------------------------- /incubator/jupyter-single/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/incubator/jupyter-single/templates/NOTES.txt -------------------------------------------------------------------------------- /incubator/jupyter-single/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/incubator/jupyter-single/templates/_helpers.tpl -------------------------------------------------------------------------------- /incubator/jupyter-single/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/incubator/jupyter-single/templates/deployment.yaml -------------------------------------------------------------------------------- /incubator/jupyter-single/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/incubator/jupyter-single/templates/ingress.yaml -------------------------------------------------------------------------------- /incubator/jupyter-single/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/incubator/jupyter-single/templates/pvc.yaml -------------------------------------------------------------------------------- /incubator/jupyter-single/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/incubator/jupyter-single/templates/service.yaml -------------------------------------------------------------------------------- /incubator/jupyter-single/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/incubator/jupyter-single/values.yaml -------------------------------------------------------------------------------- /incubator/spark-api-jupyter/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/incubator/spark-api-jupyter/.helmignore -------------------------------------------------------------------------------- /incubator/spark-api-jupyter/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/incubator/spark-api-jupyter/Chart.yaml -------------------------------------------------------------------------------- /incubator/spark-api-jupyter/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/incubator/spark-api-jupyter/templates/NOTES.txt -------------------------------------------------------------------------------- /incubator/spark-api-jupyter/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/incubator/spark-api-jupyter/templates/_helpers.tpl -------------------------------------------------------------------------------- /incubator/spark-api-jupyter/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/incubator/spark-api-jupyter/templates/deployment.yaml -------------------------------------------------------------------------------- /incubator/spark-api-jupyter/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/incubator/spark-api-jupyter/templates/ingress.yaml -------------------------------------------------------------------------------- /incubator/spark-api-jupyter/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/incubator/spark-api-jupyter/templates/service.yaml -------------------------------------------------------------------------------- /incubator/spark-api-jupyter/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/incubator/spark-api-jupyter/values.yaml -------------------------------------------------------------------------------- /infra/code-annotation/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/code-annotation/.helmignore -------------------------------------------------------------------------------- /infra/code-annotation/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/code-annotation/Chart.yaml -------------------------------------------------------------------------------- /infra/code-annotation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/code-annotation/README.md -------------------------------------------------------------------------------- /infra/code-annotation/ci/test-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/code-annotation/ci/test-values.yaml -------------------------------------------------------------------------------- /infra/code-annotation/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/code-annotation/templates/_helpers.tpl -------------------------------------------------------------------------------- /infra/code-annotation/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/code-annotation/templates/deployment.yaml -------------------------------------------------------------------------------- /infra/code-annotation/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/code-annotation/templates/ingress.yaml -------------------------------------------------------------------------------- /infra/code-annotation/templates/persistent-volume-claim.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/code-annotation/templates/persistent-volume-claim.yaml -------------------------------------------------------------------------------- /infra/code-annotation/templates/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/code-annotation/templates/secrets.yaml -------------------------------------------------------------------------------- /infra/code-annotation/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/code-annotation/templates/service.yaml -------------------------------------------------------------------------------- /infra/code-annotation/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/code-annotation/values.yaml -------------------------------------------------------------------------------- /infra/ewbf-miner/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/ewbf-miner/.helmignore -------------------------------------------------------------------------------- /infra/ewbf-miner/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/ewbf-miner/Chart.yaml -------------------------------------------------------------------------------- /infra/ewbf-miner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/ewbf-miner/README.md -------------------------------------------------------------------------------- /infra/ewbf-miner/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/ewbf-miner/templates/_helpers.tpl -------------------------------------------------------------------------------- /infra/ewbf-miner/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/ewbf-miner/templates/deployment.yaml -------------------------------------------------------------------------------- /infra/ewbf-miner/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/ewbf-miner/values.yaml -------------------------------------------------------------------------------- /infra/ghost-gcs-backup/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/ghost-gcs-backup/.helmignore -------------------------------------------------------------------------------- /infra/ghost-gcs-backup/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/ghost-gcs-backup/Chart.yaml -------------------------------------------------------------------------------- /infra/ghost-gcs-backup/ci/test-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/ghost-gcs-backup/ci/test-values.yaml -------------------------------------------------------------------------------- /infra/ghost-gcs-backup/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/ghost-gcs-backup/templates/_helpers.tpl -------------------------------------------------------------------------------- /infra/ghost-gcs-backup/templates/cronjob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/ghost-gcs-backup/templates/cronjob.yaml -------------------------------------------------------------------------------- /infra/ghost-gcs-backup/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/ghost-gcs-backup/templates/secret.yaml -------------------------------------------------------------------------------- /infra/ghost-gcs-backup/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/ghost-gcs-backup/values.yaml -------------------------------------------------------------------------------- /infra/git-server/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/git-server/.helmignore -------------------------------------------------------------------------------- /infra/git-server/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/git-server/Chart.yaml -------------------------------------------------------------------------------- /infra/git-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/git-server/README.md -------------------------------------------------------------------------------- /infra/git-server/ci/test-values.yaml: -------------------------------------------------------------------------------- 1 | repositories: 2 | hostPath: /tmp 3 | -------------------------------------------------------------------------------- /infra/git-server/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/git-server/templates/NOTES.txt -------------------------------------------------------------------------------- /infra/git-server/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/git-server/templates/_helpers.tpl -------------------------------------------------------------------------------- /infra/git-server/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/git-server/templates/deployment.yaml -------------------------------------------------------------------------------- /infra/git-server/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/git-server/templates/service.yaml -------------------------------------------------------------------------------- /infra/git-server/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/git-server/values.yaml -------------------------------------------------------------------------------- /infra/google-cloud-dns-healthcheck/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/google-cloud-dns-healthcheck/.helmignore -------------------------------------------------------------------------------- /infra/google-cloud-dns-healthcheck/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/google-cloud-dns-healthcheck/Chart.yaml -------------------------------------------------------------------------------- /infra/google-cloud-dns-healthcheck/ci/test-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/google-cloud-dns-healthcheck/ci/test-values.yaml -------------------------------------------------------------------------------- /infra/google-cloud-dns-healthcheck/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/google-cloud-dns-healthcheck/templates/_helpers.tpl -------------------------------------------------------------------------------- /infra/google-cloud-dns-healthcheck/templates/cronjob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/google-cloud-dns-healthcheck/templates/cronjob.yaml -------------------------------------------------------------------------------- /infra/google-cloud-dns-healthcheck/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/google-cloud-dns-healthcheck/values.yaml -------------------------------------------------------------------------------- /infra/hue/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/hue/.helmignore -------------------------------------------------------------------------------- /infra/hue/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/hue/Chart.yaml -------------------------------------------------------------------------------- /infra/hue/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/hue/templates/NOTES.txt -------------------------------------------------------------------------------- /infra/hue/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/hue/templates/_helpers.tpl -------------------------------------------------------------------------------- /infra/hue/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/hue/templates/configmap.yaml -------------------------------------------------------------------------------- /infra/hue/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/hue/templates/deployment.yaml -------------------------------------------------------------------------------- /infra/hue/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/hue/templates/ingress.yaml -------------------------------------------------------------------------------- /infra/hue/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/hue/templates/service.yaml -------------------------------------------------------------------------------- /infra/hue/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/hue/values.yaml -------------------------------------------------------------------------------- /infra/k8s-pod-headless-service-operator/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/k8s-pod-headless-service-operator/.helmignore -------------------------------------------------------------------------------- /infra/k8s-pod-headless-service-operator/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/k8s-pod-headless-service-operator/Chart.yaml -------------------------------------------------------------------------------- /infra/k8s-pod-headless-service-operator/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/k8s-pod-headless-service-operator/templates/_helpers.tpl -------------------------------------------------------------------------------- /infra/k8s-pod-headless-service-operator/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/k8s-pod-headless-service-operator/templates/deployment.yaml -------------------------------------------------------------------------------- /infra/k8s-pod-headless-service-operator/templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/k8s-pod-headless-service-operator/templates/rbac.yaml -------------------------------------------------------------------------------- /infra/k8s-pod-headless-service-operator/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/k8s-pod-headless-service-operator/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /infra/k8s-pod-headless-service-operator/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/k8s-pod-headless-service-operator/values.yaml -------------------------------------------------------------------------------- /infra/kubernetes-local-pv-provisioner/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/kubernetes-local-pv-provisioner/.helmignore -------------------------------------------------------------------------------- /infra/kubernetes-local-pv-provisioner/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/kubernetes-local-pv-provisioner/Chart.yaml -------------------------------------------------------------------------------- /infra/kubernetes-local-pv-provisioner/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/kubernetes-local-pv-provisioner/templates/_helpers.tpl -------------------------------------------------------------------------------- /infra/kubernetes-local-pv-provisioner/templates/daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/kubernetes-local-pv-provisioner/templates/daemonset.yaml -------------------------------------------------------------------------------- /infra/kubernetes-local-pv-provisioner/templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/kubernetes-local-pv-provisioner/templates/rbac.yaml -------------------------------------------------------------------------------- /infra/kubernetes-local-pv-provisioner/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/kubernetes-local-pv-provisioner/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /infra/kubernetes-local-pv-provisioner/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/kubernetes-local-pv-provisioner/values.yaml -------------------------------------------------------------------------------- /infra/landing/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/landing/.helmignore -------------------------------------------------------------------------------- /infra/landing/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/landing/Chart.yaml -------------------------------------------------------------------------------- /infra/landing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/landing/README.md -------------------------------------------------------------------------------- /infra/landing/ci/test-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/landing/ci/test-values.yaml -------------------------------------------------------------------------------- /infra/landing/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/landing/templates/_helpers.tpl -------------------------------------------------------------------------------- /infra/landing/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/landing/templates/deployment.yaml -------------------------------------------------------------------------------- /infra/landing/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/landing/templates/ingress.yaml -------------------------------------------------------------------------------- /infra/landing/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/landing/templates/service.yaml -------------------------------------------------------------------------------- /infra/landing/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/landing/values.yaml -------------------------------------------------------------------------------- /infra/ml-deployment/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/ml-deployment/.helmignore -------------------------------------------------------------------------------- /infra/ml-deployment/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/ml-deployment/Chart.yaml -------------------------------------------------------------------------------- /infra/ml-deployment/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/ml-deployment/templates/NOTES.txt -------------------------------------------------------------------------------- /infra/ml-deployment/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/ml-deployment/templates/_helpers.tpl -------------------------------------------------------------------------------- /infra/ml-deployment/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/ml-deployment/templates/deployment.yaml -------------------------------------------------------------------------------- /infra/ml-deployment/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/ml-deployment/templates/service.yaml -------------------------------------------------------------------------------- /infra/ml-deployment/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/ml-deployment/values.yaml -------------------------------------------------------------------------------- /infra/nfs-gluster-bridge/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/nfs-gluster-bridge/.helmignore -------------------------------------------------------------------------------- /infra/nfs-gluster-bridge/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/nfs-gluster-bridge/Chart.yaml -------------------------------------------------------------------------------- /infra/nfs-gluster-bridge/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/nfs-gluster-bridge/templates/NOTES.txt -------------------------------------------------------------------------------- /infra/nfs-gluster-bridge/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/nfs-gluster-bridge/templates/_helpers.tpl -------------------------------------------------------------------------------- /infra/nfs-gluster-bridge/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/nfs-gluster-bridge/templates/deployment.yaml -------------------------------------------------------------------------------- /infra/nfs-gluster-bridge/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/nfs-gluster-bridge/templates/service.yaml -------------------------------------------------------------------------------- /infra/nfs-gluster-bridge/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/nfs-gluster-bridge/values.yaml -------------------------------------------------------------------------------- /infra/online-net-stock-alert/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/online-net-stock-alert/.helmignore -------------------------------------------------------------------------------- /infra/online-net-stock-alert/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/online-net-stock-alert/Chart.yaml -------------------------------------------------------------------------------- /infra/online-net-stock-alert/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/online-net-stock-alert/templates/_helpers.tpl -------------------------------------------------------------------------------- /infra/online-net-stock-alert/templates/cronjob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/online-net-stock-alert/templates/cronjob.yaml -------------------------------------------------------------------------------- /infra/online-net-stock-alert/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/online-net-stock-alert/values.yaml -------------------------------------------------------------------------------- /infra/prometheus-external-monitor/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/prometheus-external-monitor/.helmignore -------------------------------------------------------------------------------- /infra/prometheus-external-monitor/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/prometheus-external-monitor/Chart.yaml -------------------------------------------------------------------------------- /infra/prometheus-external-monitor/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/prometheus-external-monitor/templates/_helpers.tpl -------------------------------------------------------------------------------- /infra/prometheus-external-monitor/templates/endpoint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/prometheus-external-monitor/templates/endpoint.yaml -------------------------------------------------------------------------------- /infra/prometheus-external-monitor/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/prometheus-external-monitor/templates/service.yaml -------------------------------------------------------------------------------- /infra/prometheus-external-monitor/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/prometheus-external-monitor/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /infra/prometheus-external-monitor/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/prometheus-external-monitor/values.yaml -------------------------------------------------------------------------------- /infra/scylla/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/scylla/.helmignore -------------------------------------------------------------------------------- /infra/scylla/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/scylla/Chart.yaml -------------------------------------------------------------------------------- /infra/scylla/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/scylla/templates/_helpers.tpl -------------------------------------------------------------------------------- /infra/scylla/templates/scylla-config-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/scylla/templates/scylla-config-configmap.yaml -------------------------------------------------------------------------------- /infra/scylla/templates/scylla-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/scylla/templates/scylla-configmap.yaml -------------------------------------------------------------------------------- /infra/scylla/templates/scylla-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/scylla/templates/scylla-service.yaml -------------------------------------------------------------------------------- /infra/scylla/templates/scylla-statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/scylla/templates/scylla-statefulset.yaml -------------------------------------------------------------------------------- /infra/scylla/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/scylla/values.yaml -------------------------------------------------------------------------------- /infra/website-redirect/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/website-redirect/.helmignore -------------------------------------------------------------------------------- /infra/website-redirect/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/website-redirect/Chart.yaml -------------------------------------------------------------------------------- /infra/website-redirect/ci/test-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/website-redirect/ci/test-values.yaml -------------------------------------------------------------------------------- /infra/website-redirect/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/website-redirect/templates/_helpers.tpl -------------------------------------------------------------------------------- /infra/website-redirect/templates/caddy-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/website-redirect/templates/caddy-configmap.yaml -------------------------------------------------------------------------------- /infra/website-redirect/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/website-redirect/templates/deployment.yaml -------------------------------------------------------------------------------- /infra/website-redirect/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/website-redirect/templates/ingress.yaml -------------------------------------------------------------------------------- /infra/website-redirect/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/website-redirect/templates/service.yaml -------------------------------------------------------------------------------- /infra/website-redirect/templates/tests/test-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/website-redirect/templates/tests/test-configmap.yaml -------------------------------------------------------------------------------- /infra/website-redirect/templates/tests/test-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/website-redirect/templates/tests/test-pod.yaml -------------------------------------------------------------------------------- /infra/website-redirect/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/infra/website-redirect/values.yaml -------------------------------------------------------------------------------- /scripts/install-minikube.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/scripts/install-minikube.sh -------------------------------------------------------------------------------- /scripts/repo-sync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/scripts/repo-sync.sh -------------------------------------------------------------------------------- /stable/bblfsh-web/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/bblfsh-web/.helmignore -------------------------------------------------------------------------------- /stable/bblfsh-web/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/bblfsh-web/Chart.yaml -------------------------------------------------------------------------------- /stable/bblfsh-web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/bblfsh-web/README.md -------------------------------------------------------------------------------- /stable/bblfsh-web/charts/bblfshd-sidecar-1.1.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/bblfsh-web/charts/bblfshd-sidecar-1.1.1.tgz -------------------------------------------------------------------------------- /stable/bblfsh-web/ci/test-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/bblfsh-web/ci/test-values.yaml -------------------------------------------------------------------------------- /stable/bblfsh-web/requirements.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/bblfsh-web/requirements.lock -------------------------------------------------------------------------------- /stable/bblfsh-web/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/bblfsh-web/requirements.yaml -------------------------------------------------------------------------------- /stable/bblfsh-web/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/bblfsh-web/templates/_helpers.tpl -------------------------------------------------------------------------------- /stable/bblfsh-web/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/bblfsh-web/templates/deployment.yaml -------------------------------------------------------------------------------- /stable/bblfsh-web/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/bblfsh-web/templates/ingress.yaml -------------------------------------------------------------------------------- /stable/bblfsh-web/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/bblfsh-web/templates/service.yaml -------------------------------------------------------------------------------- /stable/bblfsh-web/templates/tests/test-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/bblfsh-web/templates/tests/test-configmap.yaml -------------------------------------------------------------------------------- /stable/bblfsh-web/templates/tests/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/bblfsh-web/templates/tests/test.yaml -------------------------------------------------------------------------------- /stable/bblfsh-web/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/bblfsh-web/values.yaml -------------------------------------------------------------------------------- /stable/bblfshd-sidecar/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/bblfshd-sidecar/.helmignore -------------------------------------------------------------------------------- /stable/bblfshd-sidecar/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/bblfshd-sidecar/Chart.yaml -------------------------------------------------------------------------------- /stable/bblfshd-sidecar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/bblfshd-sidecar/README.md -------------------------------------------------------------------------------- /stable/bblfshd-sidecar/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/bblfshd-sidecar/templates/_helpers.tpl -------------------------------------------------------------------------------- /stable/bblfshd-sidecar/templates/install-drivers-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/bblfshd-sidecar/templates/install-drivers-configmap.yaml -------------------------------------------------------------------------------- /stable/bblfshd-sidecar/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/bblfshd-sidecar/templates/service.yaml -------------------------------------------------------------------------------- /stable/bblfshd-sidecar/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/bblfshd-sidecar/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /stable/bblfshd-sidecar/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/bblfshd-sidecar/values.yaml -------------------------------------------------------------------------------- /stable/bblfshd/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/bblfshd/.helmignore -------------------------------------------------------------------------------- /stable/bblfshd/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/bblfshd/Chart.yaml -------------------------------------------------------------------------------- /stable/bblfshd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/bblfshd/README.md -------------------------------------------------------------------------------- /stable/bblfshd/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/bblfshd/images/logo.png -------------------------------------------------------------------------------- /stable/bblfshd/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/bblfshd/templates/NOTES.txt -------------------------------------------------------------------------------- /stable/bblfshd/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/bblfshd/templates/_helpers.tpl -------------------------------------------------------------------------------- /stable/bblfshd/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/bblfshd/templates/deployment.yaml -------------------------------------------------------------------------------- /stable/bblfshd/templates/install-drivers-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/bblfshd/templates/install-drivers-configmap.yaml -------------------------------------------------------------------------------- /stable/bblfshd/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/bblfshd/templates/service.yaml -------------------------------------------------------------------------------- /stable/bblfshd/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/bblfshd/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /stable/bblfshd/templates/tests/test-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/bblfshd/templates/tests/test-configmap.yaml -------------------------------------------------------------------------------- /stable/bblfshd/templates/tests/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/bblfshd/templates/tests/test.yaml -------------------------------------------------------------------------------- /stable/bblfshd/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/bblfshd/values.yaml -------------------------------------------------------------------------------- /stable/borges/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/borges/.helmignore -------------------------------------------------------------------------------- /stable/borges/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/borges/Chart.yaml -------------------------------------------------------------------------------- /stable/borges/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/borges/README.md -------------------------------------------------------------------------------- /stable/borges/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/borges/templates/_helpers.tpl -------------------------------------------------------------------------------- /stable/borges/templates/consumer-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/borges/templates/consumer-deployment.yaml -------------------------------------------------------------------------------- /stable/borges/templates/producer-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/borges/templates/producer-deployment.yaml -------------------------------------------------------------------------------- /stable/borges/templates/republish-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/borges/templates/republish-deployment.yaml -------------------------------------------------------------------------------- /stable/borges/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/borges/values.yaml -------------------------------------------------------------------------------- /stable/gemini/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/gemini/.helmignore -------------------------------------------------------------------------------- /stable/gemini/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/gemini/Chart.yaml -------------------------------------------------------------------------------- /stable/gemini/charts/bblfshd-sidecar-0.2.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/gemini/charts/bblfshd-sidecar-0.2.0.tgz -------------------------------------------------------------------------------- /stable/gemini/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/gemini/requirements.yaml -------------------------------------------------------------------------------- /stable/gemini/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/gemini/templates/_helpers.tpl -------------------------------------------------------------------------------- /stable/gemini/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/gemini/templates/deployment.yaml -------------------------------------------------------------------------------- /stable/gemini/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/gemini/templates/pvc.yaml -------------------------------------------------------------------------------- /stable/gemini/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/gemini/values.yaml -------------------------------------------------------------------------------- /stable/gitbase/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/gitbase/.helmignore -------------------------------------------------------------------------------- /stable/gitbase/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/gitbase/Chart.yaml -------------------------------------------------------------------------------- /stable/gitbase/charts/bblfshd-sidecar-0.2.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/gitbase/charts/bblfshd-sidecar-0.2.0.tgz -------------------------------------------------------------------------------- /stable/gitbase/ci/test-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/gitbase/ci/test-values.yaml -------------------------------------------------------------------------------- /stable/gitbase/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/gitbase/requirements.yaml -------------------------------------------------------------------------------- /stable/gitbase/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/gitbase/templates/NOTES.txt -------------------------------------------------------------------------------- /stable/gitbase/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/gitbase/templates/_helpers.tpl -------------------------------------------------------------------------------- /stable/gitbase/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/gitbase/templates/service.yaml -------------------------------------------------------------------------------- /stable/gitbase/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/gitbase/templates/statefulset.yaml -------------------------------------------------------------------------------- /stable/gitbase/templates/tests/test-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/gitbase/templates/tests/test-configmap.yaml -------------------------------------------------------------------------------- /stable/gitbase/templates/tests/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/gitbase/templates/tests/test.yaml -------------------------------------------------------------------------------- /stable/gitbase/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/gitbase/values.yaml -------------------------------------------------------------------------------- /stable/lookout-gometalint-analyzer/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/lookout-gometalint-analyzer/.helmignore -------------------------------------------------------------------------------- /stable/lookout-gometalint-analyzer/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/lookout-gometalint-analyzer/Chart.yaml -------------------------------------------------------------------------------- /stable/lookout-gometalint-analyzer/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/lookout-gometalint-analyzer/templates/_helpers.tpl -------------------------------------------------------------------------------- /stable/lookout-gometalint-analyzer/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/lookout-gometalint-analyzer/templates/deployment.yaml -------------------------------------------------------------------------------- /stable/lookout-gometalint-analyzer/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/lookout-gometalint-analyzer/templates/service.yaml -------------------------------------------------------------------------------- /stable/lookout-gometalint-analyzer/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/lookout-gometalint-analyzer/values.yaml -------------------------------------------------------------------------------- /stable/lookout-sonarcheck-analyzer/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/lookout-sonarcheck-analyzer/.helmignore -------------------------------------------------------------------------------- /stable/lookout-sonarcheck-analyzer/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/lookout-sonarcheck-analyzer/Chart.yaml -------------------------------------------------------------------------------- /stable/lookout-sonarcheck-analyzer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/lookout-sonarcheck-analyzer/README.md -------------------------------------------------------------------------------- /stable/lookout-sonarcheck-analyzer/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/lookout-sonarcheck-analyzer/templates/_helpers.tpl -------------------------------------------------------------------------------- /stable/lookout-sonarcheck-analyzer/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/lookout-sonarcheck-analyzer/templates/deployment.yaml -------------------------------------------------------------------------------- /stable/lookout-sonarcheck-analyzer/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/lookout-sonarcheck-analyzer/templates/service.yaml -------------------------------------------------------------------------------- /stable/lookout-sonarcheck-analyzer/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/lookout-sonarcheck-analyzer/values.yaml -------------------------------------------------------------------------------- /stable/lookout-style-analyzer/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/lookout-style-analyzer/.helmignore -------------------------------------------------------------------------------- /stable/lookout-style-analyzer/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/lookout-style-analyzer/Chart.yaml -------------------------------------------------------------------------------- /stable/lookout-style-analyzer/ci/pvc-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/lookout-style-analyzer/ci/pvc-values.yaml -------------------------------------------------------------------------------- /stable/lookout-style-analyzer/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/lookout-style-analyzer/templates/_helpers.tpl -------------------------------------------------------------------------------- /stable/lookout-style-analyzer/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/lookout-style-analyzer/templates/deployment.yaml -------------------------------------------------------------------------------- /stable/lookout-style-analyzer/templates/init-db.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/lookout-style-analyzer/templates/init-db.yaml -------------------------------------------------------------------------------- /stable/lookout-style-analyzer/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/lookout-style-analyzer/templates/service.yaml -------------------------------------------------------------------------------- /stable/lookout-style-analyzer/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/lookout-style-analyzer/values.yaml -------------------------------------------------------------------------------- /stable/lookout-terraform-analyzer/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/lookout-terraform-analyzer/.helmignore -------------------------------------------------------------------------------- /stable/lookout-terraform-analyzer/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/lookout-terraform-analyzer/Chart.yaml -------------------------------------------------------------------------------- /stable/lookout-terraform-analyzer/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/lookout-terraform-analyzer/templates/_helpers.tpl -------------------------------------------------------------------------------- /stable/lookout-terraform-analyzer/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/lookout-terraform-analyzer/templates/deployment.yaml -------------------------------------------------------------------------------- /stable/lookout-terraform-analyzer/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/lookout-terraform-analyzer/templates/service.yaml -------------------------------------------------------------------------------- /stable/lookout-terraform-analyzer/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/lookout-terraform-analyzer/values.yaml -------------------------------------------------------------------------------- /stable/lookout-typos-analyzer/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/lookout-typos-analyzer/.helmignore -------------------------------------------------------------------------------- /stable/lookout-typos-analyzer/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/lookout-typos-analyzer/Chart.yaml -------------------------------------------------------------------------------- /stable/lookout-typos-analyzer/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/lookout-typos-analyzer/templates/_helpers.tpl -------------------------------------------------------------------------------- /stable/lookout-typos-analyzer/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/lookout-typos-analyzer/templates/deployment.yaml -------------------------------------------------------------------------------- /stable/lookout-typos-analyzer/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/lookout-typos-analyzer/templates/service.yaml -------------------------------------------------------------------------------- /stable/lookout-typos-analyzer/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/lookout-typos-analyzer/values.yaml -------------------------------------------------------------------------------- /stable/lookout/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/lookout/.helmignore -------------------------------------------------------------------------------- /stable/lookout/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/lookout/Chart.yaml -------------------------------------------------------------------------------- /stable/lookout/charts/bblfshd-sidecar-1.1.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/lookout/charts/bblfshd-sidecar-1.1.1.tgz -------------------------------------------------------------------------------- /stable/lookout/ci/test-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/lookout/ci/test-values.yaml -------------------------------------------------------------------------------- /stable/lookout/requirements.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/lookout/requirements.lock -------------------------------------------------------------------------------- /stable/lookout/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/lookout/requirements.yaml -------------------------------------------------------------------------------- /stable/lookout/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/lookout/templates/_helpers.tpl -------------------------------------------------------------------------------- /stable/lookout/templates/lookout-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/lookout/templates/lookout-configmap.yaml -------------------------------------------------------------------------------- /stable/lookout/templates/lookout-init-db.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/lookout/templates/lookout-init-db.yaml -------------------------------------------------------------------------------- /stable/lookout/templates/watch-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/lookout/templates/watch-deployment.yaml -------------------------------------------------------------------------------- /stable/lookout/templates/work-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/lookout/templates/work-deployment.yaml -------------------------------------------------------------------------------- /stable/lookout/templates/work-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/lookout/templates/work-service.yaml -------------------------------------------------------------------------------- /stable/lookout/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/lookout/values.yaml -------------------------------------------------------------------------------- /stable/rovers/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/rovers/.helmignore -------------------------------------------------------------------------------- /stable/rovers/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/rovers/Chart.yaml -------------------------------------------------------------------------------- /stable/rovers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/rovers/README.md -------------------------------------------------------------------------------- /stable/rovers/ci/given-secret-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/rovers/ci/given-secret-values.yaml -------------------------------------------------------------------------------- /stable/rovers/ci/predef-secret-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/rovers/ci/predef-secret-values.yaml -------------------------------------------------------------------------------- /stable/rovers/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/rovers/templates/_helpers.tpl -------------------------------------------------------------------------------- /stable/rovers/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/rovers/templates/deployment.yaml -------------------------------------------------------------------------------- /stable/rovers/templates/initdb-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/rovers/templates/initdb-job.yaml -------------------------------------------------------------------------------- /stable/rovers/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/rovers/templates/secret.yaml -------------------------------------------------------------------------------- /stable/rovers/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/rovers/values.yaml -------------------------------------------------------------------------------- /stable/sourced-ui/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/sourced-ui/.helmignore -------------------------------------------------------------------------------- /stable/sourced-ui/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/sourced-ui/Chart.yaml -------------------------------------------------------------------------------- /stable/sourced-ui/ci/test-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/sourced-ui/ci/test-values.yaml -------------------------------------------------------------------------------- /stable/sourced-ui/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/sourced-ui/templates/NOTES.txt -------------------------------------------------------------------------------- /stable/sourced-ui/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/sourced-ui/templates/_helpers.tpl -------------------------------------------------------------------------------- /stable/sourced-ui/templates/admin-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/sourced-ui/templates/admin-secret.yaml -------------------------------------------------------------------------------- /stable/sourced-ui/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/sourced-ui/templates/deployment.yaml -------------------------------------------------------------------------------- /stable/sourced-ui/templates/gitbase-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/sourced-ui/templates/gitbase-secret.yaml -------------------------------------------------------------------------------- /stable/sourced-ui/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/sourced-ui/templates/ingress.yaml -------------------------------------------------------------------------------- /stable/sourced-ui/templates/init-db-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/sourced-ui/templates/init-db-job.yaml -------------------------------------------------------------------------------- /stable/sourced-ui/templates/postgres-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/sourced-ui/templates/postgres-secret.yaml -------------------------------------------------------------------------------- /stable/sourced-ui/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/sourced-ui/templates/service.yaml -------------------------------------------------------------------------------- /stable/sourced-ui/templates/warmup-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/sourced-ui/templates/warmup-configmap.yaml -------------------------------------------------------------------------------- /stable/sourced-ui/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/sourced-ui/values.yaml -------------------------------------------------------------------------------- /stable/spark-thrift-server/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/spark-thrift-server/.helmignore -------------------------------------------------------------------------------- /stable/spark-thrift-server/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/spark-thrift-server/Chart.yaml -------------------------------------------------------------------------------- /stable/spark-thrift-server/ci/test-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/spark-thrift-server/ci/test-values.yaml -------------------------------------------------------------------------------- /stable/spark-thrift-server/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/spark-thrift-server/templates/_helpers.tpl -------------------------------------------------------------------------------- /stable/spark-thrift-server/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/spark-thrift-server/templates/deployment.yaml -------------------------------------------------------------------------------- /stable/spark-thrift-server/templates/gitbase-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/spark-thrift-server/templates/gitbase-secret.yaml -------------------------------------------------------------------------------- /stable/spark-thrift-server/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/spark-thrift-server/templates/service.yaml -------------------------------------------------------------------------------- /stable/spark-thrift-server/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/spark-thrift-server/values.yaml -------------------------------------------------------------------------------- /stable/spark/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/spark/.helmignore -------------------------------------------------------------------------------- /stable/spark/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/spark/Chart.yaml -------------------------------------------------------------------------------- /stable/spark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/spark/README.md -------------------------------------------------------------------------------- /stable/spark/templates/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/spark/templates/.helmignore -------------------------------------------------------------------------------- /stable/spark/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/spark/templates/NOTES.txt -------------------------------------------------------------------------------- /stable/spark/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/spark/templates/_helpers.tpl -------------------------------------------------------------------------------- /stable/spark/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/spark/templates/configmap.yaml -------------------------------------------------------------------------------- /stable/spark/templates/livy-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/spark/templates/livy-service.yaml -------------------------------------------------------------------------------- /stable/spark/templates/spark-master-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/spark/templates/spark-master-deployment.yaml -------------------------------------------------------------------------------- /stable/spark/templates/spark-master-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/spark/templates/spark-master-service.yaml -------------------------------------------------------------------------------- /stable/spark/templates/spark-webui-proxy-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/spark/templates/spark-webui-proxy-deployment.yaml -------------------------------------------------------------------------------- /stable/spark/templates/spark-webui-proxy-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/spark/templates/spark-webui-proxy-service.yaml -------------------------------------------------------------------------------- /stable/spark/templates/spark-webui-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/spark/templates/spark-webui-service.yaml -------------------------------------------------------------------------------- /stable/spark/templates/spark-worker-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/spark/templates/spark-worker-deployment.yaml -------------------------------------------------------------------------------- /stable/spark/templates/tests/test-job-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/spark/templates/tests/test-job-pod.yaml -------------------------------------------------------------------------------- /stable/spark/templates/tests/test-webui-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/spark/templates/tests/test-webui-configmap.yaml -------------------------------------------------------------------------------- /stable/spark/templates/tests/test-webui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/spark/templates/tests/test-webui.yaml -------------------------------------------------------------------------------- /stable/spark/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/charts/HEAD/stable/spark/values.yaml --------------------------------------------------------------------------------