├── .github └── workflows │ └── release.yml ├── .gitignore ├── IndexationOutils.md ├── README.md ├── ToolsIndex.md └── charts ├── argo-cd ├── Chart.yaml ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── ingress.yaml │ ├── network-policy.yaml │ ├── networkpolicy-ingress.yaml │ ├── rolebinding-controller.yaml │ ├── rolebinding-server.yaml │ ├── secret-cluster.yaml │ └── secret.yaml ├── values.schema.json └── values.yaml ├── argo-workflows ├── Chart.yaml ├── templates │ ├── NOTES.txt │ ├── ingress.yaml │ ├── network-policy.yaml │ ├── networkpolicy-ingress.yaml │ ├── role-binding.yaml │ ├── role.yaml │ └── serviceaccount.yaml ├── values.schema.json └── values.yaml ├── blazingsql ├── .helmignore ├── Chart.yaml ├── templates │ ├── NOTES.txt │ ├── configmap-git.yaml │ ├── configmap-s3.yaml │ ├── configmap-vault.yaml │ ├── deployment.yaml │ ├── ingress.yaml │ ├── networkpolicy-ingress.yaml │ ├── networkpolicy.yaml │ ├── pvc.yaml │ ├── role-binding.yaml │ ├── service.yaml │ ├── serviceaccount.yaml │ └── tests │ │ └── test-connection.yaml ├── values.schema.json └── values.yaml ├── cloudshell ├── .helmignore ├── Chart.yaml ├── templates │ ├── NOTES.txt │ ├── configmap-git.yaml │ ├── configmap-s3.yaml │ ├── configmap-vault.yaml │ ├── delete.yaml │ ├── ingress.yaml │ ├── networkpolicy-ingress.yaml │ ├── networkpolicy.yaml │ ├── role-binding-delete-job.yaml │ ├── role-binding.yaml │ ├── service.yaml │ ├── serviceaccount-delete-job.yaml │ ├── serviceaccount.yaml │ ├── statefulSet.yaml │ └── tests │ │ └── test-connection.yaml ├── values.schema.json └── values.yaml ├── dask ├── Chart.yaml ├── templates │ ├── NOTES.txt │ ├── ingress.yaml │ ├── networkpolicy-ingress.yaml │ └── networkpolicy.yaml ├── values.schema.json └── values.yaml ├── data-profiler ├── Chart.yaml ├── templates │ ├── NOTES.txt │ ├── configmap-s3.yaml │ ├── deployment.yaml │ ├── ingress.yaml │ ├── networkpolicy-ingress.yaml │ ├── networkpolicy.yaml │ └── service.yaml ├── values.schema.json └── values.yaml ├── delta-sharing-server ├── Chart.yaml ├── templates │ ├── NOTES.txt │ ├── configmap-coresite.yaml │ ├── configmap-nginx.yaml │ ├── configmap.yaml │ ├── deployment.yaml │ ├── ingress.yaml │ ├── networkpolicy-ingress.yaml │ ├── networkpolicy.yaml │ └── service.yaml ├── values.schema.json └── values.yaml ├── elastic ├── Chart.yaml ├── templates │ ├── NOTES.txt │ ├── discovery-secret.yaml │ ├── ingress.yaml │ ├── networkpolicy-ingress.yaml │ └── networkpolicy.yaml ├── values.schema.json └── values.yaml ├── fastai ├── Chart.yaml ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── configmap-git.yaml │ ├── configmap-s3.yaml │ ├── configmap-vault.yaml │ ├── deployment.yaml │ ├── ingress.yaml │ ├── networkpolicy-ingress.yaml │ ├── networkpolicy.yaml │ ├── pvc.yaml │ ├── role-binding.yaml │ ├── service.yaml │ ├── serviceaccount.yaml │ └── tests │ │ └── test-connection.yaml ├── values.schema.json └── values.yaml ├── hive-metastore ├── Chart.yaml ├── templates │ ├── NOTES.txt │ ├── configmap.yaml │ ├── deployment.yaml │ ├── discovery-secret.yaml │ ├── networkpolicy.yaml │ └── service.yaml ├── values.schema.json └── values.yaml ├── jena ├── Chart.yaml ├── templates │ ├── NOTES.txt │ ├── deployment.yaml │ ├── ingress.yaml │ ├── networkpolicy-ingress.yaml │ ├── networkpolicy.yaml │ ├── pvc.yaml │ ├── service.yaml │ ├── serviceaccount.yaml │ └── tests │ │ └── test-connection.yaml ├── values.schema.json └── values.yaml ├── jupyter ├── .helmignore ├── Chart.yaml ├── templates │ ├── NOTES.txt │ ├── configmap-coresite.yaml │ ├── configmap-git.yaml │ ├── configmap-hive.yaml │ ├── configmap-mlflow.yaml │ ├── configmap-s3.yaml │ ├── configmap-sparkconf.yaml │ ├── configmap-vault.yaml │ ├── ingress-sparkui.yaml │ ├── ingress-user.yaml │ ├── ingress.yaml │ ├── networkpolicy-ingress.yaml │ ├── networkpolicy.yaml │ ├── pvc.yaml │ ├── role-binding.yaml │ ├── service.yaml │ ├── serviceaccount.yaml │ ├── statefulset.yaml │ └── tests │ │ └── test-connection.yaml ├── values.schema.json └── values.yaml ├── kafka ├── Chart.yaml ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ └── discovery-secret.yaml ├── values.schema.json └── values.yaml ├── label-studio ├── Chart.yaml ├── templates │ ├── NOTES.txt │ ├── deployment.yaml │ ├── ingress.yaml │ ├── networkpolicy-ingress.yaml │ ├── networkpolicy.yaml │ └── service.yaml ├── values.schema.json └── values.yaml ├── lakefs ├── Chart.yaml ├── templates │ ├── NOTES.txt │ ├── ingress.yaml │ ├── networkpolicy-ingress.yaml │ └── networkpolicy.yaml ├── values.schema.json └── values.yaml ├── library-chart ├── Chart.yaml └── templates │ ├── _configmaps.tpl │ ├── _ingress.tpl │ ├── _interactive_services.tpl │ ├── _labels.tpl │ ├── _names.tpl │ └── _serviceaccounts.tpl ├── mariadb ├── Chart.yaml ├── templates │ ├── NOTES.txt │ └── discovery-secret.yaml ├── values.schema.json └── values.yaml ├── mlflow ├── Chart.yaml ├── templates │ ├── NOTES.txt │ ├── configmap-s3.yaml │ ├── deployment.yaml │ ├── discovery-secret.yaml │ ├── ingress.yaml │ ├── networkpolicy-ingress.yaml │ ├── networkpolicy.yaml │ └── service.yaml ├── values.schema.json └── values.yaml ├── mongodb ├── Chart.yaml ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── discovery-secret.yaml │ └── networkpolicy.yaml ├── values.schema.json └── values.yaml ├── neo4j ├── .helmignore ├── Chart.yaml ├── templates │ ├── NOTES.txt │ ├── deployment.yaml │ ├── ingress.yaml │ ├── networkpolicy-ingress.yaml │ ├── networkpolicy.yaml │ ├── pvc.yaml │ ├── service.yaml │ ├── serviceaccount.yaml │ └── tests │ │ └── test-connection.yaml ├── values.schema.json └── values.yaml ├── nocodb ├── Chart.yaml ├── templates │ ├── NOTES.txt │ ├── deployment.yaml │ ├── ingress.yaml │ ├── networkpolicy-ingress.yaml │ ├── networkpolicy.yaml │ ├── pvc.yaml │ ├── service.yaml │ ├── serviceaccount.yaml │ └── tests │ │ └── test-connection.yaml ├── values.schema.json └── values.yaml ├── openrefine ├── .helmignore ├── Chart.yaml ├── templates │ ├── NOTES.txt │ ├── deployment.yaml │ ├── ingress.yaml │ ├── networkpolicy-ingress.yaml │ ├── networkpolicy.yaml │ ├── pvc.yaml │ ├── service.yaml │ ├── serviceaccount.yaml │ └── tests │ │ └── test-connection.yaml ├── values.schema.json └── values.yaml ├── pgadmin ├── .helmignore ├── Chart.yaml ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── configmap.yaml │ ├── deployment.yaml │ ├── ingress.yaml │ ├── networkpolicy-ingress.yaml │ ├── networkpolicy.yaml │ ├── service.yaml │ ├── serviceaccount.yaml │ └── tests │ │ └── test-connection.yaml ├── values.schema.json └── values.yaml ├── pinot ├── .helmignore ├── Chart.yaml ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ └── ingress.yaml ├── values.schema.json └── values.yaml ├── postgresql ├── Chart.yaml ├── templates │ ├── NOTES.txt │ ├── configmap-init.yaml │ ├── discovery-secret.yaml │ └── networkpolicy.yaml ├── values.schema.json └── values.yaml ├── rapidsai ├── .helmignore ├── Chart.yaml ├── templates │ ├── NOTES.txt │ ├── configmap-coresite.yaml │ ├── configmap-git.yaml │ ├── configmap-hive.yaml │ ├── configmap-s3.yaml │ ├── configmap-sparkconf.yaml │ ├── configmap-vault.yaml │ ├── ingress-sparkui.yaml │ ├── ingress.yaml │ ├── networkpolicy-ingress.yaml │ ├── networkpolicy.yaml │ ├── pvc.yaml │ ├── role-binding.yaml │ ├── service.yaml │ ├── serviceaccount.yaml │ ├── statefulset.yaml │ └── tests │ │ └── test-connection.yaml ├── values.schema.json └── values.yaml ├── redash ├── Chart.yaml ├── templates │ ├── NOTES.txt │ ├── ingress.yaml │ └── secrets.yaml ├── values.schema.json └── values.yaml ├── rstudio ├── .helmignore ├── Chart.yaml ├── templates │ ├── NOTES.txt │ ├── configmap-coresite.yaml │ ├── configmap-git.yaml │ ├── configmap-hive.yaml │ ├── configmap-s3.yaml │ ├── configmap-sparkconf.yaml │ ├── configmap-vault.yaml │ ├── ingress-sparkui.yaml │ ├── ingress-user.yaml │ ├── ingress.yaml │ ├── networkpolicy-ingress.yaml │ ├── networkpolicy.yaml │ ├── pvc.yaml │ ├── role-binding.yaml │ ├── service.yaml │ ├── serviceaccount.yaml │ ├── statefulset.yaml │ └── tests │ │ └── test-connection.yaml ├── values.schema.json └── values.yaml ├── spark-history ├── Chart.yaml ├── templates │ ├── NOTES.txt │ ├── configmap-coresite.yaml │ ├── configmap-s3.yaml │ ├── deployment.yaml │ ├── ingress.yaml │ ├── networkpolicy-ingress.yaml │ ├── networkpolicy.yaml │ ├── role-binding.yaml │ ├── service.yaml │ ├── serviceaccount.yaml │ └── tests │ │ └── test-connection.yaml ├── values.schema.json └── values.yaml ├── spark-thrift-server ├── Chart.yaml ├── templates │ ├── NOTES.txt │ ├── configmap-coresite.yaml │ ├── configmap-hive.yaml │ ├── configmap-s3.yaml │ ├── configmap-sparkconf.yaml │ ├── discovery-secret.yaml │ ├── ingress.yaml │ ├── networkpolicy-ingress.yaml │ ├── networkpolicy.yaml │ ├── role-binding.yaml │ ├── service.yaml │ ├── serviceaccount.yaml │ └── statefulset.yaml ├── values.schema.json └── values.yaml ├── superset ├── Chart.yaml ├── templates │ ├── NOTES.txt │ ├── _discovery.tpl │ └── ingress.yaml ├── values.schema.json └── values.yaml ├── tensorflow ├── .helmignore ├── Chart.yaml ├── templates │ ├── NOTES.txt │ ├── configmap-git.yaml │ ├── configmap-s3.yaml │ ├── configmap-vault.yaml │ ├── deployment.yaml │ ├── ingress-tensorboard.yaml │ ├── ingress.yaml │ ├── networkpolicy-ingress.yaml │ ├── networkpolicy.yaml │ ├── pvc.yaml │ ├── role-binding.yaml │ ├── service.yaml │ ├── serviceaccount.yaml │ └── tests │ │ └── test-connection.yaml ├── values.schema.json └── values.yaml ├── trino ├── Chart.yaml ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── configmap-catalog.yaml │ ├── configmap-coordinator.yaml │ ├── configmap-hdfs.yaml │ ├── configmap-worker.yaml │ ├── deployment-coordinator.yaml │ ├── deployment-worker.yaml │ ├── discovery-secret.yaml │ ├── ingress.yaml │ ├── networkpolicy-ingress.yaml │ ├── networkpolicy.yaml │ └── service.yaml ├── values.schema.json └── values.yaml ├── ubuntu ├── .helmignore ├── Chart.yaml ├── templates │ ├── NOTES.txt │ ├── deployment.yaml │ ├── ingress-user.yaml │ ├── ingress.yaml │ ├── networkpolicy-ingress.yaml │ ├── networkpolicy.yaml │ ├── pvc.yaml │ ├── role-binding.yaml │ ├── secret-git.yaml │ ├── secret-s3.yaml │ ├── secret-vault.yaml │ ├── service.yaml │ ├── serviceaccount.yaml │ └── tests │ │ └── test-connection.yaml ├── values.schema.json └── values.yaml └── vscode ├── .helmignore ├── Chart.yaml ├── templates ├── NOTES.txt ├── configmap-git.yaml ├── configmap-s3.yaml ├── configmap-vault.yaml ├── deployment.yaml ├── ingress-user.yaml ├── ingress.yaml ├── networkpolicy-ingress.yaml ├── networkpolicy.yaml ├── pvc.yaml ├── role-binding.yaml ├── service.yaml ├── serviceaccount.yaml └── tests │ └── test-connection.yaml ├── values.schema.json └── values.yaml /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.tgz 2 | index.yaml 3 | Chart.lock 4 | -------------------------------------------------------------------------------- /IndexationOutils.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/IndexationOutils.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/README.md -------------------------------------------------------------------------------- /ToolsIndex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/ToolsIndex.md -------------------------------------------------------------------------------- /charts/argo-cd/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/argo-cd/Chart.yaml -------------------------------------------------------------------------------- /charts/argo-cd/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/argo-cd/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/argo-cd/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/argo-cd/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/argo-cd/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/argo-cd/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/argo-cd/templates/network-policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/argo-cd/templates/network-policy.yaml -------------------------------------------------------------------------------- /charts/argo-cd/templates/networkpolicy-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/argo-cd/templates/networkpolicy-ingress.yaml -------------------------------------------------------------------------------- /charts/argo-cd/templates/rolebinding-controller.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/argo-cd/templates/rolebinding-controller.yaml -------------------------------------------------------------------------------- /charts/argo-cd/templates/rolebinding-server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/argo-cd/templates/rolebinding-server.yaml -------------------------------------------------------------------------------- /charts/argo-cd/templates/secret-cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/argo-cd/templates/secret-cluster.yaml -------------------------------------------------------------------------------- /charts/argo-cd/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/argo-cd/templates/secret.yaml -------------------------------------------------------------------------------- /charts/argo-cd/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/argo-cd/values.schema.json -------------------------------------------------------------------------------- /charts/argo-cd/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/argo-cd/values.yaml -------------------------------------------------------------------------------- /charts/argo-workflows/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/argo-workflows/Chart.yaml -------------------------------------------------------------------------------- /charts/argo-workflows/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/argo-workflows/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/argo-workflows/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/argo-workflows/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/argo-workflows/templates/network-policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/argo-workflows/templates/network-policy.yaml -------------------------------------------------------------------------------- /charts/argo-workflows/templates/networkpolicy-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/argo-workflows/templates/networkpolicy-ingress.yaml -------------------------------------------------------------------------------- /charts/argo-workflows/templates/role-binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/argo-workflows/templates/role-binding.yaml -------------------------------------------------------------------------------- /charts/argo-workflows/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/argo-workflows/templates/role.yaml -------------------------------------------------------------------------------- /charts/argo-workflows/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/argo-workflows/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/argo-workflows/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/argo-workflows/values.schema.json -------------------------------------------------------------------------------- /charts/argo-workflows/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/argo-workflows/values.yaml -------------------------------------------------------------------------------- /charts/blazingsql/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/blazingsql/.helmignore -------------------------------------------------------------------------------- /charts/blazingsql/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/blazingsql/Chart.yaml -------------------------------------------------------------------------------- /charts/blazingsql/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/blazingsql/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/blazingsql/templates/configmap-git.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.configMapGit" . }} -------------------------------------------------------------------------------- /charts/blazingsql/templates/configmap-s3.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.configMapS3" . }} 2 | -------------------------------------------------------------------------------- /charts/blazingsql/templates/configmap-vault.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.configMapVault" . }} -------------------------------------------------------------------------------- /charts/blazingsql/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/blazingsql/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/blazingsql/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/blazingsql/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/blazingsql/templates/networkpolicy-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/blazingsql/templates/networkpolicy-ingress.yaml -------------------------------------------------------------------------------- /charts/blazingsql/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/blazingsql/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /charts/blazingsql/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/blazingsql/templates/pvc.yaml -------------------------------------------------------------------------------- /charts/blazingsql/templates/role-binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/blazingsql/templates/role-binding.yaml -------------------------------------------------------------------------------- /charts/blazingsql/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/blazingsql/templates/service.yaml -------------------------------------------------------------------------------- /charts/blazingsql/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/blazingsql/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/blazingsql/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/blazingsql/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /charts/blazingsql/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/blazingsql/values.schema.json -------------------------------------------------------------------------------- /charts/blazingsql/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/blazingsql/values.yaml -------------------------------------------------------------------------------- /charts/cloudshell/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/cloudshell/.helmignore -------------------------------------------------------------------------------- /charts/cloudshell/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/cloudshell/Chart.yaml -------------------------------------------------------------------------------- /charts/cloudshell/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/cloudshell/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/cloudshell/templates/configmap-git.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.configMapGit" . }} 2 | -------------------------------------------------------------------------------- /charts/cloudshell/templates/configmap-s3.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.configMapS3" . }} 2 | -------------------------------------------------------------------------------- /charts/cloudshell/templates/configmap-vault.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.configMapVault" . }} 2 | -------------------------------------------------------------------------------- /charts/cloudshell/templates/delete.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/cloudshell/templates/delete.yaml -------------------------------------------------------------------------------- /charts/cloudshell/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/cloudshell/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/cloudshell/templates/networkpolicy-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/cloudshell/templates/networkpolicy-ingress.yaml -------------------------------------------------------------------------------- /charts/cloudshell/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/cloudshell/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /charts/cloudshell/templates/role-binding-delete-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/cloudshell/templates/role-binding-delete-job.yaml -------------------------------------------------------------------------------- /charts/cloudshell/templates/role-binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/cloudshell/templates/role-binding.yaml -------------------------------------------------------------------------------- /charts/cloudshell/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/cloudshell/templates/service.yaml -------------------------------------------------------------------------------- /charts/cloudshell/templates/serviceaccount-delete-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/cloudshell/templates/serviceaccount-delete-job.yaml -------------------------------------------------------------------------------- /charts/cloudshell/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/cloudshell/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/cloudshell/templates/statefulSet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/cloudshell/templates/statefulSet.yaml -------------------------------------------------------------------------------- /charts/cloudshell/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/cloudshell/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /charts/cloudshell/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/cloudshell/values.schema.json -------------------------------------------------------------------------------- /charts/cloudshell/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/cloudshell/values.yaml -------------------------------------------------------------------------------- /charts/dask/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/dask/Chart.yaml -------------------------------------------------------------------------------- /charts/dask/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/dask/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/dask/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/dask/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/dask/templates/networkpolicy-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/dask/templates/networkpolicy-ingress.yaml -------------------------------------------------------------------------------- /charts/dask/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/dask/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /charts/dask/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/dask/values.schema.json -------------------------------------------------------------------------------- /charts/dask/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/dask/values.yaml -------------------------------------------------------------------------------- /charts/data-profiler/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/data-profiler/Chart.yaml -------------------------------------------------------------------------------- /charts/data-profiler/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/data-profiler/templates/configmap-s3.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.configMapS3" . }} -------------------------------------------------------------------------------- /charts/data-profiler/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/data-profiler/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/data-profiler/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/data-profiler/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/data-profiler/templates/networkpolicy-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/data-profiler/templates/networkpolicy-ingress.yaml -------------------------------------------------------------------------------- /charts/data-profiler/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/data-profiler/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /charts/data-profiler/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/data-profiler/templates/service.yaml -------------------------------------------------------------------------------- /charts/data-profiler/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/data-profiler/values.schema.json -------------------------------------------------------------------------------- /charts/data-profiler/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/data-profiler/values.yaml -------------------------------------------------------------------------------- /charts/delta-sharing-server/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/delta-sharing-server/Chart.yaml -------------------------------------------------------------------------------- /charts/delta-sharing-server/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/delta-sharing-server/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/delta-sharing-server/templates/configmap-coresite.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.configMapCoreSite" . }} -------------------------------------------------------------------------------- /charts/delta-sharing-server/templates/configmap-nginx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/delta-sharing-server/templates/configmap-nginx.yaml -------------------------------------------------------------------------------- /charts/delta-sharing-server/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/delta-sharing-server/templates/configmap.yaml -------------------------------------------------------------------------------- /charts/delta-sharing-server/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/delta-sharing-server/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/delta-sharing-server/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/delta-sharing-server/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/delta-sharing-server/templates/networkpolicy-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/delta-sharing-server/templates/networkpolicy-ingress.yaml -------------------------------------------------------------------------------- /charts/delta-sharing-server/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/delta-sharing-server/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /charts/delta-sharing-server/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/delta-sharing-server/templates/service.yaml -------------------------------------------------------------------------------- /charts/delta-sharing-server/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/delta-sharing-server/values.schema.json -------------------------------------------------------------------------------- /charts/delta-sharing-server/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/delta-sharing-server/values.yaml -------------------------------------------------------------------------------- /charts/elastic/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/elastic/Chart.yaml -------------------------------------------------------------------------------- /charts/elastic/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/elastic/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/elastic/templates/discovery-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/elastic/templates/discovery-secret.yaml -------------------------------------------------------------------------------- /charts/elastic/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/elastic/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/elastic/templates/networkpolicy-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/elastic/templates/networkpolicy-ingress.yaml -------------------------------------------------------------------------------- /charts/elastic/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/elastic/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /charts/elastic/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/elastic/values.schema.json -------------------------------------------------------------------------------- /charts/elastic/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/elastic/values.yaml -------------------------------------------------------------------------------- /charts/fastai/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/fastai/Chart.yaml -------------------------------------------------------------------------------- /charts/fastai/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/fastai/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/fastai/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/fastai/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/fastai/templates/configmap-git.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.configMapGit" . }} 2 | -------------------------------------------------------------------------------- /charts/fastai/templates/configmap-s3.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.configMapS3" . }} 2 | -------------------------------------------------------------------------------- /charts/fastai/templates/configmap-vault.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.configMapVault" . }} 2 | -------------------------------------------------------------------------------- /charts/fastai/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/fastai/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/fastai/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/fastai/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/fastai/templates/networkpolicy-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/fastai/templates/networkpolicy-ingress.yaml -------------------------------------------------------------------------------- /charts/fastai/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/fastai/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /charts/fastai/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/fastai/templates/pvc.yaml -------------------------------------------------------------------------------- /charts/fastai/templates/role-binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/fastai/templates/role-binding.yaml -------------------------------------------------------------------------------- /charts/fastai/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/fastai/templates/service.yaml -------------------------------------------------------------------------------- /charts/fastai/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/fastai/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/fastai/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/fastai/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /charts/fastai/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/fastai/values.schema.json -------------------------------------------------------------------------------- /charts/fastai/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/fastai/values.yaml -------------------------------------------------------------------------------- /charts/hive-metastore/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/hive-metastore/Chart.yaml -------------------------------------------------------------------------------- /charts/hive-metastore/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/hive-metastore/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/hive-metastore/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/hive-metastore/templates/configmap.yaml -------------------------------------------------------------------------------- /charts/hive-metastore/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/hive-metastore/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/hive-metastore/templates/discovery-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/hive-metastore/templates/discovery-secret.yaml -------------------------------------------------------------------------------- /charts/hive-metastore/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/hive-metastore/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /charts/hive-metastore/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/hive-metastore/templates/service.yaml -------------------------------------------------------------------------------- /charts/hive-metastore/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/hive-metastore/values.schema.json -------------------------------------------------------------------------------- /charts/hive-metastore/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/hive-metastore/values.yaml -------------------------------------------------------------------------------- /charts/jena/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/jena/Chart.yaml -------------------------------------------------------------------------------- /charts/jena/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/jena/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/jena/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/jena/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/jena/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/jena/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/jena/templates/networkpolicy-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/jena/templates/networkpolicy-ingress.yaml -------------------------------------------------------------------------------- /charts/jena/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/jena/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /charts/jena/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/jena/templates/pvc.yaml -------------------------------------------------------------------------------- /charts/jena/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/jena/templates/service.yaml -------------------------------------------------------------------------------- /charts/jena/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/jena/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/jena/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/jena/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /charts/jena/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/jena/values.schema.json -------------------------------------------------------------------------------- /charts/jena/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/jena/values.yaml -------------------------------------------------------------------------------- /charts/jupyter/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/jupyter/.helmignore -------------------------------------------------------------------------------- /charts/jupyter/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/jupyter/Chart.yaml -------------------------------------------------------------------------------- /charts/jupyter/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/jupyter/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/jupyter/templates/configmap-coresite.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.configMapCoreSite" . }} -------------------------------------------------------------------------------- /charts/jupyter/templates/configmap-git.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.configMapGit" . }} -------------------------------------------------------------------------------- /charts/jupyter/templates/configmap-hive.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.configMapHive" . }} -------------------------------------------------------------------------------- /charts/jupyter/templates/configmap-mlflow.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.configMapMLFlow" . }} -------------------------------------------------------------------------------- /charts/jupyter/templates/configmap-s3.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.configMapS3" . }} -------------------------------------------------------------------------------- /charts/jupyter/templates/configmap-sparkconf.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.configMapSparkConf" . }} -------------------------------------------------------------------------------- /charts/jupyter/templates/configmap-vault.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.configMapVault" . }} -------------------------------------------------------------------------------- /charts/jupyter/templates/ingress-sparkui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/jupyter/templates/ingress-sparkui.yaml -------------------------------------------------------------------------------- /charts/jupyter/templates/ingress-user.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/jupyter/templates/ingress-user.yaml -------------------------------------------------------------------------------- /charts/jupyter/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/jupyter/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/jupyter/templates/networkpolicy-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/jupyter/templates/networkpolicy-ingress.yaml -------------------------------------------------------------------------------- /charts/jupyter/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/jupyter/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /charts/jupyter/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/jupyter/templates/pvc.yaml -------------------------------------------------------------------------------- /charts/jupyter/templates/role-binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/jupyter/templates/role-binding.yaml -------------------------------------------------------------------------------- /charts/jupyter/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/jupyter/templates/service.yaml -------------------------------------------------------------------------------- /charts/jupyter/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/jupyter/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/jupyter/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/jupyter/templates/statefulset.yaml -------------------------------------------------------------------------------- /charts/jupyter/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/jupyter/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /charts/jupyter/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/jupyter/values.schema.json -------------------------------------------------------------------------------- /charts/jupyter/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/jupyter/values.yaml -------------------------------------------------------------------------------- /charts/kafka/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/kafka/Chart.yaml -------------------------------------------------------------------------------- /charts/kafka/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/kafka/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/kafka/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/kafka/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/kafka/templates/discovery-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/kafka/templates/discovery-secret.yaml -------------------------------------------------------------------------------- /charts/kafka/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/kafka/values.schema.json -------------------------------------------------------------------------------- /charts/kafka/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/kafka/values.yaml -------------------------------------------------------------------------------- /charts/label-studio/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/label-studio/Chart.yaml -------------------------------------------------------------------------------- /charts/label-studio/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/label-studio/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/label-studio/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/label-studio/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/label-studio/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/label-studio/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/label-studio/templates/networkpolicy-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/label-studio/templates/networkpolicy-ingress.yaml -------------------------------------------------------------------------------- /charts/label-studio/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/label-studio/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /charts/label-studio/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/label-studio/templates/service.yaml -------------------------------------------------------------------------------- /charts/label-studio/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/label-studio/values.schema.json -------------------------------------------------------------------------------- /charts/label-studio/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/label-studio/values.yaml -------------------------------------------------------------------------------- /charts/lakefs/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/lakefs/Chart.yaml -------------------------------------------------------------------------------- /charts/lakefs/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/lakefs/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/lakefs/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/lakefs/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/lakefs/templates/networkpolicy-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/lakefs/templates/networkpolicy-ingress.yaml -------------------------------------------------------------------------------- /charts/lakefs/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/lakefs/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /charts/lakefs/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/lakefs/values.schema.json -------------------------------------------------------------------------------- /charts/lakefs/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/lakefs/values.yaml -------------------------------------------------------------------------------- /charts/library-chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/library-chart/Chart.yaml -------------------------------------------------------------------------------- /charts/library-chart/templates/_configmaps.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/library-chart/templates/_configmaps.tpl -------------------------------------------------------------------------------- /charts/library-chart/templates/_ingress.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/library-chart/templates/_ingress.tpl -------------------------------------------------------------------------------- /charts/library-chart/templates/_interactive_services.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/library-chart/templates/_interactive_services.tpl -------------------------------------------------------------------------------- /charts/library-chart/templates/_labels.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/library-chart/templates/_labels.tpl -------------------------------------------------------------------------------- /charts/library-chart/templates/_names.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/library-chart/templates/_names.tpl -------------------------------------------------------------------------------- /charts/library-chart/templates/_serviceaccounts.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/library-chart/templates/_serviceaccounts.tpl -------------------------------------------------------------------------------- /charts/mariadb/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/mariadb/Chart.yaml -------------------------------------------------------------------------------- /charts/mariadb/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/mariadb/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/mariadb/templates/discovery-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/mariadb/templates/discovery-secret.yaml -------------------------------------------------------------------------------- /charts/mariadb/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/mariadb/values.schema.json -------------------------------------------------------------------------------- /charts/mariadb/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/mariadb/values.yaml -------------------------------------------------------------------------------- /charts/mlflow/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/mlflow/Chart.yaml -------------------------------------------------------------------------------- /charts/mlflow/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/mlflow/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/mlflow/templates/configmap-s3.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.configMapS3" . }} -------------------------------------------------------------------------------- /charts/mlflow/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/mlflow/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/mlflow/templates/discovery-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/mlflow/templates/discovery-secret.yaml -------------------------------------------------------------------------------- /charts/mlflow/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/mlflow/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/mlflow/templates/networkpolicy-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/mlflow/templates/networkpolicy-ingress.yaml -------------------------------------------------------------------------------- /charts/mlflow/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/mlflow/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /charts/mlflow/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/mlflow/templates/service.yaml -------------------------------------------------------------------------------- /charts/mlflow/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/mlflow/values.schema.json -------------------------------------------------------------------------------- /charts/mlflow/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/mlflow/values.yaml -------------------------------------------------------------------------------- /charts/mongodb/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/mongodb/Chart.yaml -------------------------------------------------------------------------------- /charts/mongodb/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/mongodb/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/mongodb/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/mongodb/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/mongodb/templates/discovery-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/mongodb/templates/discovery-secret.yaml -------------------------------------------------------------------------------- /charts/mongodb/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/mongodb/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /charts/mongodb/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/mongodb/values.schema.json -------------------------------------------------------------------------------- /charts/mongodb/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/mongodb/values.yaml -------------------------------------------------------------------------------- /charts/neo4j/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/neo4j/.helmignore -------------------------------------------------------------------------------- /charts/neo4j/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/neo4j/Chart.yaml -------------------------------------------------------------------------------- /charts/neo4j/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/neo4j/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/neo4j/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/neo4j/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/neo4j/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/neo4j/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/neo4j/templates/networkpolicy-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/neo4j/templates/networkpolicy-ingress.yaml -------------------------------------------------------------------------------- /charts/neo4j/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/neo4j/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /charts/neo4j/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/neo4j/templates/pvc.yaml -------------------------------------------------------------------------------- /charts/neo4j/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/neo4j/templates/service.yaml -------------------------------------------------------------------------------- /charts/neo4j/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/neo4j/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/neo4j/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/neo4j/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /charts/neo4j/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/neo4j/values.schema.json -------------------------------------------------------------------------------- /charts/neo4j/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/neo4j/values.yaml -------------------------------------------------------------------------------- /charts/nocodb/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/nocodb/Chart.yaml -------------------------------------------------------------------------------- /charts/nocodb/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/nocodb/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/nocodb/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/nocodb/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/nocodb/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/nocodb/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/nocodb/templates/networkpolicy-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/nocodb/templates/networkpolicy-ingress.yaml -------------------------------------------------------------------------------- /charts/nocodb/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/nocodb/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /charts/nocodb/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/nocodb/templates/pvc.yaml -------------------------------------------------------------------------------- /charts/nocodb/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/nocodb/templates/service.yaml -------------------------------------------------------------------------------- /charts/nocodb/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/nocodb/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/nocodb/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/nocodb/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /charts/nocodb/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/nocodb/values.schema.json -------------------------------------------------------------------------------- /charts/nocodb/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/nocodb/values.yaml -------------------------------------------------------------------------------- /charts/openrefine/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/openrefine/.helmignore -------------------------------------------------------------------------------- /charts/openrefine/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/openrefine/Chart.yaml -------------------------------------------------------------------------------- /charts/openrefine/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/openrefine/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/openrefine/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/openrefine/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/openrefine/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/openrefine/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/openrefine/templates/networkpolicy-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/openrefine/templates/networkpolicy-ingress.yaml -------------------------------------------------------------------------------- /charts/openrefine/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/openrefine/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /charts/openrefine/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/openrefine/templates/pvc.yaml -------------------------------------------------------------------------------- /charts/openrefine/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/openrefine/templates/service.yaml -------------------------------------------------------------------------------- /charts/openrefine/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/openrefine/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/openrefine/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/openrefine/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /charts/openrefine/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/openrefine/values.schema.json -------------------------------------------------------------------------------- /charts/openrefine/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/openrefine/values.yaml -------------------------------------------------------------------------------- /charts/pgadmin/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/pgadmin/.helmignore -------------------------------------------------------------------------------- /charts/pgadmin/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/pgadmin/Chart.yaml -------------------------------------------------------------------------------- /charts/pgadmin/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/pgadmin/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/pgadmin/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/pgadmin/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/pgadmin/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/pgadmin/templates/configmap.yaml -------------------------------------------------------------------------------- /charts/pgadmin/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/pgadmin/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/pgadmin/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/pgadmin/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/pgadmin/templates/networkpolicy-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/pgadmin/templates/networkpolicy-ingress.yaml -------------------------------------------------------------------------------- /charts/pgadmin/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/pgadmin/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /charts/pgadmin/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/pgadmin/templates/service.yaml -------------------------------------------------------------------------------- /charts/pgadmin/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/pgadmin/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/pgadmin/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/pgadmin/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /charts/pgadmin/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/pgadmin/values.schema.json -------------------------------------------------------------------------------- /charts/pgadmin/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/pgadmin/values.yaml -------------------------------------------------------------------------------- /charts/pinot/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/pinot/.helmignore -------------------------------------------------------------------------------- /charts/pinot/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/pinot/Chart.yaml -------------------------------------------------------------------------------- /charts/pinot/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | pinot is running at {{ .Values.ingress.hostname }} 2 | good luck! -------------------------------------------------------------------------------- /charts/pinot/templates/_helpers.tpl: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /charts/pinot/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/pinot/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/pinot/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/pinot/values.schema.json -------------------------------------------------------------------------------- /charts/pinot/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/pinot/values.yaml -------------------------------------------------------------------------------- /charts/postgresql/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/postgresql/Chart.yaml -------------------------------------------------------------------------------- /charts/postgresql/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/postgresql/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/postgresql/templates/configmap-init.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/postgresql/templates/configmap-init.yaml -------------------------------------------------------------------------------- /charts/postgresql/templates/discovery-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/postgresql/templates/discovery-secret.yaml -------------------------------------------------------------------------------- /charts/postgresql/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/postgresql/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /charts/postgresql/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/postgresql/values.schema.json -------------------------------------------------------------------------------- /charts/postgresql/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/postgresql/values.yaml -------------------------------------------------------------------------------- /charts/rapidsai/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/rapidsai/.helmignore -------------------------------------------------------------------------------- /charts/rapidsai/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/rapidsai/Chart.yaml -------------------------------------------------------------------------------- /charts/rapidsai/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/rapidsai/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/rapidsai/templates/configmap-coresite.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.configMapCoreSite" . }} -------------------------------------------------------------------------------- /charts/rapidsai/templates/configmap-git.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.configMapGit" . }} 2 | -------------------------------------------------------------------------------- /charts/rapidsai/templates/configmap-hive.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.configMapHive" . }} -------------------------------------------------------------------------------- /charts/rapidsai/templates/configmap-s3.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.configMapS3" . }} 2 | -------------------------------------------------------------------------------- /charts/rapidsai/templates/configmap-sparkconf.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.configMapSparkConf" . }} -------------------------------------------------------------------------------- /charts/rapidsai/templates/configmap-vault.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.configMapVault" . }} 2 | -------------------------------------------------------------------------------- /charts/rapidsai/templates/ingress-sparkui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/rapidsai/templates/ingress-sparkui.yaml -------------------------------------------------------------------------------- /charts/rapidsai/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/rapidsai/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/rapidsai/templates/networkpolicy-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/rapidsai/templates/networkpolicy-ingress.yaml -------------------------------------------------------------------------------- /charts/rapidsai/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/rapidsai/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /charts/rapidsai/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/rapidsai/templates/pvc.yaml -------------------------------------------------------------------------------- /charts/rapidsai/templates/role-binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/rapidsai/templates/role-binding.yaml -------------------------------------------------------------------------------- /charts/rapidsai/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/rapidsai/templates/service.yaml -------------------------------------------------------------------------------- /charts/rapidsai/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/rapidsai/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/rapidsai/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/rapidsai/templates/statefulset.yaml -------------------------------------------------------------------------------- /charts/rapidsai/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/rapidsai/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /charts/rapidsai/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/rapidsai/values.schema.json -------------------------------------------------------------------------------- /charts/rapidsai/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/rapidsai/values.yaml -------------------------------------------------------------------------------- /charts/redash/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/redash/Chart.yaml -------------------------------------------------------------------------------- /charts/redash/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/redash/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/redash/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/redash/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/redash/templates/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/redash/templates/secrets.yaml -------------------------------------------------------------------------------- /charts/redash/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/redash/values.schema.json -------------------------------------------------------------------------------- /charts/redash/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/redash/values.yaml -------------------------------------------------------------------------------- /charts/rstudio/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/rstudio/.helmignore -------------------------------------------------------------------------------- /charts/rstudio/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/rstudio/Chart.yaml -------------------------------------------------------------------------------- /charts/rstudio/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/rstudio/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/rstudio/templates/configmap-coresite.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.configMapCoreSite" . }} -------------------------------------------------------------------------------- /charts/rstudio/templates/configmap-git.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.configMapGit" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio/templates/configmap-hive.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.configMapHive" . }} -------------------------------------------------------------------------------- /charts/rstudio/templates/configmap-s3.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.configMapS3" . }} -------------------------------------------------------------------------------- /charts/rstudio/templates/configmap-sparkconf.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.configMapSparkConf" . }} -------------------------------------------------------------------------------- /charts/rstudio/templates/configmap-vault.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.configMapVault" . }} -------------------------------------------------------------------------------- /charts/rstudio/templates/ingress-sparkui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/rstudio/templates/ingress-sparkui.yaml -------------------------------------------------------------------------------- /charts/rstudio/templates/ingress-user.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/rstudio/templates/ingress-user.yaml -------------------------------------------------------------------------------- /charts/rstudio/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/rstudio/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/rstudio/templates/networkpolicy-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/rstudio/templates/networkpolicy-ingress.yaml -------------------------------------------------------------------------------- /charts/rstudio/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/rstudio/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /charts/rstudio/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/rstudio/templates/pvc.yaml -------------------------------------------------------------------------------- /charts/rstudio/templates/role-binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/rstudio/templates/role-binding.yaml -------------------------------------------------------------------------------- /charts/rstudio/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/rstudio/templates/service.yaml -------------------------------------------------------------------------------- /charts/rstudio/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/rstudio/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/rstudio/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/rstudio/templates/statefulset.yaml -------------------------------------------------------------------------------- /charts/rstudio/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/rstudio/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /charts/rstudio/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/rstudio/values.schema.json -------------------------------------------------------------------------------- /charts/rstudio/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/rstudio/values.yaml -------------------------------------------------------------------------------- /charts/spark-history/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/spark-history/Chart.yaml -------------------------------------------------------------------------------- /charts/spark-history/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/spark-history/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/spark-history/templates/configmap-coresite.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.configMapCoreSite" . }} -------------------------------------------------------------------------------- /charts/spark-history/templates/configmap-s3.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.configMapS3" . }} -------------------------------------------------------------------------------- /charts/spark-history/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/spark-history/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/spark-history/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/spark-history/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/spark-history/templates/networkpolicy-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/spark-history/templates/networkpolicy-ingress.yaml -------------------------------------------------------------------------------- /charts/spark-history/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/spark-history/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /charts/spark-history/templates/role-binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/spark-history/templates/role-binding.yaml -------------------------------------------------------------------------------- /charts/spark-history/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/spark-history/templates/service.yaml -------------------------------------------------------------------------------- /charts/spark-history/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/spark-history/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/spark-history/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/spark-history/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /charts/spark-history/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/spark-history/values.schema.json -------------------------------------------------------------------------------- /charts/spark-history/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/spark-history/values.yaml -------------------------------------------------------------------------------- /charts/spark-thrift-server/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/spark-thrift-server/Chart.yaml -------------------------------------------------------------------------------- /charts/spark-thrift-server/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/spark-thrift-server/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/spark-thrift-server/templates/configmap-coresite.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.configMapCoreSite" . }} -------------------------------------------------------------------------------- /charts/spark-thrift-server/templates/configmap-hive.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.configMapHive" . }} 2 | -------------------------------------------------------------------------------- /charts/spark-thrift-server/templates/configmap-s3.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.configMapS3" . }} 2 | -------------------------------------------------------------------------------- /charts/spark-thrift-server/templates/configmap-sparkconf.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.configMapSparkConf" . }} -------------------------------------------------------------------------------- /charts/spark-thrift-server/templates/discovery-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/spark-thrift-server/templates/discovery-secret.yaml -------------------------------------------------------------------------------- /charts/spark-thrift-server/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/spark-thrift-server/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/spark-thrift-server/templates/networkpolicy-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/spark-thrift-server/templates/networkpolicy-ingress.yaml -------------------------------------------------------------------------------- /charts/spark-thrift-server/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/spark-thrift-server/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /charts/spark-thrift-server/templates/role-binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/spark-thrift-server/templates/role-binding.yaml -------------------------------------------------------------------------------- /charts/spark-thrift-server/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/spark-thrift-server/templates/service.yaml -------------------------------------------------------------------------------- /charts/spark-thrift-server/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/spark-thrift-server/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/spark-thrift-server/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/spark-thrift-server/templates/statefulset.yaml -------------------------------------------------------------------------------- /charts/spark-thrift-server/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/spark-thrift-server/values.schema.json -------------------------------------------------------------------------------- /charts/spark-thrift-server/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/spark-thrift-server/values.yaml -------------------------------------------------------------------------------- /charts/superset/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/superset/Chart.yaml -------------------------------------------------------------------------------- /charts/superset/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/superset/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/superset/templates/_discovery.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/superset/templates/_discovery.tpl -------------------------------------------------------------------------------- /charts/superset/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/superset/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/superset/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/superset/values.schema.json -------------------------------------------------------------------------------- /charts/superset/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/superset/values.yaml -------------------------------------------------------------------------------- /charts/tensorflow/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/tensorflow/.helmignore -------------------------------------------------------------------------------- /charts/tensorflow/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/tensorflow/Chart.yaml -------------------------------------------------------------------------------- /charts/tensorflow/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/tensorflow/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/tensorflow/templates/configmap-git.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.configMapGit" . }} -------------------------------------------------------------------------------- /charts/tensorflow/templates/configmap-s3.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.configMapS3" . }} -------------------------------------------------------------------------------- /charts/tensorflow/templates/configmap-vault.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.configMapVault" . }} -------------------------------------------------------------------------------- /charts/tensorflow/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/tensorflow/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/tensorflow/templates/ingress-tensorboard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/tensorflow/templates/ingress-tensorboard.yaml -------------------------------------------------------------------------------- /charts/tensorflow/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/tensorflow/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/tensorflow/templates/networkpolicy-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/tensorflow/templates/networkpolicy-ingress.yaml -------------------------------------------------------------------------------- /charts/tensorflow/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/tensorflow/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /charts/tensorflow/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/tensorflow/templates/pvc.yaml -------------------------------------------------------------------------------- /charts/tensorflow/templates/role-binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/tensorflow/templates/role-binding.yaml -------------------------------------------------------------------------------- /charts/tensorflow/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/tensorflow/templates/service.yaml -------------------------------------------------------------------------------- /charts/tensorflow/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/tensorflow/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/tensorflow/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/tensorflow/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /charts/tensorflow/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/tensorflow/values.schema.json -------------------------------------------------------------------------------- /charts/tensorflow/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/tensorflow/values.yaml -------------------------------------------------------------------------------- /charts/trino/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/trino/Chart.yaml -------------------------------------------------------------------------------- /charts/trino/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/trino/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/trino/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/trino/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/trino/templates/configmap-catalog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/trino/templates/configmap-catalog.yaml -------------------------------------------------------------------------------- /charts/trino/templates/configmap-coordinator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/trino/templates/configmap-coordinator.yaml -------------------------------------------------------------------------------- /charts/trino/templates/configmap-hdfs.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.configMapCoreSite" . }} -------------------------------------------------------------------------------- /charts/trino/templates/configmap-worker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/trino/templates/configmap-worker.yaml -------------------------------------------------------------------------------- /charts/trino/templates/deployment-coordinator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/trino/templates/deployment-coordinator.yaml -------------------------------------------------------------------------------- /charts/trino/templates/deployment-worker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/trino/templates/deployment-worker.yaml -------------------------------------------------------------------------------- /charts/trino/templates/discovery-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/trino/templates/discovery-secret.yaml -------------------------------------------------------------------------------- /charts/trino/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/trino/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/trino/templates/networkpolicy-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/trino/templates/networkpolicy-ingress.yaml -------------------------------------------------------------------------------- /charts/trino/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/trino/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /charts/trino/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/trino/templates/service.yaml -------------------------------------------------------------------------------- /charts/trino/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/trino/values.schema.json -------------------------------------------------------------------------------- /charts/trino/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/trino/values.yaml -------------------------------------------------------------------------------- /charts/ubuntu/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/ubuntu/.helmignore -------------------------------------------------------------------------------- /charts/ubuntu/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/ubuntu/Chart.yaml -------------------------------------------------------------------------------- /charts/ubuntu/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/ubuntu/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/ubuntu/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/ubuntu/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/ubuntu/templates/ingress-user.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/ubuntu/templates/ingress-user.yaml -------------------------------------------------------------------------------- /charts/ubuntu/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/ubuntu/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/ubuntu/templates/networkpolicy-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/ubuntu/templates/networkpolicy-ingress.yaml -------------------------------------------------------------------------------- /charts/ubuntu/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/ubuntu/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /charts/ubuntu/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/ubuntu/templates/pvc.yaml -------------------------------------------------------------------------------- /charts/ubuntu/templates/role-binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/ubuntu/templates/role-binding.yaml -------------------------------------------------------------------------------- /charts/ubuntu/templates/secret-git.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretGit" . }} 2 | -------------------------------------------------------------------------------- /charts/ubuntu/templates/secret-s3.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretS3" . }} 2 | -------------------------------------------------------------------------------- /charts/ubuntu/templates/secret-vault.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretVault" . }} 2 | -------------------------------------------------------------------------------- /charts/ubuntu/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/ubuntu/templates/service.yaml -------------------------------------------------------------------------------- /charts/ubuntu/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/ubuntu/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/ubuntu/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/ubuntu/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /charts/ubuntu/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/ubuntu/values.schema.json -------------------------------------------------------------------------------- /charts/ubuntu/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/ubuntu/values.yaml -------------------------------------------------------------------------------- /charts/vscode/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/vscode/.helmignore -------------------------------------------------------------------------------- /charts/vscode/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/vscode/Chart.yaml -------------------------------------------------------------------------------- /charts/vscode/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/vscode/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/vscode/templates/configmap-git.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.configMapGit" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode/templates/configmap-s3.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.configMapS3" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode/templates/configmap-vault.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.configMapVault" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/vscode/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/vscode/templates/ingress-user.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/vscode/templates/ingress-user.yaml -------------------------------------------------------------------------------- /charts/vscode/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/vscode/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/vscode/templates/networkpolicy-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/vscode/templates/networkpolicy-ingress.yaml -------------------------------------------------------------------------------- /charts/vscode/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/vscode/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /charts/vscode/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/vscode/templates/pvc.yaml -------------------------------------------------------------------------------- /charts/vscode/templates/role-binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/vscode/templates/role-binding.yaml -------------------------------------------------------------------------------- /charts/vscode/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/vscode/templates/service.yaml -------------------------------------------------------------------------------- /charts/vscode/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/vscode/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/vscode/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/vscode/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /charts/vscode/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/vscode/values.schema.json -------------------------------------------------------------------------------- /charts/vscode/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-datascience/HEAD/charts/vscode/values.yaml --------------------------------------------------------------------------------