├── .ansible-lint ├── .github ├── dependabot.yml ├── linters │ ├── .gitleaks.toml │ └── .markdown-lint.yml └── workflows │ ├── superlinter.yml │ └── update-metadata.yml ├── .gitignore ├── .gitleaks.toml ├── GPU_provisioning.md ├── LICENSE ├── Makefile ├── Makefile-common ├── README.md ├── TESTPLAN.md ├── ansible.cfg ├── ansible ├── playbooks │ ├── create-gpu-machineset-azure.yaml │ ├── create-gpu-machineset.yaml │ └── templates │ │ ├── gpu-machineset-azure.j2 │ │ └── gpu-machineset.j2 └── site.yaml ├── charts └── all │ ├── llm-monitoring-config │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ └── grafana-ui-link.yaml │ └── values.yaml │ ├── llm-monitoring │ └── kustomize │ │ ├── base │ │ ├── grafana │ │ │ ├── ai-llm-grafana.yaml │ │ │ ├── kustomization.yaml │ │ │ └── prometheus-datasource.yaml │ │ ├── grafanadashboard │ │ │ ├── ai-llm-dashboard.yaml │ │ │ └── kustomization.yaml │ │ ├── operators.coreos.com │ │ │ ├── operatorgroups │ │ │ │ └── prometheus │ │ │ │ │ ├── kustomization.yaml │ │ │ │ │ └── prometheus.yaml │ │ │ └── subscriptions │ │ │ │ ├── grafana │ │ │ │ ├── grafana.yaml │ │ │ │ └── kustomization.yaml │ │ │ │ └── prometheus │ │ │ │ ├── kustomization.yaml │ │ │ │ └── prometheus.yaml │ │ ├── prometheus │ │ │ ├── ai-llm-prometheus.yaml │ │ │ └── kustomization.yaml │ │ ├── rbac │ │ │ ├── clusterrole │ │ │ │ ├── ai-llm-monitoring-cr.yaml │ │ │ │ └── kustomization.yaml │ │ │ └── clusterrolebinding │ │ │ │ ├── ai-llm-monitoring-crb.yaml │ │ │ │ └── kustomization.yaml │ │ ├── routes │ │ │ ├── kustomization.yaml │ │ │ └── llm-ui.yaml │ │ └── servicemonitor │ │ │ ├── ai-llm-gradio.yaml │ │ │ ├── ai-llm-tgis.yaml │ │ │ └── kustomization.yaml │ │ └── overlays │ │ └── dev │ │ ├── kustomization.yaml │ │ └── namespaces │ │ ├── kustomization.yaml │ │ └── namespace.yaml │ ├── nfd-config │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ └── node-feature-discovery.yaml │ └── values.yaml │ ├── nvidia-gpu-config │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ └── nvidia-cluster-policy-config.yaml │ └── values.yaml │ ├── rag-llm-ui-config │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ └── llm-ui-link.yaml │ └── values.yaml │ ├── rag-llm │ ├── .helmignore │ ├── Chart.yaml │ ├── charts │ │ ├── azure-sql │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ └── external-secret.yaml │ │ │ └── values.yaml │ │ ├── edb │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── cluster.yaml │ │ │ │ ├── postgres-rb.yaml │ │ │ │ ├── postgres-service-account.yaml │ │ │ │ └── postgres-service-role.yaml │ │ │ └── values.yaml │ │ ├── elastic │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── _helpers.tpl │ │ │ │ └── elasticsearch.yaml │ │ │ └── values.yaml │ │ ├── mssql │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── deployment.yaml │ │ │ │ ├── external-secret.yaml │ │ │ │ ├── mssqlconfig.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ └── service.yaml │ │ │ └── values.yaml │ │ └── redis-stack-server │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ ├── deployment.yaml │ │ │ ├── pvc.yaml │ │ │ └── service.yaml │ │ │ └── values.yaml │ ├── files │ │ ├── config.yaml │ │ └── redis_schema.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── allow-from-all-ns-networkpolicy.yaml │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── external-secret.yaml │ │ ├── hpa.yaml │ │ ├── populate-vectordb-job.yaml │ │ ├── route.yaml │ │ ├── service.yaml │ │ └── serviceaccount.yaml │ └── values.yaml │ ├── rhods │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ └── dsc.yaml │ └── values.yaml │ └── vllm-inference-service │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ ├── _helpers.tpl │ ├── accelerator-profile.yaml │ ├── inference-service.yaml │ ├── route.yaml │ └── serving-runtime.yaml │ └── values.yaml ├── images ├── add_provider.png ├── application.png ├── chatgpt.png ├── diagram.png ├── gpt_response.png ├── launch-application.png ├── launch-grafana.png ├── monitoring.png ├── node-feature-discovery.png ├── nodes.png ├── proposal.png ├── rag-llm-pgvector.png ├── rag-llm.png └── routes.png ├── overrides └── values-Azure.yaml ├── pattern-metadata.yaml ├── pattern.sh ├── tests ├── all-config-demo.expected.diff ├── common-acm.expected.diff ├── common-clustergroup.expected.diff ├── common-examples-blank.expected.diff ├── common-examples-kustomize-renderer.expected.diff ├── common-golang-external-secrets.expected.diff ├── common-hashicorp-vault.expected.diff ├── common-install.expected.diff ├── common-operator-install.expected.diff └── interop │ ├── __init__.py │ ├── conftest.py │ ├── test_subscription_status_hub.py │ ├── test_validate_gpu_nodes.py │ └── test_validate_hub_site_components.py ├── values-global.yaml ├── values-hub.yaml └── values-secret.yaml.template /.ansible-lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/.ansible-lint -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/linters/.gitleaks.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/.github/linters/.gitleaks.toml -------------------------------------------------------------------------------- /.github/linters/.markdown-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/.github/linters/.markdown-lint.yml -------------------------------------------------------------------------------- /.github/workflows/superlinter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/.github/workflows/superlinter.yml -------------------------------------------------------------------------------- /.github/workflows/update-metadata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/.github/workflows/update-metadata.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitleaks.toml: -------------------------------------------------------------------------------- 1 | .github/linters/.gitleaks.toml -------------------------------------------------------------------------------- /GPU_provisioning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/GPU_provisioning.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile-common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/Makefile-common -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/README.md -------------------------------------------------------------------------------- /TESTPLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/TESTPLAN.md -------------------------------------------------------------------------------- /ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/ansible.cfg -------------------------------------------------------------------------------- /ansible/playbooks/create-gpu-machineset-azure.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/ansible/playbooks/create-gpu-machineset-azure.yaml -------------------------------------------------------------------------------- /ansible/playbooks/create-gpu-machineset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/ansible/playbooks/create-gpu-machineset.yaml -------------------------------------------------------------------------------- /ansible/playbooks/templates/gpu-machineset-azure.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/ansible/playbooks/templates/gpu-machineset-azure.j2 -------------------------------------------------------------------------------- /ansible/playbooks/templates/gpu-machineset.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/ansible/playbooks/templates/gpu-machineset.j2 -------------------------------------------------------------------------------- /ansible/site.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/ansible/site.yaml -------------------------------------------------------------------------------- /charts/all/llm-monitoring-config/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/llm-monitoring-config/.helmignore -------------------------------------------------------------------------------- /charts/all/llm-monitoring-config/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/llm-monitoring-config/Chart.yaml -------------------------------------------------------------------------------- /charts/all/llm-monitoring-config/templates/grafana-ui-link.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/llm-monitoring-config/templates/grafana-ui-link.yaml -------------------------------------------------------------------------------- /charts/all/llm-monitoring-config/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/llm-monitoring-config/values.yaml -------------------------------------------------------------------------------- /charts/all/llm-monitoring/kustomize/base/grafana/ai-llm-grafana.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/llm-monitoring/kustomize/base/grafana/ai-llm-grafana.yaml -------------------------------------------------------------------------------- /charts/all/llm-monitoring/kustomize/base/grafana/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/llm-monitoring/kustomize/base/grafana/kustomization.yaml -------------------------------------------------------------------------------- /charts/all/llm-monitoring/kustomize/base/grafana/prometheus-datasource.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/llm-monitoring/kustomize/base/grafana/prometheus-datasource.yaml -------------------------------------------------------------------------------- /charts/all/llm-monitoring/kustomize/base/grafanadashboard/ai-llm-dashboard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/llm-monitoring/kustomize/base/grafanadashboard/ai-llm-dashboard.yaml -------------------------------------------------------------------------------- /charts/all/llm-monitoring/kustomize/base/grafanadashboard/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/llm-monitoring/kustomize/base/grafanadashboard/kustomization.yaml -------------------------------------------------------------------------------- /charts/all/llm-monitoring/kustomize/base/operators.coreos.com/operatorgroups/prometheus/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/llm-monitoring/kustomize/base/operators.coreos.com/operatorgroups/prometheus/kustomization.yaml -------------------------------------------------------------------------------- /charts/all/llm-monitoring/kustomize/base/operators.coreos.com/operatorgroups/prometheus/prometheus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/llm-monitoring/kustomize/base/operators.coreos.com/operatorgroups/prometheus/prometheus.yaml -------------------------------------------------------------------------------- /charts/all/llm-monitoring/kustomize/base/operators.coreos.com/subscriptions/grafana/grafana.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/llm-monitoring/kustomize/base/operators.coreos.com/subscriptions/grafana/grafana.yaml -------------------------------------------------------------------------------- /charts/all/llm-monitoring/kustomize/base/operators.coreos.com/subscriptions/grafana/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/llm-monitoring/kustomize/base/operators.coreos.com/subscriptions/grafana/kustomization.yaml -------------------------------------------------------------------------------- /charts/all/llm-monitoring/kustomize/base/operators.coreos.com/subscriptions/prometheus/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/llm-monitoring/kustomize/base/operators.coreos.com/subscriptions/prometheus/kustomization.yaml -------------------------------------------------------------------------------- /charts/all/llm-monitoring/kustomize/base/operators.coreos.com/subscriptions/prometheus/prometheus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/llm-monitoring/kustomize/base/operators.coreos.com/subscriptions/prometheus/prometheus.yaml -------------------------------------------------------------------------------- /charts/all/llm-monitoring/kustomize/base/prometheus/ai-llm-prometheus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/llm-monitoring/kustomize/base/prometheus/ai-llm-prometheus.yaml -------------------------------------------------------------------------------- /charts/all/llm-monitoring/kustomize/base/prometheus/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/llm-monitoring/kustomize/base/prometheus/kustomization.yaml -------------------------------------------------------------------------------- /charts/all/llm-monitoring/kustomize/base/rbac/clusterrole/ai-llm-monitoring-cr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/llm-monitoring/kustomize/base/rbac/clusterrole/ai-llm-monitoring-cr.yaml -------------------------------------------------------------------------------- /charts/all/llm-monitoring/kustomize/base/rbac/clusterrole/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/llm-monitoring/kustomize/base/rbac/clusterrole/kustomization.yaml -------------------------------------------------------------------------------- /charts/all/llm-monitoring/kustomize/base/rbac/clusterrolebinding/ai-llm-monitoring-crb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/llm-monitoring/kustomize/base/rbac/clusterrolebinding/ai-llm-monitoring-crb.yaml -------------------------------------------------------------------------------- /charts/all/llm-monitoring/kustomize/base/rbac/clusterrolebinding/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/llm-monitoring/kustomize/base/rbac/clusterrolebinding/kustomization.yaml -------------------------------------------------------------------------------- /charts/all/llm-monitoring/kustomize/base/routes/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/llm-monitoring/kustomize/base/routes/kustomization.yaml -------------------------------------------------------------------------------- /charts/all/llm-monitoring/kustomize/base/routes/llm-ui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/llm-monitoring/kustomize/base/routes/llm-ui.yaml -------------------------------------------------------------------------------- /charts/all/llm-monitoring/kustomize/base/servicemonitor/ai-llm-gradio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/llm-monitoring/kustomize/base/servicemonitor/ai-llm-gradio.yaml -------------------------------------------------------------------------------- /charts/all/llm-monitoring/kustomize/base/servicemonitor/ai-llm-tgis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/llm-monitoring/kustomize/base/servicemonitor/ai-llm-tgis.yaml -------------------------------------------------------------------------------- /charts/all/llm-monitoring/kustomize/base/servicemonitor/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/llm-monitoring/kustomize/base/servicemonitor/kustomization.yaml -------------------------------------------------------------------------------- /charts/all/llm-monitoring/kustomize/overlays/dev/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/llm-monitoring/kustomize/overlays/dev/kustomization.yaml -------------------------------------------------------------------------------- /charts/all/llm-monitoring/kustomize/overlays/dev/namespaces/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/llm-monitoring/kustomize/overlays/dev/namespaces/kustomization.yaml -------------------------------------------------------------------------------- /charts/all/llm-monitoring/kustomize/overlays/dev/namespaces/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/llm-monitoring/kustomize/overlays/dev/namespaces/namespace.yaml -------------------------------------------------------------------------------- /charts/all/nfd-config/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/nfd-config/.helmignore -------------------------------------------------------------------------------- /charts/all/nfd-config/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/nfd-config/Chart.yaml -------------------------------------------------------------------------------- /charts/all/nfd-config/templates/node-feature-discovery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/nfd-config/templates/node-feature-discovery.yaml -------------------------------------------------------------------------------- /charts/all/nfd-config/values.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/all/nvidia-gpu-config/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/nvidia-gpu-config/.helmignore -------------------------------------------------------------------------------- /charts/all/nvidia-gpu-config/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/nvidia-gpu-config/Chart.yaml -------------------------------------------------------------------------------- /charts/all/nvidia-gpu-config/templates/nvidia-cluster-policy-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/nvidia-gpu-config/templates/nvidia-cluster-policy-config.yaml -------------------------------------------------------------------------------- /charts/all/nvidia-gpu-config/values.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/all/rag-llm-ui-config/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/rag-llm-ui-config/.helmignore -------------------------------------------------------------------------------- /charts/all/rag-llm-ui-config/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/rag-llm-ui-config/Chart.yaml -------------------------------------------------------------------------------- /charts/all/rag-llm-ui-config/templates/llm-ui-link.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/rag-llm-ui-config/templates/llm-ui-link.yaml -------------------------------------------------------------------------------- /charts/all/rag-llm-ui-config/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/rag-llm-ui-config/values.yaml -------------------------------------------------------------------------------- /charts/all/rag-llm/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/rag-llm/.helmignore -------------------------------------------------------------------------------- /charts/all/rag-llm/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/rag-llm/Chart.yaml -------------------------------------------------------------------------------- /charts/all/rag-llm/charts/azure-sql/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/rag-llm/charts/azure-sql/Chart.yaml -------------------------------------------------------------------------------- /charts/all/rag-llm/charts/azure-sql/templates/external-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/rag-llm/charts/azure-sql/templates/external-secret.yaml -------------------------------------------------------------------------------- /charts/all/rag-llm/charts/azure-sql/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/rag-llm/charts/azure-sql/values.yaml -------------------------------------------------------------------------------- /charts/all/rag-llm/charts/edb/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/rag-llm/charts/edb/.helmignore -------------------------------------------------------------------------------- /charts/all/rag-llm/charts/edb/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/rag-llm/charts/edb/Chart.yaml -------------------------------------------------------------------------------- /charts/all/rag-llm/charts/edb/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/rag-llm/charts/edb/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/all/rag-llm/charts/edb/templates/cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/rag-llm/charts/edb/templates/cluster.yaml -------------------------------------------------------------------------------- /charts/all/rag-llm/charts/edb/templates/postgres-rb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/rag-llm/charts/edb/templates/postgres-rb.yaml -------------------------------------------------------------------------------- /charts/all/rag-llm/charts/edb/templates/postgres-service-account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/rag-llm/charts/edb/templates/postgres-service-account.yaml -------------------------------------------------------------------------------- /charts/all/rag-llm/charts/edb/templates/postgres-service-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/rag-llm/charts/edb/templates/postgres-service-role.yaml -------------------------------------------------------------------------------- /charts/all/rag-llm/charts/edb/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/rag-llm/charts/edb/values.yaml -------------------------------------------------------------------------------- /charts/all/rag-llm/charts/elastic/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/rag-llm/charts/elastic/.helmignore -------------------------------------------------------------------------------- /charts/all/rag-llm/charts/elastic/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/rag-llm/charts/elastic/Chart.yaml -------------------------------------------------------------------------------- /charts/all/rag-llm/charts/elastic/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/rag-llm/charts/elastic/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/all/rag-llm/charts/elastic/templates/elasticsearch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/rag-llm/charts/elastic/templates/elasticsearch.yaml -------------------------------------------------------------------------------- /charts/all/rag-llm/charts/elastic/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/rag-llm/charts/elastic/values.yaml -------------------------------------------------------------------------------- /charts/all/rag-llm/charts/mssql/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/rag-llm/charts/mssql/Chart.yaml -------------------------------------------------------------------------------- /charts/all/rag-llm/charts/mssql/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/rag-llm/charts/mssql/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/all/rag-llm/charts/mssql/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/rag-llm/charts/mssql/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/all/rag-llm/charts/mssql/templates/external-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/rag-llm/charts/mssql/templates/external-secret.yaml -------------------------------------------------------------------------------- /charts/all/rag-llm/charts/mssql/templates/mssqlconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/rag-llm/charts/mssql/templates/mssqlconfig.yaml -------------------------------------------------------------------------------- /charts/all/rag-llm/charts/mssql/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/rag-llm/charts/mssql/templates/pvc.yaml -------------------------------------------------------------------------------- /charts/all/rag-llm/charts/mssql/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/rag-llm/charts/mssql/templates/service.yaml -------------------------------------------------------------------------------- /charts/all/rag-llm/charts/mssql/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/rag-llm/charts/mssql/values.yaml -------------------------------------------------------------------------------- /charts/all/rag-llm/charts/redis-stack-server/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/rag-llm/charts/redis-stack-server/.helmignore -------------------------------------------------------------------------------- /charts/all/rag-llm/charts/redis-stack-server/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/rag-llm/charts/redis-stack-server/Chart.yaml -------------------------------------------------------------------------------- /charts/all/rag-llm/charts/redis-stack-server/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/rag-llm/charts/redis-stack-server/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/all/rag-llm/charts/redis-stack-server/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/rag-llm/charts/redis-stack-server/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/all/rag-llm/charts/redis-stack-server/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/rag-llm/charts/redis-stack-server/templates/pvc.yaml -------------------------------------------------------------------------------- /charts/all/rag-llm/charts/redis-stack-server/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/rag-llm/charts/redis-stack-server/templates/service.yaml -------------------------------------------------------------------------------- /charts/all/rag-llm/charts/redis-stack-server/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/rag-llm/charts/redis-stack-server/values.yaml -------------------------------------------------------------------------------- /charts/all/rag-llm/files/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/rag-llm/files/config.yaml -------------------------------------------------------------------------------- /charts/all/rag-llm/files/redis_schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/rag-llm/files/redis_schema.yaml -------------------------------------------------------------------------------- /charts/all/rag-llm/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/rag-llm/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/all/rag-llm/templates/allow-from-all-ns-networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/rag-llm/templates/allow-from-all-ns-networkpolicy.yaml -------------------------------------------------------------------------------- /charts/all/rag-llm/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/rag-llm/templates/configmap.yaml -------------------------------------------------------------------------------- /charts/all/rag-llm/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/rag-llm/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/all/rag-llm/templates/external-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/rag-llm/templates/external-secret.yaml -------------------------------------------------------------------------------- /charts/all/rag-llm/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/rag-llm/templates/hpa.yaml -------------------------------------------------------------------------------- /charts/all/rag-llm/templates/populate-vectordb-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/rag-llm/templates/populate-vectordb-job.yaml -------------------------------------------------------------------------------- /charts/all/rag-llm/templates/route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/rag-llm/templates/route.yaml -------------------------------------------------------------------------------- /charts/all/rag-llm/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/rag-llm/templates/service.yaml -------------------------------------------------------------------------------- /charts/all/rag-llm/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/rag-llm/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/all/rag-llm/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/rag-llm/values.yaml -------------------------------------------------------------------------------- /charts/all/rhods/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/rhods/.helmignore -------------------------------------------------------------------------------- /charts/all/rhods/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/rhods/Chart.yaml -------------------------------------------------------------------------------- /charts/all/rhods/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/rhods/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/all/rhods/templates/dsc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/rhods/templates/dsc.yaml -------------------------------------------------------------------------------- /charts/all/rhods/values.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/all/vllm-inference-service/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/vllm-inference-service/.helmignore -------------------------------------------------------------------------------- /charts/all/vllm-inference-service/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/vllm-inference-service/Chart.yaml -------------------------------------------------------------------------------- /charts/all/vllm-inference-service/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/vllm-inference-service/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/all/vllm-inference-service/templates/accelerator-profile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/vllm-inference-service/templates/accelerator-profile.yaml -------------------------------------------------------------------------------- /charts/all/vllm-inference-service/templates/inference-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/vllm-inference-service/templates/inference-service.yaml -------------------------------------------------------------------------------- /charts/all/vllm-inference-service/templates/route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/vllm-inference-service/templates/route.yaml -------------------------------------------------------------------------------- /charts/all/vllm-inference-service/templates/serving-runtime.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/vllm-inference-service/templates/serving-runtime.yaml -------------------------------------------------------------------------------- /charts/all/vllm-inference-service/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/charts/all/vllm-inference-service/values.yaml -------------------------------------------------------------------------------- /images/add_provider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/images/add_provider.png -------------------------------------------------------------------------------- /images/application.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/images/application.png -------------------------------------------------------------------------------- /images/chatgpt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/images/chatgpt.png -------------------------------------------------------------------------------- /images/diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/images/diagram.png -------------------------------------------------------------------------------- /images/gpt_response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/images/gpt_response.png -------------------------------------------------------------------------------- /images/launch-application.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/images/launch-application.png -------------------------------------------------------------------------------- /images/launch-grafana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/images/launch-grafana.png -------------------------------------------------------------------------------- /images/monitoring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/images/monitoring.png -------------------------------------------------------------------------------- /images/node-feature-discovery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/images/node-feature-discovery.png -------------------------------------------------------------------------------- /images/nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/images/nodes.png -------------------------------------------------------------------------------- /images/proposal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/images/proposal.png -------------------------------------------------------------------------------- /images/rag-llm-pgvector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/images/rag-llm-pgvector.png -------------------------------------------------------------------------------- /images/rag-llm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/images/rag-llm.png -------------------------------------------------------------------------------- /images/routes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/images/routes.png -------------------------------------------------------------------------------- /overrides/values-Azure.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/overrides/values-Azure.yaml -------------------------------------------------------------------------------- /pattern-metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/pattern-metadata.yaml -------------------------------------------------------------------------------- /pattern.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/pattern.sh -------------------------------------------------------------------------------- /tests/all-config-demo.expected.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/tests/all-config-demo.expected.diff -------------------------------------------------------------------------------- /tests/common-acm.expected.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/tests/common-acm.expected.diff -------------------------------------------------------------------------------- /tests/common-clustergroup.expected.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/tests/common-clustergroup.expected.diff -------------------------------------------------------------------------------- /tests/common-examples-blank.expected.diff: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/common-examples-kustomize-renderer.expected.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/tests/common-examples-kustomize-renderer.expected.diff -------------------------------------------------------------------------------- /tests/common-golang-external-secrets.expected.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/tests/common-golang-external-secrets.expected.diff -------------------------------------------------------------------------------- /tests/common-hashicorp-vault.expected.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/tests/common-hashicorp-vault.expected.diff -------------------------------------------------------------------------------- /tests/common-install.expected.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/tests/common-install.expected.diff -------------------------------------------------------------------------------- /tests/common-operator-install.expected.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/tests/common-operator-install.expected.diff -------------------------------------------------------------------------------- /tests/interop/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/tests/interop/__init__.py -------------------------------------------------------------------------------- /tests/interop/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/tests/interop/conftest.py -------------------------------------------------------------------------------- /tests/interop/test_subscription_status_hub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/tests/interop/test_subscription_status_hub.py -------------------------------------------------------------------------------- /tests/interop/test_validate_gpu_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/tests/interop/test_validate_gpu_nodes.py -------------------------------------------------------------------------------- /tests/interop/test_validate_hub_site_components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/tests/interop/test_validate_hub_site_components.py -------------------------------------------------------------------------------- /values-global.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/values-global.yaml -------------------------------------------------------------------------------- /values-hub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/values-hub.yaml -------------------------------------------------------------------------------- /values-secret.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/validatedpatterns/rag-llm-gitops/HEAD/values-secret.yaml.template --------------------------------------------------------------------------------