├── .github ├── CONTRIBUTING.md ├── pull_request_template.md └── workflows │ ├── integrationtest.yaml │ ├── pre-commit.yml │ ├── pullrequest.yaml │ └── release.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── DCO.md ├── LICENSE ├── MAINTAINERS.md ├── README.md ├── charts ├── jupyter-pyspark │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── configmap-repository.yaml │ │ ├── ingress-sparkui.yaml │ │ ├── ingress-user.yaml │ │ ├── ingress.yaml │ │ ├── networkpolicy-ingress.yaml │ │ ├── networkpolicy.yaml │ │ ├── pvc.yaml │ │ ├── role-binding-scc.yaml │ │ ├── role-binding.yaml │ │ ├── route-sparkui.yaml │ │ ├── route-user.yaml │ │ ├── route.yaml │ │ ├── secret-assistant.yaml │ │ ├── secret-cacerts.yaml │ │ ├── secret-chromadb.yaml │ │ ├── secret-coresite.yaml │ │ ├── secret-extraenv.yaml │ │ ├── secret-git.yaml │ │ ├── secret-hive.yaml │ │ ├── secret-ivysettings.yaml │ │ ├── secret-metaflow.yaml │ │ ├── secret-milvus.yaml │ │ ├── secret-mlflow.yaml │ │ ├── secret-postgresql.yaml │ │ ├── secret-proxy.yaml │ │ ├── secret-s3.yaml │ │ ├── secret-sparkconf.yaml │ │ ├── secret-token.yaml │ │ ├── secret-vault.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── statefulset.yaml │ │ └── tests │ │ │ └── test-connection.yaml │ ├── values.schema.json │ └── values.yaml ├── jupyter-python-gpu │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── configmap-repository.yaml │ │ ├── ingress-user.yaml │ │ ├── ingress.yaml │ │ ├── networkpolicy-ingress.yaml │ │ ├── networkpolicy.yaml │ │ ├── pvc.yaml │ │ ├── role-binding-scc.yaml │ │ ├── role-binding.yaml │ │ ├── route-user.yaml │ │ ├── route.yaml │ │ ├── secret-assistant.yaml │ │ ├── secret-cacerts.yaml │ │ ├── secret-chromadb.yaml │ │ ├── secret-extraenv.yaml │ │ ├── secret-git.yaml │ │ ├── secret-hive.yaml │ │ ├── secret-metaflow.yaml │ │ ├── secret-milvus.yaml │ │ ├── secret-mlflow.yaml │ │ ├── secret-postgresql.yaml │ │ ├── secret-proxy.yaml │ │ ├── secret-s3.yaml │ │ ├── secret-token.yaml │ │ ├── secret-vault.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── statefulset.yaml │ │ └── tests │ │ │ └── test-connection.yaml │ ├── values.schema.json │ └── values.yaml ├── jupyter-python │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── configmap-repository.yaml │ │ ├── ingress-user.yaml │ │ ├── ingress.yaml │ │ ├── networkpolicy-ingress.yaml │ │ ├── networkpolicy.yaml │ │ ├── pvc.yaml │ │ ├── role-binding-scc.yaml │ │ ├── role-binding.yaml │ │ ├── route-user.yaml │ │ ├── route.yaml │ │ ├── secret-assistant.yaml │ │ ├── secret-cacerts.yaml │ │ ├── secret-chromadb.yaml │ │ ├── secret-extraenv.yaml │ │ ├── secret-git.yaml │ │ ├── secret-hive.yaml │ │ ├── secret-metaflow.yaml │ │ ├── secret-milvus.yaml │ │ ├── secret-mlflow.yaml │ │ ├── secret-postgresql.yaml │ │ ├── secret-proxy.yaml │ │ ├── secret-s3.yaml │ │ ├── secret-token.yaml │ │ ├── secret-vault.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── statefulset.yaml │ │ └── tests │ │ │ └── test-connection.yaml │ ├── values.schema.json │ └── values.yaml ├── jupyter-pytorch-gpu │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── configmap-repository.yaml │ │ ├── ingress-user.yaml │ │ ├── ingress.yaml │ │ ├── networkpolicy-ingress.yaml │ │ ├── networkpolicy.yaml │ │ ├── pvc.yaml │ │ ├── role-binding-scc.yaml │ │ ├── role-binding.yaml │ │ ├── route-user.yaml │ │ ├── route.yaml │ │ ├── secret-assistant.yaml │ │ ├── secret-cacerts.yaml │ │ ├── secret-chromadb.yaml │ │ ├── secret-extraenv.yaml │ │ ├── secret-git.yaml │ │ ├── secret-hive.yaml │ │ ├── secret-metaflow.yaml │ │ ├── secret-milvus.yaml │ │ ├── secret-mlflow.yaml │ │ ├── secret-postgresql.yaml │ │ ├── secret-proxy.yaml │ │ ├── secret-s3.yaml │ │ ├── secret-token.yaml │ │ ├── secret-vault.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── statefulset.yaml │ │ └── tests │ │ │ └── test-connection.yaml │ ├── values.schema.json │ └── values.yaml ├── jupyter-pytorch │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── configmap-repository.yaml │ │ ├── ingress-user.yaml │ │ ├── ingress.yaml │ │ ├── networkpolicy-ingress.yaml │ │ ├── networkpolicy.yaml │ │ ├── pvc.yaml │ │ ├── role-binding-scc.yaml │ │ ├── role-binding.yaml │ │ ├── route-user.yaml │ │ ├── route.yaml │ │ ├── secret-assistant.yaml │ │ ├── secret-cacerts.yaml │ │ ├── secret-chromadb.yaml │ │ ├── secret-extraenv.yaml │ │ ├── secret-git.yaml │ │ ├── secret-hive.yaml │ │ ├── secret-metaflow.yaml │ │ ├── secret-milvus.yaml │ │ ├── secret-mlflow.yaml │ │ ├── secret-postgresql.yaml │ │ ├── secret-proxy.yaml │ │ ├── secret-s3.yaml │ │ ├── secret-token.yaml │ │ ├── secret-vault.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── statefulset.yaml │ │ └── tests │ │ │ └── test-connection.yaml │ ├── values.schema.json │ └── values.yaml ├── jupyter-r-python-julia │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── configmap-repository.yaml │ │ ├── ingress-user.yaml │ │ ├── ingress.yaml │ │ ├── networkpolicy-ingress.yaml │ │ ├── networkpolicy.yaml │ │ ├── pvc.yaml │ │ ├── role-binding-scc.yaml │ │ ├── role-binding.yaml │ │ ├── route-user.yaml │ │ ├── route.yaml │ │ ├── secret-assistant.yaml │ │ ├── secret-cacerts.yaml │ │ ├── secret-chromadb.yaml │ │ ├── secret-extraenv.yaml │ │ ├── secret-git.yaml │ │ ├── secret-hive.yaml │ │ ├── secret-metaflow.yaml │ │ ├── secret-milvus.yaml │ │ ├── secret-mlflow.yaml │ │ ├── secret-postgresql.yaml │ │ ├── secret-proxy.yaml │ │ ├── secret-s3.yaml │ │ ├── secret-token.yaml │ │ ├── secret-vault.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── statefulset.yaml │ │ └── tests │ │ │ └── test-connection.yaml │ ├── values.schema.json │ └── values.yaml ├── jupyter-tensorflow-gpu │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── configmap-repository.yaml │ │ ├── ingress-user.yaml │ │ ├── ingress.yaml │ │ ├── networkpolicy-ingress.yaml │ │ ├── networkpolicy.yaml │ │ ├── pvc.yaml │ │ ├── role-binding-scc.yaml │ │ ├── role-binding.yaml │ │ ├── route-user.yaml │ │ ├── route.yaml │ │ ├── secret-assistant.yaml │ │ ├── secret-cacerts.yaml │ │ ├── secret-chromadb.yaml │ │ ├── secret-extraenv.yaml │ │ ├── secret-git.yaml │ │ ├── secret-hive.yaml │ │ ├── secret-metaflow.yaml │ │ ├── secret-milvus.yaml │ │ ├── secret-mlflow.yaml │ │ ├── secret-postgresql.yaml │ │ ├── secret-proxy.yaml │ │ ├── secret-s3.yaml │ │ ├── secret-token.yaml │ │ ├── secret-vault.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── statefulset.yaml │ │ └── tests │ │ │ └── test-connection.yaml │ ├── values.schema.json │ └── values.yaml ├── jupyter-tensorflow │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── configmap-repository.yaml │ │ ├── ingress-user.yaml │ │ ├── ingress.yaml │ │ ├── networkpolicy-ingress.yaml │ │ ├── networkpolicy.yaml │ │ ├── pvc.yaml │ │ ├── role-binding-scc.yaml │ │ ├── role-binding.yaml │ │ ├── route-user.yaml │ │ ├── route.yaml │ │ ├── secret-assistant.yaml │ │ ├── secret-cacerts.yaml │ │ ├── secret-chromadb.yaml │ │ ├── secret-extraenv.yaml │ │ ├── secret-git.yaml │ │ ├── secret-hive.yaml │ │ ├── secret-metaflow.yaml │ │ ├── secret-milvus.yaml │ │ ├── secret-mlflow.yaml │ │ ├── secret-postgresql.yaml │ │ ├── secret-proxy.yaml │ │ ├── secret-s3.yaml │ │ ├── secret-token.yaml │ │ ├── secret-vault.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── statefulset.yaml │ │ └── tests │ │ │ └── test-connection.yaml │ ├── values.schema.json │ └── values.yaml ├── library-chart │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── _common.tpl │ │ ├── _configmap.tpl │ │ ├── _ingress.tpl │ │ ├── _label.tpl │ │ ├── _name.tpl │ │ ├── _network_policy.tpl │ │ ├── _notes.tpl │ │ ├── _pvc.tpl │ │ ├── _role_binding.tpl │ │ ├── _route.tpl │ │ ├── _secret.tpl │ │ ├── _secret_chroma_discovery.tpl │ │ ├── _secret_hive_discovery.tpl │ │ ├── _secret_metaflow_discovery.tpl │ │ ├── _secret_milvus_discovery.tpl │ │ ├── _secret_mlflow_discovery.tpl │ │ ├── _secret_postgresql_discovery.tpl │ │ ├── _service.tpl │ │ ├── _service_account.tpl │ │ └── _test.tpl │ └── values.yaml ├── rstudio-gpu │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── configmap-repository.yaml │ │ ├── ingress-user.yaml │ │ ├── ingress.yaml │ │ ├── networkpolicy-ingress.yaml │ │ ├── networkpolicy.yaml │ │ ├── pvc.yaml │ │ ├── role-binding-scc.yaml │ │ ├── role-binding.yaml │ │ ├── route-user.yaml │ │ ├── route.yaml │ │ ├── secret-extraenv.yaml │ │ ├── secret-git.yaml │ │ ├── secret-postgresql.yaml │ │ ├── secret-proxy.yaml │ │ ├── secret-s3.yaml │ │ ├── secret-token.yaml │ │ ├── secret-vault.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── statefulset.yaml │ │ └── tests │ │ │ └── test-connection.yaml │ ├── values.schema.json │ └── values.yaml ├── rstudio-r-python-julia │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── configmap-repository.yaml │ │ ├── ingress-user.yaml │ │ ├── ingress.yaml │ │ ├── networkpolicy-ingress.yaml │ │ ├── networkpolicy.yaml │ │ ├── pvc.yaml │ │ ├── role-binding-scc.yaml │ │ ├── role-binding.yaml │ │ ├── route-user.yaml │ │ ├── route.yaml │ │ ├── secret-extraenv.yaml │ │ ├── secret-git.yaml │ │ ├── secret-postgresql.yaml │ │ ├── secret-proxy.yaml │ │ ├── secret-s3.yaml │ │ ├── secret-token.yaml │ │ ├── secret-vault.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── statefulset.yaml │ │ └── tests │ │ │ └── test-connection.yaml │ ├── values.schema.json │ └── values.yaml ├── rstudio-sparkr │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── configmap-repository.yaml │ │ ├── ingress-sparkui.yaml │ │ ├── ingress-user.yaml │ │ ├── ingress.yaml │ │ ├── networkpolicy-ingress.yaml │ │ ├── networkpolicy.yaml │ │ ├── pvc.yaml │ │ ├── role-binding-scc.yaml │ │ ├── role-binding.yaml │ │ ├── route-sparkui.yaml │ │ ├── route-user.yaml │ │ ├── route.yaml │ │ ├── secret-cacerts.yaml │ │ ├── secret-coresite.yaml │ │ ├── secret-extraenv.yaml │ │ ├── secret-git.yaml │ │ ├── secret-hive.yaml │ │ ├── secret-ivysettings.yaml │ │ ├── secret-postgresql.yaml │ │ ├── secret-proxy.yaml │ │ ├── secret-s3.yaml │ │ ├── secret-sparkconf.yaml │ │ ├── secret-token.yaml │ │ ├── secret-vault.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── statefulset.yaml │ │ └── tests │ │ │ └── test-connection.yaml │ ├── values.schema.json │ └── values.yaml ├── rstudio │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── configmap-repository.yaml │ │ ├── ingress-user.yaml │ │ ├── ingress.yaml │ │ ├── networkpolicy-ingress.yaml │ │ ├── networkpolicy.yaml │ │ ├── pvc.yaml │ │ ├── role-binding-scc.yaml │ │ ├── role-binding.yaml │ │ ├── route-user.yaml │ │ ├── route.yaml │ │ ├── secret-extraenv.yaml │ │ ├── secret-git.yaml │ │ ├── secret-postgresql.yaml │ │ ├── secret-proxy.yaml │ │ ├── secret-s3.yaml │ │ ├── secret-token.yaml │ │ ├── secret-vault.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── statefulset.yaml │ │ └── tests │ │ │ └── test-connection.yaml │ ├── values.schema.json │ └── values.yaml ├── vscode-pyspark │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── configmap-repository.yaml │ │ ├── ingress-sparkui.yaml │ │ ├── ingress-user.yaml │ │ ├── ingress.yaml │ │ ├── networkpolicy-ingress.yaml │ │ ├── networkpolicy.yaml │ │ ├── pvc.yaml │ │ ├── role-binding-scc.yaml │ │ ├── role-binding.yaml │ │ ├── route-sparkui.yaml │ │ ├── route-user.yaml │ │ ├── route.yaml │ │ ├── secret-assistant.yaml │ │ ├── secret-cacerts.yaml │ │ ├── secret-chromadb.yaml │ │ ├── secret-coresite.yaml │ │ ├── secret-extraenv.yaml │ │ ├── secret-git.yaml │ │ ├── secret-hive.yaml │ │ ├── secret-ivysettings.yaml │ │ ├── secret-metaflow.yaml │ │ ├── secret-milvus.yaml │ │ ├── secret-mlflow.yaml │ │ ├── secret-postgresql.yaml │ │ ├── secret-proxy.yaml │ │ ├── secret-s3.yaml │ │ ├── secret-sparkconf.yaml │ │ ├── secret-token.yaml │ │ ├── secret-vault.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── statefulset.yaml │ │ └── tests │ │ │ └── test-connection.yaml │ ├── values.schema.json │ └── values.yaml ├── vscode-python-gpu │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── configmap-repository.yaml │ │ ├── ingress-user.yaml │ │ ├── ingress.yaml │ │ ├── networkpolicy-ingress.yaml │ │ ├── networkpolicy.yaml │ │ ├── pvc.yaml │ │ ├── role-binding-scc.yaml │ │ ├── role-binding.yaml │ │ ├── route-user.yaml │ │ ├── route.yaml │ │ ├── secret-assistant.yaml │ │ ├── secret-cacerts.yaml │ │ ├── secret-chromadb.yaml │ │ ├── secret-extraenv.yaml │ │ ├── secret-git.yaml │ │ ├── secret-hive.yaml │ │ ├── secret-metaflow.yaml │ │ ├── secret-milvus.yaml │ │ ├── secret-mlflow.yaml │ │ ├── secret-postgresql.yaml │ │ ├── secret-proxy.yaml │ │ ├── secret-s3.yaml │ │ ├── secret-token.yaml │ │ ├── secret-vault.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── statefulset.yaml │ │ └── tests │ │ │ └── test-connection.yaml │ ├── values.schema.json │ └── values.yaml ├── vscode-python │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── configmap-repository.yaml │ │ ├── ingress-user.yaml │ │ ├── ingress.yaml │ │ ├── networkpolicy-ingress.yaml │ │ ├── networkpolicy.yaml │ │ ├── pvc.yaml │ │ ├── role-binding-scc.yaml │ │ ├── role-binding.yaml │ │ ├── route-user.yaml │ │ ├── route.yaml │ │ ├── secret-assistant.yaml │ │ ├── secret-cacerts.yaml │ │ ├── secret-chromadb.yaml │ │ ├── secret-extraenv.yaml │ │ ├── secret-git.yaml │ │ ├── secret-hive.yaml │ │ ├── secret-metaflow.yaml │ │ ├── secret-milvus.yaml │ │ ├── secret-mlflow.yaml │ │ ├── secret-postgresql.yaml │ │ ├── secret-proxy.yaml │ │ ├── secret-s3.yaml │ │ ├── secret-token.yaml │ │ ├── secret-vault.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── statefulset.yaml │ │ └── tests │ │ │ └── test-connection.yaml │ ├── values.schema.json │ └── values.yaml ├── vscode-pytorch-gpu │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── configmap-repository.yaml │ │ ├── ingress-user.yaml │ │ ├── ingress.yaml │ │ ├── networkpolicy-ingress.yaml │ │ ├── networkpolicy.yaml │ │ ├── pvc.yaml │ │ ├── role-binding-scc.yaml │ │ ├── role-binding.yaml │ │ ├── route-user.yaml │ │ ├── route.yaml │ │ ├── secret-assistant.yaml │ │ ├── secret-cacerts.yaml │ │ ├── secret-chromadb.yaml │ │ ├── secret-extraenv.yaml │ │ ├── secret-git.yaml │ │ ├── secret-hive.yaml │ │ ├── secret-metaflow.yaml │ │ ├── secret-milvus.yaml │ │ ├── secret-mlflow.yaml │ │ ├── secret-postgresql.yaml │ │ ├── secret-proxy.yaml │ │ ├── secret-s3.yaml │ │ ├── secret-token.yaml │ │ ├── secret-vault.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── statefulset.yaml │ │ └── tests │ │ │ └── test-connection.yaml │ ├── values.schema.json │ └── values.yaml ├── vscode-pytorch │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── configmap-repository.yaml │ │ ├── ingress-user.yaml │ │ ├── ingress.yaml │ │ ├── networkpolicy-ingress.yaml │ │ ├── networkpolicy.yaml │ │ ├── pvc.yaml │ │ ├── role-binding-scc.yaml │ │ ├── role-binding.yaml │ │ ├── route-user.yaml │ │ ├── route.yaml │ │ ├── secret-assistant.yaml │ │ ├── secret-cacerts.yaml │ │ ├── secret-chromadb.yaml │ │ ├── secret-extraenv.yaml │ │ ├── secret-git.yaml │ │ ├── secret-hive.yaml │ │ ├── secret-metaflow.yaml │ │ ├── secret-milvus.yaml │ │ ├── secret-mlflow.yaml │ │ ├── secret-postgresql.yaml │ │ ├── secret-proxy.yaml │ │ ├── secret-s3.yaml │ │ ├── secret-token.yaml │ │ ├── secret-vault.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── statefulset.yaml │ │ └── tests │ │ │ └── test-connection.yaml │ ├── values.schema.json │ └── values.yaml ├── vscode-r-python-julia │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── configmap-repository.yaml │ │ ├── ingress-user.yaml │ │ ├── ingress.yaml │ │ ├── networkpolicy-ingress.yaml │ │ ├── networkpolicy.yaml │ │ ├── pvc.yaml │ │ ├── role-binding-scc.yaml │ │ ├── role-binding.yaml │ │ ├── route-user.yaml │ │ ├── route.yaml │ │ ├── secret-assistant.yaml │ │ ├── secret-cacerts.yaml │ │ ├── secret-chromadb.yaml │ │ ├── secret-extraenv.yaml │ │ ├── secret-git.yaml │ │ ├── secret-hive.yaml │ │ ├── secret-metaflow.yaml │ │ ├── secret-milvus.yaml │ │ ├── secret-mlflow.yaml │ │ ├── secret-postgresql.yaml │ │ ├── secret-proxy.yaml │ │ ├── secret-s3.yaml │ │ ├── secret-token.yaml │ │ ├── secret-vault.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── statefulset.yaml │ │ └── tests │ │ │ └── test-connection.yaml │ ├── values.schema.json │ └── values.yaml ├── vscode-tensorflow-gpu │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── configmap-repository.yaml │ │ ├── ingress-user.yaml │ │ ├── ingress.yaml │ │ ├── networkpolicy-ingress.yaml │ │ ├── networkpolicy.yaml │ │ ├── pvc.yaml │ │ ├── role-binding-scc.yaml │ │ ├── role-binding.yaml │ │ ├── route-user.yaml │ │ ├── route.yaml │ │ ├── secret-assistant.yaml │ │ ├── secret-cacerts.yaml │ │ ├── secret-chromadb.yaml │ │ ├── secret-extraenv.yaml │ │ ├── secret-git.yaml │ │ ├── secret-hive.yaml │ │ ├── secret-metaflow.yaml │ │ ├── secret-milvus.yaml │ │ ├── secret-mlflow.yaml │ │ ├── secret-postgresql.yaml │ │ ├── secret-proxy.yaml │ │ ├── secret-s3.yaml │ │ ├── secret-token.yaml │ │ ├── secret-vault.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── statefulset.yaml │ │ └── tests │ │ │ └── test-connection.yaml │ ├── values.schema.json │ └── values.yaml └── vscode-tensorflow │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ ├── NOTES.txt │ ├── configmap-repository.yaml │ ├── ingress-user.yaml │ ├── ingress.yaml │ ├── networkpolicy-ingress.yaml │ ├── networkpolicy.yaml │ ├── pvc.yaml │ ├── role-binding-scc.yaml │ ├── role-binding.yaml │ ├── route-user.yaml │ ├── route.yaml │ ├── secret-assistant.yaml │ ├── secret-cacerts.yaml │ ├── secret-chromadb.yaml │ ├── secret-extraenv.yaml │ ├── secret-git.yaml │ ├── secret-hive.yaml │ ├── secret-metaflow.yaml │ ├── secret-milvus.yaml │ ├── secret-mlflow.yaml │ ├── secret-postgresql.yaml │ ├── secret-proxy.yaml │ ├── secret-s3.yaml │ ├── secret-token.yaml │ ├── secret-vault.yaml │ ├── service.yaml │ ├── serviceaccount.yaml │ ├── statefulset.yaml │ └── tests │ │ └── test-connection.yaml │ ├── values.schema.json │ └── values.yaml ├── renovate.json ├── tests ├── deployment_test.yaml ├── ingress_test.yaml └── route_test.yaml └── utils ├── bump_all_charts.sh ├── charts-inheritance.yaml ├── check_library_chart.py ├── generate-children-charts.py ├── jq_all_schemas.sh ├── prepull_images.py ├── prepull_images.sh ├── prepull_template.yaml └── unittestall.sh /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/integrationtest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/.github/workflows/integrationtest.yaml -------------------------------------------------------------------------------- /.github/workflows/pre-commit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/.github/workflows/pre-commit.yml -------------------------------------------------------------------------------- /.github/workflows/pullrequest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/.github/workflows/pullrequest.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /DCO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/DCO.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/MAINTAINERS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/README.md -------------------------------------------------------------------------------- /charts/jupyter-pyspark/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/jupyter-pyspark/.helmignore -------------------------------------------------------------------------------- /charts/jupyter-pyspark/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/jupyter-pyspark/Chart.yaml -------------------------------------------------------------------------------- /charts/jupyter-pyspark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/jupyter-pyspark/README.md -------------------------------------------------------------------------------- /charts/jupyter-pyspark/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/jupyter-pyspark/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/jupyter-pyspark/templates/configmap-repository.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.configMapRepository" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pyspark/templates/ingress-sparkui.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.ingressSpark" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pyspark/templates/ingress-user.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.ingressUser" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pyspark/templates/ingress.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.ingress" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pyspark/templates/networkpolicy-ingress.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.networkPolicyIngress" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pyspark/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.networkPolicy" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pyspark/templates/pvc.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.persistentVolumeClaim" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pyspark/templates/role-binding-scc.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.roleBindingSCC" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pyspark/templates/role-binding.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.roleBinding" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pyspark/templates/route-sparkui.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.routeSpark" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pyspark/templates/route-user.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.routeUser" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pyspark/templates/route.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.route" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pyspark/templates/secret-assistant.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretAssistantJupyter" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pyspark/templates/secret-cacerts.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretCacerts" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pyspark/templates/secret-chromadb.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretChromaDB" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pyspark/templates/secret-coresite.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretCoreSite" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pyspark/templates/secret-extraenv.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretExtraEnv" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pyspark/templates/secret-git.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretGit" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pyspark/templates/secret-hive.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretHive" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pyspark/templates/secret-ivysettings.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretIvySettings" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pyspark/templates/secret-metaflow.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretMetaflow" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pyspark/templates/secret-milvus.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretMilvus" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pyspark/templates/secret-mlflow.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretMLFlow" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pyspark/templates/secret-postgresql.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretPostgreSQL" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pyspark/templates/secret-proxy.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretProxy" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pyspark/templates/secret-s3.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretS3" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pyspark/templates/secret-sparkconf.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretSparkConf" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pyspark/templates/secret-token.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretToken" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pyspark/templates/secret-vault.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretVault" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pyspark/templates/service.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.service" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pyspark/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.serviceAccount" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pyspark/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/jupyter-pyspark/templates/statefulset.yaml -------------------------------------------------------------------------------- /charts/jupyter-pyspark/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.testConnection" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pyspark/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/jupyter-pyspark/values.schema.json -------------------------------------------------------------------------------- /charts/jupyter-pyspark/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/jupyter-pyspark/values.yaml -------------------------------------------------------------------------------- /charts/jupyter-python-gpu/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/jupyter-python-gpu/.helmignore -------------------------------------------------------------------------------- /charts/jupyter-python-gpu/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/jupyter-python-gpu/Chart.yaml -------------------------------------------------------------------------------- /charts/jupyter-python-gpu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/jupyter-python-gpu/README.md -------------------------------------------------------------------------------- /charts/jupyter-python-gpu/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/jupyter-python-gpu/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/jupyter-python-gpu/templates/configmap-repository.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.configMapRepository" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-python-gpu/templates/ingress-user.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.ingressUser" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-python-gpu/templates/ingress.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.ingress" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-python-gpu/templates/networkpolicy-ingress.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.networkPolicyIngress" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-python-gpu/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.networkPolicy" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-python-gpu/templates/pvc.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.persistentVolumeClaim" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-python-gpu/templates/role-binding-scc.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.roleBindingSCC" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-python-gpu/templates/role-binding.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.roleBinding" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-python-gpu/templates/route-user.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.routeUser" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-python-gpu/templates/route.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.route" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-python-gpu/templates/secret-assistant.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretAssistantJupyter" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-python-gpu/templates/secret-cacerts.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretCacerts" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-python-gpu/templates/secret-chromadb.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretChromaDB" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-python-gpu/templates/secret-extraenv.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretExtraEnv" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-python-gpu/templates/secret-git.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretGit" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-python-gpu/templates/secret-hive.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretHive" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-python-gpu/templates/secret-metaflow.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretMetaflow" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-python-gpu/templates/secret-milvus.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretMilvus" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-python-gpu/templates/secret-mlflow.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretMLFlow" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-python-gpu/templates/secret-postgresql.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretPostgreSQL" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-python-gpu/templates/secret-proxy.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretProxy" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-python-gpu/templates/secret-s3.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretS3" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-python-gpu/templates/secret-token.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretToken" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-python-gpu/templates/secret-vault.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretVault" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-python-gpu/templates/service.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.service" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-python-gpu/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.serviceAccount" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-python-gpu/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/jupyter-python-gpu/templates/statefulset.yaml -------------------------------------------------------------------------------- /charts/jupyter-python-gpu/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.testConnection" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-python-gpu/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/jupyter-python-gpu/values.schema.json -------------------------------------------------------------------------------- /charts/jupyter-python-gpu/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/jupyter-python-gpu/values.yaml -------------------------------------------------------------------------------- /charts/jupyter-python/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/jupyter-python/.helmignore -------------------------------------------------------------------------------- /charts/jupyter-python/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/jupyter-python/Chart.yaml -------------------------------------------------------------------------------- /charts/jupyter-python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/jupyter-python/README.md -------------------------------------------------------------------------------- /charts/jupyter-python/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/jupyter-python/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/jupyter-python/templates/configmap-repository.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.configMapRepository" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-python/templates/ingress-user.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.ingressUser" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-python/templates/ingress.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.ingress" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-python/templates/networkpolicy-ingress.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.networkPolicyIngress" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-python/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.networkPolicy" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-python/templates/pvc.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.persistentVolumeClaim" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-python/templates/role-binding-scc.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.roleBindingSCC" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-python/templates/role-binding.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.roleBinding" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-python/templates/route-user.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.routeUser" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-python/templates/route.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.route" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-python/templates/secret-assistant.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretAssistantJupyter" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-python/templates/secret-cacerts.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretCacerts" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-python/templates/secret-chromadb.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretChromaDB" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-python/templates/secret-extraenv.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretExtraEnv" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-python/templates/secret-git.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretGit" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-python/templates/secret-hive.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretHive" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-python/templates/secret-metaflow.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretMetaflow" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-python/templates/secret-milvus.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretMilvus" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-python/templates/secret-mlflow.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretMLFlow" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-python/templates/secret-postgresql.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretPostgreSQL" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-python/templates/secret-proxy.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretProxy" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-python/templates/secret-s3.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretS3" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-python/templates/secret-token.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretToken" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-python/templates/secret-vault.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretVault" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-python/templates/service.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.service" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-python/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.serviceAccount" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-python/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/jupyter-python/templates/statefulset.yaml -------------------------------------------------------------------------------- /charts/jupyter-python/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.testConnection" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-python/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/jupyter-python/values.schema.json -------------------------------------------------------------------------------- /charts/jupyter-python/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/jupyter-python/values.yaml -------------------------------------------------------------------------------- /charts/jupyter-pytorch-gpu/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/jupyter-pytorch-gpu/.helmignore -------------------------------------------------------------------------------- /charts/jupyter-pytorch-gpu/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/jupyter-pytorch-gpu/Chart.yaml -------------------------------------------------------------------------------- /charts/jupyter-pytorch-gpu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/jupyter-pytorch-gpu/README.md -------------------------------------------------------------------------------- /charts/jupyter-pytorch-gpu/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/jupyter-pytorch-gpu/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/jupyter-pytorch-gpu/templates/configmap-repository.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.configMapRepository" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pytorch-gpu/templates/ingress-user.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.ingressUser" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pytorch-gpu/templates/ingress.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.ingress" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pytorch-gpu/templates/networkpolicy-ingress.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.networkPolicyIngress" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pytorch-gpu/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.networkPolicy" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pytorch-gpu/templates/pvc.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.persistentVolumeClaim" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pytorch-gpu/templates/role-binding-scc.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.roleBindingSCC" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pytorch-gpu/templates/role-binding.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.roleBinding" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pytorch-gpu/templates/route-user.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.routeUser" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pytorch-gpu/templates/route.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.route" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pytorch-gpu/templates/secret-assistant.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretAssistantJupyter" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pytorch-gpu/templates/secret-cacerts.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretCacerts" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pytorch-gpu/templates/secret-chromadb.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretChromaDB" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pytorch-gpu/templates/secret-extraenv.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretExtraEnv" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pytorch-gpu/templates/secret-git.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretGit" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pytorch-gpu/templates/secret-hive.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretHive" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pytorch-gpu/templates/secret-metaflow.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretMetaflow" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pytorch-gpu/templates/secret-milvus.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretMilvus" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pytorch-gpu/templates/secret-mlflow.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretMLFlow" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pytorch-gpu/templates/secret-postgresql.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretPostgreSQL" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pytorch-gpu/templates/secret-proxy.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretProxy" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pytorch-gpu/templates/secret-s3.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretS3" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pytorch-gpu/templates/secret-token.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretToken" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pytorch-gpu/templates/secret-vault.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretVault" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pytorch-gpu/templates/service.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.service" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pytorch-gpu/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.serviceAccount" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pytorch-gpu/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/jupyter-pytorch-gpu/templates/statefulset.yaml -------------------------------------------------------------------------------- /charts/jupyter-pytorch-gpu/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.testConnection" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pytorch-gpu/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/jupyter-pytorch-gpu/values.schema.json -------------------------------------------------------------------------------- /charts/jupyter-pytorch-gpu/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/jupyter-pytorch-gpu/values.yaml -------------------------------------------------------------------------------- /charts/jupyter-pytorch/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/jupyter-pytorch/.helmignore -------------------------------------------------------------------------------- /charts/jupyter-pytorch/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/jupyter-pytorch/Chart.yaml -------------------------------------------------------------------------------- /charts/jupyter-pytorch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/jupyter-pytorch/README.md -------------------------------------------------------------------------------- /charts/jupyter-pytorch/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/jupyter-pytorch/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/jupyter-pytorch/templates/configmap-repository.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.configMapRepository" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pytorch/templates/ingress-user.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.ingressUser" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pytorch/templates/ingress.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.ingress" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pytorch/templates/networkpolicy-ingress.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.networkPolicyIngress" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pytorch/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.networkPolicy" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pytorch/templates/pvc.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.persistentVolumeClaim" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pytorch/templates/role-binding-scc.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.roleBindingSCC" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pytorch/templates/role-binding.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.roleBinding" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pytorch/templates/route-user.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.routeUser" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pytorch/templates/route.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.route" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pytorch/templates/secret-assistant.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretAssistantJupyter" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pytorch/templates/secret-cacerts.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretCacerts" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pytorch/templates/secret-chromadb.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretChromaDB" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pytorch/templates/secret-extraenv.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretExtraEnv" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pytorch/templates/secret-git.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretGit" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pytorch/templates/secret-hive.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretHive" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pytorch/templates/secret-metaflow.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretMetaflow" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pytorch/templates/secret-milvus.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretMilvus" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pytorch/templates/secret-mlflow.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretMLFlow" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pytorch/templates/secret-postgresql.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretPostgreSQL" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pytorch/templates/secret-proxy.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretProxy" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pytorch/templates/secret-s3.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretS3" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pytorch/templates/secret-token.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretToken" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pytorch/templates/secret-vault.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretVault" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pytorch/templates/service.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.service" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pytorch/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.serviceAccount" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pytorch/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/jupyter-pytorch/templates/statefulset.yaml -------------------------------------------------------------------------------- /charts/jupyter-pytorch/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.testConnection" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-pytorch/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/jupyter-pytorch/values.schema.json -------------------------------------------------------------------------------- /charts/jupyter-pytorch/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/jupyter-pytorch/values.yaml -------------------------------------------------------------------------------- /charts/jupyter-r-python-julia/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/jupyter-r-python-julia/.helmignore -------------------------------------------------------------------------------- /charts/jupyter-r-python-julia/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/jupyter-r-python-julia/Chart.yaml -------------------------------------------------------------------------------- /charts/jupyter-r-python-julia/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/jupyter-r-python-julia/README.md -------------------------------------------------------------------------------- /charts/jupyter-r-python-julia/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/jupyter-r-python-julia/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/jupyter-r-python-julia/templates/configmap-repository.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.configMapRepository" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-r-python-julia/templates/ingress-user.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.ingressUser" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-r-python-julia/templates/ingress.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.ingress" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-r-python-julia/templates/networkpolicy-ingress.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.networkPolicyIngress" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-r-python-julia/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.networkPolicy" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-r-python-julia/templates/pvc.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.persistentVolumeClaim" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-r-python-julia/templates/role-binding-scc.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.roleBindingSCC" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-r-python-julia/templates/role-binding.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.roleBinding" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-r-python-julia/templates/route-user.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.routeUser" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-r-python-julia/templates/route.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.route" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-r-python-julia/templates/secret-assistant.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretAssistantJupyter" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-r-python-julia/templates/secret-cacerts.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretCacerts" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-r-python-julia/templates/secret-chromadb.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretChromaDB" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-r-python-julia/templates/secret-extraenv.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretExtraEnv" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-r-python-julia/templates/secret-git.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretGit" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-r-python-julia/templates/secret-hive.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretHive" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-r-python-julia/templates/secret-metaflow.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretMetaflow" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-r-python-julia/templates/secret-milvus.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretMilvus" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-r-python-julia/templates/secret-mlflow.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretMLFlow" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-r-python-julia/templates/secret-postgresql.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretPostgreSQL" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-r-python-julia/templates/secret-proxy.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretProxy" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-r-python-julia/templates/secret-s3.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretS3" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-r-python-julia/templates/secret-token.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretToken" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-r-python-julia/templates/secret-vault.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretVault" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-r-python-julia/templates/service.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.service" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-r-python-julia/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.serviceAccount" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-r-python-julia/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/jupyter-r-python-julia/templates/statefulset.yaml -------------------------------------------------------------------------------- /charts/jupyter-r-python-julia/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.testConnection" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-r-python-julia/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/jupyter-r-python-julia/values.schema.json -------------------------------------------------------------------------------- /charts/jupyter-r-python-julia/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/jupyter-r-python-julia/values.yaml -------------------------------------------------------------------------------- /charts/jupyter-tensorflow-gpu/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/jupyter-tensorflow-gpu/.helmignore -------------------------------------------------------------------------------- /charts/jupyter-tensorflow-gpu/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/jupyter-tensorflow-gpu/Chart.yaml -------------------------------------------------------------------------------- /charts/jupyter-tensorflow-gpu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/jupyter-tensorflow-gpu/README.md -------------------------------------------------------------------------------- /charts/jupyter-tensorflow-gpu/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/jupyter-tensorflow-gpu/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/jupyter-tensorflow-gpu/templates/configmap-repository.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.configMapRepository" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-tensorflow-gpu/templates/ingress-user.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.ingressUser" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-tensorflow-gpu/templates/ingress.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.ingress" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-tensorflow-gpu/templates/networkpolicy-ingress.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.networkPolicyIngress" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-tensorflow-gpu/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.networkPolicy" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-tensorflow-gpu/templates/pvc.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.persistentVolumeClaim" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-tensorflow-gpu/templates/role-binding-scc.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.roleBindingSCC" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-tensorflow-gpu/templates/role-binding.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.roleBinding" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-tensorflow-gpu/templates/route-user.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.routeUser" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-tensorflow-gpu/templates/route.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.route" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-tensorflow-gpu/templates/secret-assistant.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretAssistantJupyter" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-tensorflow-gpu/templates/secret-cacerts.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretCacerts" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-tensorflow-gpu/templates/secret-chromadb.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretChromaDB" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-tensorflow-gpu/templates/secret-extraenv.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretExtraEnv" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-tensorflow-gpu/templates/secret-git.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretGit" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-tensorflow-gpu/templates/secret-hive.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretHive" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-tensorflow-gpu/templates/secret-metaflow.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretMetaflow" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-tensorflow-gpu/templates/secret-milvus.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretMilvus" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-tensorflow-gpu/templates/secret-mlflow.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretMLFlow" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-tensorflow-gpu/templates/secret-postgresql.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretPostgreSQL" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-tensorflow-gpu/templates/secret-proxy.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretProxy" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-tensorflow-gpu/templates/secret-s3.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretS3" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-tensorflow-gpu/templates/secret-token.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretToken" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-tensorflow-gpu/templates/secret-vault.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretVault" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-tensorflow-gpu/templates/service.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.service" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-tensorflow-gpu/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.serviceAccount" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-tensorflow-gpu/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/jupyter-tensorflow-gpu/templates/statefulset.yaml -------------------------------------------------------------------------------- /charts/jupyter-tensorflow-gpu/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.testConnection" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-tensorflow-gpu/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/jupyter-tensorflow-gpu/values.schema.json -------------------------------------------------------------------------------- /charts/jupyter-tensorflow-gpu/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/jupyter-tensorflow-gpu/values.yaml -------------------------------------------------------------------------------- /charts/jupyter-tensorflow/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/jupyter-tensorflow/.helmignore -------------------------------------------------------------------------------- /charts/jupyter-tensorflow/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/jupyter-tensorflow/Chart.yaml -------------------------------------------------------------------------------- /charts/jupyter-tensorflow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/jupyter-tensorflow/README.md -------------------------------------------------------------------------------- /charts/jupyter-tensorflow/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/jupyter-tensorflow/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/jupyter-tensorflow/templates/configmap-repository.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.configMapRepository" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-tensorflow/templates/ingress-user.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.ingressUser" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-tensorflow/templates/ingress.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.ingress" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-tensorflow/templates/networkpolicy-ingress.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.networkPolicyIngress" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-tensorflow/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.networkPolicy" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-tensorflow/templates/pvc.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.persistentVolumeClaim" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-tensorflow/templates/role-binding-scc.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.roleBindingSCC" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-tensorflow/templates/role-binding.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.roleBinding" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-tensorflow/templates/route-user.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.routeUser" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-tensorflow/templates/route.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.route" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-tensorflow/templates/secret-assistant.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretAssistantJupyter" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-tensorflow/templates/secret-cacerts.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretCacerts" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-tensorflow/templates/secret-chromadb.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretChromaDB" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-tensorflow/templates/secret-extraenv.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretExtraEnv" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-tensorflow/templates/secret-git.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretGit" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-tensorflow/templates/secret-hive.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretHive" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-tensorflow/templates/secret-metaflow.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretMetaflow" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-tensorflow/templates/secret-milvus.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretMilvus" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-tensorflow/templates/secret-mlflow.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretMLFlow" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-tensorflow/templates/secret-postgresql.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretPostgreSQL" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-tensorflow/templates/secret-proxy.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretProxy" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-tensorflow/templates/secret-s3.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretS3" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-tensorflow/templates/secret-token.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretToken" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-tensorflow/templates/secret-vault.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretVault" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-tensorflow/templates/service.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.service" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-tensorflow/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.serviceAccount" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-tensorflow/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/jupyter-tensorflow/templates/statefulset.yaml -------------------------------------------------------------------------------- /charts/jupyter-tensorflow/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.testConnection" . }} 2 | -------------------------------------------------------------------------------- /charts/jupyter-tensorflow/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/jupyter-tensorflow/values.schema.json -------------------------------------------------------------------------------- /charts/jupyter-tensorflow/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/jupyter-tensorflow/values.yaml -------------------------------------------------------------------------------- /charts/library-chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/library-chart/Chart.yaml -------------------------------------------------------------------------------- /charts/library-chart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/library-chart/README.md -------------------------------------------------------------------------------- /charts/library-chart/templates/_common.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/library-chart/templates/_common.tpl -------------------------------------------------------------------------------- /charts/library-chart/templates/_configmap.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/library-chart/templates/_configmap.tpl -------------------------------------------------------------------------------- /charts/library-chart/templates/_ingress.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/library-chart/templates/_ingress.tpl -------------------------------------------------------------------------------- /charts/library-chart/templates/_label.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/library-chart/templates/_label.tpl -------------------------------------------------------------------------------- /charts/library-chart/templates/_name.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/library-chart/templates/_name.tpl -------------------------------------------------------------------------------- /charts/library-chart/templates/_network_policy.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/library-chart/templates/_network_policy.tpl -------------------------------------------------------------------------------- /charts/library-chart/templates/_notes.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/library-chart/templates/_notes.tpl -------------------------------------------------------------------------------- /charts/library-chart/templates/_pvc.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/library-chart/templates/_pvc.tpl -------------------------------------------------------------------------------- /charts/library-chart/templates/_role_binding.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/library-chart/templates/_role_binding.tpl -------------------------------------------------------------------------------- /charts/library-chart/templates/_route.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/library-chart/templates/_route.tpl -------------------------------------------------------------------------------- /charts/library-chart/templates/_secret.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/library-chart/templates/_secret.tpl -------------------------------------------------------------------------------- /charts/library-chart/templates/_secret_chroma_discovery.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/library-chart/templates/_secret_chroma_discovery.tpl -------------------------------------------------------------------------------- /charts/library-chart/templates/_secret_hive_discovery.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/library-chart/templates/_secret_hive_discovery.tpl -------------------------------------------------------------------------------- /charts/library-chart/templates/_secret_metaflow_discovery.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/library-chart/templates/_secret_metaflow_discovery.tpl -------------------------------------------------------------------------------- /charts/library-chart/templates/_secret_milvus_discovery.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/library-chart/templates/_secret_milvus_discovery.tpl -------------------------------------------------------------------------------- /charts/library-chart/templates/_secret_mlflow_discovery.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/library-chart/templates/_secret_mlflow_discovery.tpl -------------------------------------------------------------------------------- /charts/library-chart/templates/_secret_postgresql_discovery.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/library-chart/templates/_secret_postgresql_discovery.tpl -------------------------------------------------------------------------------- /charts/library-chart/templates/_service.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/library-chart/templates/_service.tpl -------------------------------------------------------------------------------- /charts/library-chart/templates/_service_account.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/library-chart/templates/_service_account.tpl -------------------------------------------------------------------------------- /charts/library-chart/templates/_test.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/library-chart/templates/_test.tpl -------------------------------------------------------------------------------- /charts/library-chart/values.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/rstudio-gpu/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/rstudio-gpu/.helmignore -------------------------------------------------------------------------------- /charts/rstudio-gpu/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/rstudio-gpu/Chart.yaml -------------------------------------------------------------------------------- /charts/rstudio-gpu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/rstudio-gpu/README.md -------------------------------------------------------------------------------- /charts/rstudio-gpu/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/rstudio-gpu/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/rstudio-gpu/templates/configmap-repository.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.configMapRepository" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-gpu/templates/ingress-user.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.ingressUser" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-gpu/templates/ingress.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.ingress" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-gpu/templates/networkpolicy-ingress.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.networkPolicyIngress" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-gpu/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.networkPolicy" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-gpu/templates/pvc.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.persistentVolumeClaim" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-gpu/templates/role-binding-scc.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.roleBindingSCC" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-gpu/templates/role-binding.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.roleBinding" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-gpu/templates/route-user.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.routeUser" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-gpu/templates/route.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.route" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-gpu/templates/secret-extraenv.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretExtraEnv" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-gpu/templates/secret-git.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretGit" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-gpu/templates/secret-postgresql.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretPostgreSQL" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-gpu/templates/secret-proxy.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretProxy" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-gpu/templates/secret-s3.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretS3" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-gpu/templates/secret-token.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretToken" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-gpu/templates/secret-vault.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretVault" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-gpu/templates/service.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.service" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-gpu/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.serviceAccount" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-gpu/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/rstudio-gpu/templates/statefulset.yaml -------------------------------------------------------------------------------- /charts/rstudio-gpu/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.testConnection" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-gpu/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/rstudio-gpu/values.schema.json -------------------------------------------------------------------------------- /charts/rstudio-gpu/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/rstudio-gpu/values.yaml -------------------------------------------------------------------------------- /charts/rstudio-r-python-julia/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/rstudio-r-python-julia/.helmignore -------------------------------------------------------------------------------- /charts/rstudio-r-python-julia/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/rstudio-r-python-julia/Chart.yaml -------------------------------------------------------------------------------- /charts/rstudio-r-python-julia/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/rstudio-r-python-julia/README.md -------------------------------------------------------------------------------- /charts/rstudio-r-python-julia/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/rstudio-r-python-julia/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/rstudio-r-python-julia/templates/configmap-repository.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.configMapRepository" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-r-python-julia/templates/ingress-user.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.ingressUser" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-r-python-julia/templates/ingress.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.ingress" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-r-python-julia/templates/networkpolicy-ingress.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.networkPolicyIngress" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-r-python-julia/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.networkPolicy" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-r-python-julia/templates/pvc.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.persistentVolumeClaim" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-r-python-julia/templates/role-binding-scc.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.roleBindingSCC" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-r-python-julia/templates/role-binding.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.roleBinding" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-r-python-julia/templates/route-user.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.routeUser" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-r-python-julia/templates/route.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.route" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-r-python-julia/templates/secret-extraenv.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretExtraEnv" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-r-python-julia/templates/secret-git.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretGit" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-r-python-julia/templates/secret-postgresql.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretPostgreSQL" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-r-python-julia/templates/secret-proxy.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretProxy" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-r-python-julia/templates/secret-s3.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretS3" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-r-python-julia/templates/secret-token.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretToken" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-r-python-julia/templates/secret-vault.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretVault" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-r-python-julia/templates/service.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.service" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-r-python-julia/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.serviceAccount" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-r-python-julia/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/rstudio-r-python-julia/templates/statefulset.yaml -------------------------------------------------------------------------------- /charts/rstudio-r-python-julia/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.testConnection" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-r-python-julia/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/rstudio-r-python-julia/values.schema.json -------------------------------------------------------------------------------- /charts/rstudio-r-python-julia/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/rstudio-r-python-julia/values.yaml -------------------------------------------------------------------------------- /charts/rstudio-sparkr/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/rstudio-sparkr/.helmignore -------------------------------------------------------------------------------- /charts/rstudio-sparkr/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/rstudio-sparkr/Chart.yaml -------------------------------------------------------------------------------- /charts/rstudio-sparkr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/rstudio-sparkr/README.md -------------------------------------------------------------------------------- /charts/rstudio-sparkr/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/rstudio-sparkr/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/rstudio-sparkr/templates/configmap-repository.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.configMapRepository" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-sparkr/templates/ingress-sparkui.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.ingressSpark" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-sparkr/templates/ingress-user.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.ingressUser" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-sparkr/templates/ingress.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.ingress" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-sparkr/templates/networkpolicy-ingress.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.networkPolicyIngress" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-sparkr/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.networkPolicy" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-sparkr/templates/pvc.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.persistentVolumeClaim" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-sparkr/templates/role-binding-scc.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.roleBindingSCC" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-sparkr/templates/role-binding.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.roleBinding" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-sparkr/templates/route-sparkui.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.routeSpark" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-sparkr/templates/route-user.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.routeUser" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-sparkr/templates/route.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.route" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-sparkr/templates/secret-cacerts.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretCacerts" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-sparkr/templates/secret-coresite.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretCoreSite" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-sparkr/templates/secret-extraenv.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretExtraEnv" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-sparkr/templates/secret-git.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretGit" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-sparkr/templates/secret-hive.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretHive" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-sparkr/templates/secret-ivysettings.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretIvySettings" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-sparkr/templates/secret-postgresql.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretPostgreSQL" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-sparkr/templates/secret-proxy.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretProxy" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-sparkr/templates/secret-s3.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretS3" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-sparkr/templates/secret-sparkconf.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretSparkConf" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-sparkr/templates/secret-token.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretToken" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-sparkr/templates/secret-vault.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretVault" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-sparkr/templates/service.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.service" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-sparkr/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.serviceAccount" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-sparkr/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/rstudio-sparkr/templates/statefulset.yaml -------------------------------------------------------------------------------- /charts/rstudio-sparkr/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.testConnection" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio-sparkr/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/rstudio-sparkr/values.schema.json -------------------------------------------------------------------------------- /charts/rstudio-sparkr/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/rstudio-sparkr/values.yaml -------------------------------------------------------------------------------- /charts/rstudio/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/rstudio/.helmignore -------------------------------------------------------------------------------- /charts/rstudio/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/rstudio/Chart.yaml -------------------------------------------------------------------------------- /charts/rstudio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/rstudio/README.md -------------------------------------------------------------------------------- /charts/rstudio/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/rstudio/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/rstudio/templates/configmap-repository.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.configMapRepository" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio/templates/ingress-user.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.ingressUser" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio/templates/ingress.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.ingress" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio/templates/networkpolicy-ingress.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.networkPolicyIngress" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.networkPolicy" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio/templates/pvc.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.persistentVolumeClaim" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio/templates/role-binding-scc.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.roleBindingSCC" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio/templates/role-binding.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.roleBinding" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio/templates/route-user.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.routeUser" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio/templates/route.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.route" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio/templates/secret-extraenv.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretExtraEnv" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio/templates/secret-git.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretGit" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio/templates/secret-postgresql.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretPostgreSQL" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio/templates/secret-proxy.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretProxy" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio/templates/secret-s3.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretS3" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio/templates/secret-token.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretToken" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio/templates/secret-vault.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretVault" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio/templates/service.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.service" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.serviceAccount" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/rstudio/templates/statefulset.yaml -------------------------------------------------------------------------------- /charts/rstudio/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.testConnection" . }} 2 | -------------------------------------------------------------------------------- /charts/rstudio/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/rstudio/values.schema.json -------------------------------------------------------------------------------- /charts/rstudio/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/rstudio/values.yaml -------------------------------------------------------------------------------- /charts/vscode-pyspark/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/vscode-pyspark/.helmignore -------------------------------------------------------------------------------- /charts/vscode-pyspark/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/vscode-pyspark/Chart.yaml -------------------------------------------------------------------------------- /charts/vscode-pyspark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/vscode-pyspark/README.md -------------------------------------------------------------------------------- /charts/vscode-pyspark/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/vscode-pyspark/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/vscode-pyspark/templates/configmap-repository.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.configMapRepository" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pyspark/templates/ingress-sparkui.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.ingressSpark" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pyspark/templates/ingress-user.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.ingressUser" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pyspark/templates/ingress.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.ingress" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pyspark/templates/networkpolicy-ingress.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.networkPolicyIngress" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pyspark/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.networkPolicy" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pyspark/templates/pvc.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.persistentVolumeClaim" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pyspark/templates/role-binding-scc.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.roleBindingSCC" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pyspark/templates/role-binding.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.roleBinding" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pyspark/templates/route-sparkui.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.routeSpark" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pyspark/templates/route-user.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.routeUser" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pyspark/templates/route.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.route" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pyspark/templates/secret-assistant.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretAssistant" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pyspark/templates/secret-cacerts.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretCacerts" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pyspark/templates/secret-chromadb.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretChromaDB" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pyspark/templates/secret-coresite.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretCoreSite" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pyspark/templates/secret-extraenv.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretExtraEnv" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pyspark/templates/secret-git.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretGit" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pyspark/templates/secret-hive.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretHive" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pyspark/templates/secret-ivysettings.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretIvySettings" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pyspark/templates/secret-metaflow.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretMetaflow" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pyspark/templates/secret-milvus.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretMilvus" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pyspark/templates/secret-mlflow.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretMLFlow" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pyspark/templates/secret-postgresql.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretPostgreSQL" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pyspark/templates/secret-proxy.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretProxy" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pyspark/templates/secret-s3.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretS3" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pyspark/templates/secret-sparkconf.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretSparkConf" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pyspark/templates/secret-token.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretToken" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pyspark/templates/secret-vault.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretVault" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pyspark/templates/service.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.service" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pyspark/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.serviceAccount" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pyspark/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/vscode-pyspark/templates/statefulset.yaml -------------------------------------------------------------------------------- /charts/vscode-pyspark/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.testConnection" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pyspark/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/vscode-pyspark/values.schema.json -------------------------------------------------------------------------------- /charts/vscode-pyspark/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/vscode-pyspark/values.yaml -------------------------------------------------------------------------------- /charts/vscode-python-gpu/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/vscode-python-gpu/.helmignore -------------------------------------------------------------------------------- /charts/vscode-python-gpu/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/vscode-python-gpu/Chart.yaml -------------------------------------------------------------------------------- /charts/vscode-python-gpu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/vscode-python-gpu/README.md -------------------------------------------------------------------------------- /charts/vscode-python-gpu/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/vscode-python-gpu/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/vscode-python-gpu/templates/configmap-repository.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.configMapRepository" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-python-gpu/templates/ingress-user.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.ingressUser" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-python-gpu/templates/ingress.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.ingress" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-python-gpu/templates/networkpolicy-ingress.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.networkPolicyIngress" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-python-gpu/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.networkPolicy" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-python-gpu/templates/pvc.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.persistentVolumeClaim" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-python-gpu/templates/role-binding-scc.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.roleBindingSCC" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-python-gpu/templates/role-binding.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.roleBinding" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-python-gpu/templates/route-user.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.routeUser" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-python-gpu/templates/route.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.route" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-python-gpu/templates/secret-assistant.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretAssistant" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-python-gpu/templates/secret-cacerts.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretCacerts" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-python-gpu/templates/secret-chromadb.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretChromaDB" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-python-gpu/templates/secret-extraenv.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretExtraEnv" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-python-gpu/templates/secret-git.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretGit" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-python-gpu/templates/secret-hive.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretHive" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-python-gpu/templates/secret-metaflow.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretMetaflow" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-python-gpu/templates/secret-milvus.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretMilvus" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-python-gpu/templates/secret-mlflow.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretMLFlow" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-python-gpu/templates/secret-postgresql.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretPostgreSQL" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-python-gpu/templates/secret-proxy.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretProxy" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-python-gpu/templates/secret-s3.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretS3" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-python-gpu/templates/secret-token.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretToken" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-python-gpu/templates/secret-vault.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretVault" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-python-gpu/templates/service.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.service" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-python-gpu/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.serviceAccount" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-python-gpu/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/vscode-python-gpu/templates/statefulset.yaml -------------------------------------------------------------------------------- /charts/vscode-python-gpu/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.testConnection" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-python-gpu/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/vscode-python-gpu/values.schema.json -------------------------------------------------------------------------------- /charts/vscode-python-gpu/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/vscode-python-gpu/values.yaml -------------------------------------------------------------------------------- /charts/vscode-python/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/vscode-python/.helmignore -------------------------------------------------------------------------------- /charts/vscode-python/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/vscode-python/Chart.yaml -------------------------------------------------------------------------------- /charts/vscode-python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/vscode-python/README.md -------------------------------------------------------------------------------- /charts/vscode-python/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/vscode-python/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/vscode-python/templates/configmap-repository.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.configMapRepository" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-python/templates/ingress-user.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.ingressUser" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-python/templates/ingress.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.ingress" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-python/templates/networkpolicy-ingress.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.networkPolicyIngress" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-python/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.networkPolicy" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-python/templates/pvc.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.persistentVolumeClaim" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-python/templates/role-binding-scc.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.roleBindingSCC" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-python/templates/role-binding.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.roleBinding" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-python/templates/route-user.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.routeUser" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-python/templates/route.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.route" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-python/templates/secret-assistant.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretAssistant" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-python/templates/secret-cacerts.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretCacerts" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-python/templates/secret-chromadb.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretChromaDB" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-python/templates/secret-extraenv.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretExtraEnv" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-python/templates/secret-git.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretGit" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-python/templates/secret-hive.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretHive" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-python/templates/secret-metaflow.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretMetaflow" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-python/templates/secret-milvus.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretMilvus" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-python/templates/secret-mlflow.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretMLFlow" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-python/templates/secret-postgresql.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretPostgreSQL" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-python/templates/secret-proxy.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretProxy" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-python/templates/secret-s3.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretS3" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-python/templates/secret-token.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretToken" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-python/templates/secret-vault.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretVault" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-python/templates/service.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.service" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-python/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.serviceAccount" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-python/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/vscode-python/templates/statefulset.yaml -------------------------------------------------------------------------------- /charts/vscode-python/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.testConnection" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-python/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/vscode-python/values.schema.json -------------------------------------------------------------------------------- /charts/vscode-python/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/vscode-python/values.yaml -------------------------------------------------------------------------------- /charts/vscode-pytorch-gpu/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/vscode-pytorch-gpu/.helmignore -------------------------------------------------------------------------------- /charts/vscode-pytorch-gpu/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/vscode-pytorch-gpu/Chart.yaml -------------------------------------------------------------------------------- /charts/vscode-pytorch-gpu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/vscode-pytorch-gpu/README.md -------------------------------------------------------------------------------- /charts/vscode-pytorch-gpu/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/vscode-pytorch-gpu/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/vscode-pytorch-gpu/templates/configmap-repository.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.configMapRepository" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pytorch-gpu/templates/ingress-user.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.ingressUser" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pytorch-gpu/templates/ingress.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.ingress" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pytorch-gpu/templates/networkpolicy-ingress.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.networkPolicyIngress" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pytorch-gpu/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.networkPolicy" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pytorch-gpu/templates/pvc.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.persistentVolumeClaim" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pytorch-gpu/templates/role-binding-scc.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.roleBindingSCC" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pytorch-gpu/templates/role-binding.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.roleBinding" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pytorch-gpu/templates/route-user.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.routeUser" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pytorch-gpu/templates/route.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.route" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pytorch-gpu/templates/secret-assistant.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretAssistant" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pytorch-gpu/templates/secret-cacerts.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretCacerts" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pytorch-gpu/templates/secret-chromadb.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretChromaDB" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pytorch-gpu/templates/secret-extraenv.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretExtraEnv" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pytorch-gpu/templates/secret-git.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretGit" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pytorch-gpu/templates/secret-hive.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretHive" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pytorch-gpu/templates/secret-metaflow.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretMetaflow" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pytorch-gpu/templates/secret-milvus.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretMilvus" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pytorch-gpu/templates/secret-mlflow.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretMLFlow" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pytorch-gpu/templates/secret-postgresql.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretPostgreSQL" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pytorch-gpu/templates/secret-proxy.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretProxy" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pytorch-gpu/templates/secret-s3.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretS3" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pytorch-gpu/templates/secret-token.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretToken" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pytorch-gpu/templates/secret-vault.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretVault" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pytorch-gpu/templates/service.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.service" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pytorch-gpu/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.serviceAccount" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pytorch-gpu/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/vscode-pytorch-gpu/templates/statefulset.yaml -------------------------------------------------------------------------------- /charts/vscode-pytorch-gpu/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.testConnection" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pytorch-gpu/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/vscode-pytorch-gpu/values.schema.json -------------------------------------------------------------------------------- /charts/vscode-pytorch-gpu/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/vscode-pytorch-gpu/values.yaml -------------------------------------------------------------------------------- /charts/vscode-pytorch/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/vscode-pytorch/.helmignore -------------------------------------------------------------------------------- /charts/vscode-pytorch/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/vscode-pytorch/Chart.yaml -------------------------------------------------------------------------------- /charts/vscode-pytorch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/vscode-pytorch/README.md -------------------------------------------------------------------------------- /charts/vscode-pytorch/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/vscode-pytorch/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/vscode-pytorch/templates/configmap-repository.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.configMapRepository" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pytorch/templates/ingress-user.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.ingressUser" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pytorch/templates/ingress.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.ingress" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pytorch/templates/networkpolicy-ingress.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.networkPolicyIngress" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pytorch/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.networkPolicy" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pytorch/templates/pvc.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.persistentVolumeClaim" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pytorch/templates/role-binding-scc.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.roleBindingSCC" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pytorch/templates/role-binding.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.roleBinding" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pytorch/templates/route-user.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.routeUser" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pytorch/templates/route.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.route" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pytorch/templates/secret-assistant.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretAssistant" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pytorch/templates/secret-cacerts.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretCacerts" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pytorch/templates/secret-chromadb.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretChromaDB" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pytorch/templates/secret-extraenv.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretExtraEnv" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pytorch/templates/secret-git.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretGit" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pytorch/templates/secret-hive.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretHive" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pytorch/templates/secret-metaflow.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretMetaflow" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pytorch/templates/secret-milvus.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretMilvus" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pytorch/templates/secret-mlflow.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretMLFlow" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pytorch/templates/secret-postgresql.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretPostgreSQL" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pytorch/templates/secret-proxy.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretProxy" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pytorch/templates/secret-s3.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretS3" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pytorch/templates/secret-token.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretToken" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pytorch/templates/secret-vault.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretVault" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pytorch/templates/service.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.service" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pytorch/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.serviceAccount" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pytorch/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/vscode-pytorch/templates/statefulset.yaml -------------------------------------------------------------------------------- /charts/vscode-pytorch/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.testConnection" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-pytorch/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/vscode-pytorch/values.schema.json -------------------------------------------------------------------------------- /charts/vscode-pytorch/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/vscode-pytorch/values.yaml -------------------------------------------------------------------------------- /charts/vscode-r-python-julia/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/vscode-r-python-julia/.helmignore -------------------------------------------------------------------------------- /charts/vscode-r-python-julia/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/vscode-r-python-julia/Chart.yaml -------------------------------------------------------------------------------- /charts/vscode-r-python-julia/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/vscode-r-python-julia/README.md -------------------------------------------------------------------------------- /charts/vscode-r-python-julia/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/vscode-r-python-julia/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/vscode-r-python-julia/templates/configmap-repository.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.configMapRepository" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-r-python-julia/templates/ingress-user.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.ingressUser" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-r-python-julia/templates/ingress.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.ingress" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-r-python-julia/templates/networkpolicy-ingress.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.networkPolicyIngress" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-r-python-julia/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.networkPolicy" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-r-python-julia/templates/pvc.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.persistentVolumeClaim" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-r-python-julia/templates/role-binding-scc.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.roleBindingSCC" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-r-python-julia/templates/role-binding.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.roleBinding" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-r-python-julia/templates/route-user.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.routeUser" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-r-python-julia/templates/route.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.route" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-r-python-julia/templates/secret-assistant.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretAssistant" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-r-python-julia/templates/secret-cacerts.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretCacerts" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-r-python-julia/templates/secret-chromadb.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretChromaDB" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-r-python-julia/templates/secret-extraenv.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretExtraEnv" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-r-python-julia/templates/secret-git.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretGit" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-r-python-julia/templates/secret-hive.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretHive" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-r-python-julia/templates/secret-metaflow.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretMetaflow" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-r-python-julia/templates/secret-milvus.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretMilvus" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-r-python-julia/templates/secret-mlflow.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretMLFlow" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-r-python-julia/templates/secret-postgresql.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretPostgreSQL" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-r-python-julia/templates/secret-proxy.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretProxy" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-r-python-julia/templates/secret-s3.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretS3" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-r-python-julia/templates/secret-token.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretToken" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-r-python-julia/templates/secret-vault.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretVault" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-r-python-julia/templates/service.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.service" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-r-python-julia/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.serviceAccount" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-r-python-julia/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/vscode-r-python-julia/templates/statefulset.yaml -------------------------------------------------------------------------------- /charts/vscode-r-python-julia/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.testConnection" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-r-python-julia/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/vscode-r-python-julia/values.schema.json -------------------------------------------------------------------------------- /charts/vscode-r-python-julia/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/vscode-r-python-julia/values.yaml -------------------------------------------------------------------------------- /charts/vscode-tensorflow-gpu/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/vscode-tensorflow-gpu/.helmignore -------------------------------------------------------------------------------- /charts/vscode-tensorflow-gpu/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/vscode-tensorflow-gpu/Chart.yaml -------------------------------------------------------------------------------- /charts/vscode-tensorflow-gpu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/vscode-tensorflow-gpu/README.md -------------------------------------------------------------------------------- /charts/vscode-tensorflow-gpu/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/vscode-tensorflow-gpu/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/vscode-tensorflow-gpu/templates/configmap-repository.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.configMapRepository" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-tensorflow-gpu/templates/ingress-user.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.ingressUser" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-tensorflow-gpu/templates/ingress.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.ingress" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-tensorflow-gpu/templates/networkpolicy-ingress.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.networkPolicyIngress" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-tensorflow-gpu/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.networkPolicy" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-tensorflow-gpu/templates/pvc.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.persistentVolumeClaim" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-tensorflow-gpu/templates/role-binding-scc.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.roleBindingSCC" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-tensorflow-gpu/templates/role-binding.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.roleBinding" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-tensorflow-gpu/templates/route-user.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.routeUser" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-tensorflow-gpu/templates/route.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.route" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-tensorflow-gpu/templates/secret-assistant.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretAssistant" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-tensorflow-gpu/templates/secret-cacerts.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretCacerts" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-tensorflow-gpu/templates/secret-chromadb.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretChromaDB" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-tensorflow-gpu/templates/secret-extraenv.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretExtraEnv" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-tensorflow-gpu/templates/secret-git.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretGit" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-tensorflow-gpu/templates/secret-hive.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretHive" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-tensorflow-gpu/templates/secret-metaflow.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretMetaflow" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-tensorflow-gpu/templates/secret-milvus.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretMilvus" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-tensorflow-gpu/templates/secret-mlflow.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretMLFlow" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-tensorflow-gpu/templates/secret-postgresql.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretPostgreSQL" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-tensorflow-gpu/templates/secret-proxy.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretProxy" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-tensorflow-gpu/templates/secret-s3.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretS3" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-tensorflow-gpu/templates/secret-token.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretToken" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-tensorflow-gpu/templates/secret-vault.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretVault" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-tensorflow-gpu/templates/service.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.service" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-tensorflow-gpu/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.serviceAccount" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-tensorflow-gpu/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/vscode-tensorflow-gpu/templates/statefulset.yaml -------------------------------------------------------------------------------- /charts/vscode-tensorflow-gpu/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.testConnection" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-tensorflow-gpu/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/vscode-tensorflow-gpu/values.schema.json -------------------------------------------------------------------------------- /charts/vscode-tensorflow-gpu/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/vscode-tensorflow-gpu/values.yaml -------------------------------------------------------------------------------- /charts/vscode-tensorflow/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/vscode-tensorflow/.helmignore -------------------------------------------------------------------------------- /charts/vscode-tensorflow/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/vscode-tensorflow/Chart.yaml -------------------------------------------------------------------------------- /charts/vscode-tensorflow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/vscode-tensorflow/README.md -------------------------------------------------------------------------------- /charts/vscode-tensorflow/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/vscode-tensorflow/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/vscode-tensorflow/templates/configmap-repository.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.configMapRepository" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-tensorflow/templates/ingress-user.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.ingressUser" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-tensorflow/templates/ingress.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.ingress" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-tensorflow/templates/networkpolicy-ingress.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.networkPolicyIngress" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-tensorflow/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.networkPolicy" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-tensorflow/templates/pvc.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.persistentVolumeClaim" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-tensorflow/templates/role-binding-scc.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.roleBindingSCC" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-tensorflow/templates/role-binding.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.roleBinding" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-tensorflow/templates/route-user.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.routeUser" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-tensorflow/templates/route.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.route" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-tensorflow/templates/secret-assistant.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretAssistant" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-tensorflow/templates/secret-cacerts.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretCacerts" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-tensorflow/templates/secret-chromadb.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretChromaDB" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-tensorflow/templates/secret-extraenv.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretExtraEnv" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-tensorflow/templates/secret-git.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretGit" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-tensorflow/templates/secret-hive.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretHive" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-tensorflow/templates/secret-metaflow.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretMetaflow" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-tensorflow/templates/secret-milvus.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretMilvus" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-tensorflow/templates/secret-mlflow.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretMLFlow" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-tensorflow/templates/secret-postgresql.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretPostgreSQL" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-tensorflow/templates/secret-proxy.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretProxy" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-tensorflow/templates/secret-s3.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretS3" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-tensorflow/templates/secret-token.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretToken" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-tensorflow/templates/secret-vault.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.secretVault" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-tensorflow/templates/service.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.service" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-tensorflow/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.serviceAccount" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-tensorflow/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/vscode-tensorflow/templates/statefulset.yaml -------------------------------------------------------------------------------- /charts/vscode-tensorflow/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- 1 | {{ include "library-chart.testConnection" . }} 2 | -------------------------------------------------------------------------------- /charts/vscode-tensorflow/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/vscode-tensorflow/values.schema.json -------------------------------------------------------------------------------- /charts/vscode-tensorflow/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/charts/vscode-tensorflow/values.yaml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/renovate.json -------------------------------------------------------------------------------- /tests/deployment_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/tests/deployment_test.yaml -------------------------------------------------------------------------------- /tests/ingress_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/tests/ingress_test.yaml -------------------------------------------------------------------------------- /tests/route_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/tests/route_test.yaml -------------------------------------------------------------------------------- /utils/bump_all_charts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/utils/bump_all_charts.sh -------------------------------------------------------------------------------- /utils/charts-inheritance.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/utils/charts-inheritance.yaml -------------------------------------------------------------------------------- /utils/check_library_chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/utils/check_library_chart.py -------------------------------------------------------------------------------- /utils/generate-children-charts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/utils/generate-children-charts.py -------------------------------------------------------------------------------- /utils/jq_all_schemas.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/utils/jq_all_schemas.sh -------------------------------------------------------------------------------- /utils/prepull_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/utils/prepull_images.py -------------------------------------------------------------------------------- /utils/prepull_images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/utils/prepull_images.sh -------------------------------------------------------------------------------- /utils/prepull_template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/utils/prepull_template.yaml -------------------------------------------------------------------------------- /utils/unittestall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/helm-charts-interactive-services/HEAD/utils/unittestall.sh --------------------------------------------------------------------------------