├── .env.example ├── .gitignore ├── Dockerfile ├── Jenkinsfile ├── README.md ├── app ├── constants.py ├── main.py └── utils.py ├── custom_images └── jenkins │ ├── Dockerfile │ └── docker-compose.yaml ├── helm ├── nginx-ingress │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── crds │ │ ├── appprotect.f5.com_aplogconfs.yaml │ │ ├── appprotect.f5.com_appolicies.yaml │ │ ├── appprotect.f5.com_apusersigs.yaml │ │ ├── appprotectdos.f5.com_apdoslogconfs.yaml │ │ ├── appprotectdos.f5.com_apdospolicy.yaml │ │ ├── appprotectdos.f5.com_dosprotectedresources.yaml │ │ ├── externaldns.nginx.org_dnsendpoints.yaml │ │ ├── k8s.nginx.org_globalconfigurations.yaml │ │ ├── k8s.nginx.org_policies.yaml │ │ ├── k8s.nginx.org_transportservers.yaml │ │ ├── k8s.nginx.org_virtualserverroutes.yaml │ │ └── k8s.nginx.org_virtualservers.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── controller-configmap.yaml │ │ ├── controller-daemonset.yaml │ │ ├── controller-deployment.yaml │ │ ├── controller-globalconfiguration.yaml │ │ ├── controller-hpa.yaml │ │ ├── controller-ingress-class.yaml │ │ ├── controller-leader-election-configmap.yaml │ │ ├── controller-pdb.yaml │ │ ├── controller-secret.yaml │ │ ├── controller-service.yaml │ │ ├── controller-serviceaccount.yaml │ │ ├── controller-servicemonitor.yaml │ │ ├── controller-wildcard-secret.yaml │ │ └── rbac.yaml │ ├── values-icp.yaml │ ├── values-nsm.yaml │ ├── values-plus.yaml │ ├── values.schema.json │ └── values.yaml └── quote_gen_chart │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ ├── deployment.yaml │ ├── nginx-ingress.yaml │ └── service.yaml │ └── values.yaml ├── iac ├── ansible │ ├── deploy_jenkins │ │ ├── create_compute_instance.yaml │ │ └── deploy_jenkins.yaml │ ├── inventory │ └── vm_requirements.txt └── terraform │ ├── main.tf │ └── variables.tf ├── images ├── ans-1.png ├── ans-2.png ├── ans-3.png ├── ans-4.png ├── api_1.png ├── dis-1.png ├── gke-1.gif ├── gke-2.png ├── gke-3.gif ├── gke-4.gif ├── gke-4.png ├── gke-5.png ├── graf-1.png ├── graf-2.png ├── graf-3.png ├── graf-4.png ├── jaeger-1.png ├── jaeger-2.png ├── jenkins-1.png ├── jenkins-10.png ├── jenkins-11.png ├── jenkins-12.png ├── jenkins-13.png ├── jenkins-2.png ├── jenkins-3.png ├── jenkins-4.png ├── jenkins-6.png ├── jenkins-7.png ├── jenkins-8.png ├── jenkins-9.png ├── jenskin-5.png ├── kibana-1.png ├── kibana-2.png ├── runpod_1.png ├── runpod_2.png ├── runpod_3.png ├── system.png ├── wandb-eval.png ├── wandb-training.png ├── webhook-1.png ├── webhook-2.png └── webhook-3.gif ├── observability ├── elasticcloud │ └── deploy │ │ ├── README.md │ │ ├── eck-operator │ │ ├── crds.yaml │ │ └── operator.yaml │ │ ├── eck-stack │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── charts │ │ │ ├── eck-beats │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── examples │ │ │ │ │ └── filebeat_no_autodiscover.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── beats.yaml │ │ │ │ │ ├── cluster-role-binding.yaml │ │ │ │ │ ├── cluster-role.yaml │ │ │ │ │ ├── service-account.yaml │ │ │ │ │ └── tests │ │ │ │ │ │ ├── beats-auditbeat-example_test.yaml │ │ │ │ │ │ ├── beats-filebeat-example_test.yaml │ │ │ │ │ │ ├── beats-heartbeat-example_test.yaml │ │ │ │ │ │ ├── beats-metricbeat-example_test.yaml │ │ │ │ │ │ ├── beats-packetbeat-example_test.yaml │ │ │ │ │ │ └── beats_test.yaml │ │ │ │ └── values.yaml │ │ │ ├── eck-elasticsearch │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── examples │ │ │ │ │ ├── hot-warm-cold.yaml │ │ │ │ │ └── ingress │ │ │ │ │ │ ├── elasticsearch-ingress-aks.yaml │ │ │ │ │ │ ├── elasticsearch-ingress-eks-alb.yaml │ │ │ │ │ │ ├── elasticsearch-ingress-eks-nlb.yaml │ │ │ │ │ │ └── elasticsearch-ingress-gke.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── elasticsearch.yaml │ │ │ │ │ ├── ingress.yaml │ │ │ │ │ └── tests │ │ │ │ │ │ ├── elasticsearch_test.yaml │ │ │ │ │ │ └── ingress_test.yaml │ │ │ │ └── values.yaml │ │ │ └── eck-kibana │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── examples │ │ │ │ ├── http-configuration.yaml │ │ │ │ └── ingress │ │ │ │ │ └── kibana-gke.yaml │ │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── ingress.yaml │ │ │ │ ├── kibana.yaml │ │ │ │ └── tests │ │ │ │ │ ├── ingress_test.yaml │ │ │ │ │ └── kibana_test.yaml │ │ │ │ └── values.yaml │ │ ├── kkk.ym │ │ ├── run.sh │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ └── tests │ │ │ │ ├── beats_test.yaml │ │ │ │ ├── elastic-agent_test.yaml │ │ │ │ ├── elasticsearch_test.yaml │ │ │ │ └── kibana_test.yaml │ │ └── values.yaml │ │ └── helm-migrate.sh ├── inotify │ └── inotify-limits.yaml ├── jaeger │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── charts │ │ ├── cassandra │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── sample │ │ │ │ └── create-storage-gce.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── backup │ │ │ │ │ ├── cronjob.yaml │ │ │ │ │ └── rbac.yaml │ │ │ │ ├── configmap.yaml │ │ │ │ ├── pdb.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── servicemonitor.yaml │ │ │ │ └── statefulset.yaml │ │ │ └── values.yaml │ │ ├── common │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ │ ├── _affinities.tpl │ │ │ │ ├── _capabilities.tpl │ │ │ │ ├── _compatibility.tpl │ │ │ │ ├── _errors.tpl │ │ │ │ ├── _images.tpl │ │ │ │ ├── _ingress.tpl │ │ │ │ ├── _labels.tpl │ │ │ │ ├── _names.tpl │ │ │ │ ├── _resources.tpl │ │ │ │ ├── _secrets.tpl │ │ │ │ ├── _storage.tpl │ │ │ │ ├── _tplvalues.tpl │ │ │ │ ├── _utils.tpl │ │ │ │ ├── _warnings.tpl │ │ │ │ └── validations │ │ │ │ │ ├── _cassandra.tpl │ │ │ │ │ ├── _mariadb.tpl │ │ │ │ │ ├── _mongodb.tpl │ │ │ │ │ ├── _mysql.tpl │ │ │ │ │ ├── _postgresql.tpl │ │ │ │ │ ├── _redis.tpl │ │ │ │ │ └── _validations.tpl │ │ │ └── values.yaml │ │ ├── elasticsearch │ │ │ ├── .helmignore │ │ │ ├── Chart.lock │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── charts │ │ │ │ ├── common │ │ │ │ │ ├── .helmignore │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── README.md │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── _affinities.tpl │ │ │ │ │ │ ├── _capabilities.tpl │ │ │ │ │ │ ├── _compatibility.tpl │ │ │ │ │ │ ├── _errors.tpl │ │ │ │ │ │ ├── _images.tpl │ │ │ │ │ │ ├── _ingress.tpl │ │ │ │ │ │ ├── _labels.tpl │ │ │ │ │ │ ├── _names.tpl │ │ │ │ │ │ ├── _resources.tpl │ │ │ │ │ │ ├── _secrets.tpl │ │ │ │ │ │ ├── _storage.tpl │ │ │ │ │ │ ├── _tplvalues.tpl │ │ │ │ │ │ ├── _utils.tpl │ │ │ │ │ │ ├── _warnings.tpl │ │ │ │ │ │ └── validations │ │ │ │ │ │ │ ├── _cassandra.tpl │ │ │ │ │ │ │ ├── _mariadb.tpl │ │ │ │ │ │ │ ├── _mongodb.tpl │ │ │ │ │ │ │ ├── _mysql.tpl │ │ │ │ │ │ │ ├── _postgresql.tpl │ │ │ │ │ │ │ ├── _redis.tpl │ │ │ │ │ │ │ └── _validations.tpl │ │ │ │ │ └── values.yaml │ │ │ │ └── kibana │ │ │ │ │ ├── .helmignore │ │ │ │ │ ├── Chart.lock │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── README.md │ │ │ │ │ ├── charts │ │ │ │ │ └── common │ │ │ │ │ │ ├── .helmignore │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── _affinities.tpl │ │ │ │ │ │ ├── _capabilities.tpl │ │ │ │ │ │ ├── _compatibility.tpl │ │ │ │ │ │ ├── _errors.tpl │ │ │ │ │ │ ├── _images.tpl │ │ │ │ │ │ ├── _ingress.tpl │ │ │ │ │ │ ├── _labels.tpl │ │ │ │ │ │ ├── _names.tpl │ │ │ │ │ │ ├── _resources.tpl │ │ │ │ │ │ ├── _secrets.tpl │ │ │ │ │ │ ├── _storage.tpl │ │ │ │ │ │ ├── _tplvalues.tpl │ │ │ │ │ │ ├── _utils.tpl │ │ │ │ │ │ ├── _warnings.tpl │ │ │ │ │ │ └── validations │ │ │ │ │ │ │ ├── _cassandra.tpl │ │ │ │ │ │ │ ├── _mariadb.tpl │ │ │ │ │ │ │ ├── _mongodb.tpl │ │ │ │ │ │ │ ├── _mysql.tpl │ │ │ │ │ │ │ ├── _postgresql.tpl │ │ │ │ │ │ │ ├── _redis.tpl │ │ │ │ │ │ │ └── _validations.tpl │ │ │ │ │ │ └── values.yaml │ │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── extra-list.yaml │ │ │ │ │ ├── ingress.yaml │ │ │ │ │ ├── networkpolicy.yaml │ │ │ │ │ ├── plugins-configmap.yaml │ │ │ │ │ ├── pvc.yaml │ │ │ │ │ ├── saved-objects-configmap.yaml │ │ │ │ │ ├── secret.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ ├── servicemonitor.yaml │ │ │ │ │ └── tls-secret.yaml │ │ │ │ │ └── values.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── configmap.yaml │ │ │ │ ├── coordinating │ │ │ │ │ ├── hpa.yaml │ │ │ │ │ ├── networkpolicy.yaml │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ ├── statefulset.yaml │ │ │ │ │ └── svc-headless.yaml │ │ │ │ ├── data │ │ │ │ │ ├── hpa.yaml │ │ │ │ │ ├── networkpolicy.yaml │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ ├── statefulset.yaml │ │ │ │ │ └── svc-headless.yaml │ │ │ │ ├── extra-list.yaml │ │ │ │ ├── ingest │ │ │ │ │ ├── hpa.yaml │ │ │ │ │ ├── ingress.yaml │ │ │ │ │ ├── networkpolicy.yaml │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ ├── statefulset.yaml │ │ │ │ │ └── svc-headless.yaml │ │ │ │ ├── ingress-tls-secrets.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── initialization-configmap.yaml │ │ │ │ ├── master │ │ │ │ │ ├── hpa.yaml │ │ │ │ │ ├── networkpolicy.yaml │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ ├── statefulset.yaml │ │ │ │ │ └── svc-headless.yaml │ │ │ │ ├── metrics │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── networkpolicy.yaml │ │ │ │ │ ├── prometheusrule.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ └── servicemonitor.yaml │ │ │ │ ├── secrets.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── tls-secret.yaml │ │ │ └── values.yaml │ │ └── kafka │ │ │ ├── .helmignore │ │ │ ├── Chart.lock │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── charts │ │ │ ├── common │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── README.md │ │ │ │ ├── templates │ │ │ │ │ ├── _affinities.tpl │ │ │ │ │ ├── _capabilities.tpl │ │ │ │ │ ├── _errors.tpl │ │ │ │ │ ├── _images.tpl │ │ │ │ │ ├── _ingress.tpl │ │ │ │ │ ├── _labels.tpl │ │ │ │ │ ├── _names.tpl │ │ │ │ │ ├── _secrets.tpl │ │ │ │ │ ├── _storage.tpl │ │ │ │ │ ├── _tplvalues.tpl │ │ │ │ │ ├── _utils.tpl │ │ │ │ │ ├── _warnings.tpl │ │ │ │ │ └── validations │ │ │ │ │ │ ├── _cassandra.tpl │ │ │ │ │ │ ├── _mariadb.tpl │ │ │ │ │ │ ├── _mongodb.tpl │ │ │ │ │ │ ├── _mysql.tpl │ │ │ │ │ │ ├── _postgresql.tpl │ │ │ │ │ │ ├── _redis.tpl │ │ │ │ │ │ └── _validations.tpl │ │ │ │ └── values.yaml │ │ │ └── zookeeper │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.lock │ │ │ │ ├── Chart.yaml │ │ │ │ ├── README.md │ │ │ │ ├── charts │ │ │ │ └── common │ │ │ │ │ ├── .helmignore │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── README.md │ │ │ │ │ ├── templates │ │ │ │ │ ├── _affinities.tpl │ │ │ │ │ ├── _capabilities.tpl │ │ │ │ │ ├── _errors.tpl │ │ │ │ │ ├── _images.tpl │ │ │ │ │ ├── _ingress.tpl │ │ │ │ │ ├── _labels.tpl │ │ │ │ │ ├── _names.tpl │ │ │ │ │ ├── _secrets.tpl │ │ │ │ │ ├── _storage.tpl │ │ │ │ │ ├── _tplvalues.tpl │ │ │ │ │ ├── _utils.tpl │ │ │ │ │ ├── _warnings.tpl │ │ │ │ │ └── validations │ │ │ │ │ │ ├── _cassandra.tpl │ │ │ │ │ │ ├── _mariadb.tpl │ │ │ │ │ │ ├── _mongodb.tpl │ │ │ │ │ │ ├── _mysql.tpl │ │ │ │ │ │ ├── _postgresql.tpl │ │ │ │ │ │ ├── _redis.tpl │ │ │ │ │ │ └── _validations.tpl │ │ │ │ │ └── values.yaml │ │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── configmap.yaml │ │ │ │ ├── extra-list.yaml │ │ │ │ ├── metrics-svc.yaml │ │ │ │ ├── networkpolicy.yaml │ │ │ │ ├── pdb.yaml │ │ │ │ ├── prometheusrule.yaml │ │ │ │ ├── scripts-configmap.yaml │ │ │ │ ├── secrets.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── servicemonitor.yaml │ │ │ │ ├── statefulset.yaml │ │ │ │ ├── svc-headless.yaml │ │ │ │ ├── svc.yaml │ │ │ │ └── tls-secrets.yaml │ │ │ │ └── values.yaml │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── broker │ │ │ │ ├── config-secrets.yaml │ │ │ │ ├── configmap.yaml │ │ │ │ ├── pdb.yaml │ │ │ │ ├── statefulset.yaml │ │ │ │ ├── svc-external-access.yaml │ │ │ │ └── svc-headless.yaml │ │ │ ├── controller-eligible │ │ │ │ ├── config-secrets.yaml │ │ │ │ ├── configmap.yaml │ │ │ │ ├── pdb.yaml │ │ │ │ ├── statefulset.yaml │ │ │ │ ├── svc-external-access.yaml │ │ │ │ └── svc-headless.yaml │ │ │ ├── extra-list.yaml │ │ │ ├── log4j-configmap.yaml │ │ │ ├── metrics │ │ │ │ ├── deployment.yaml │ │ │ │ ├── jmx-configmap.yaml │ │ │ │ ├── jmx-servicemonitor.yaml │ │ │ │ ├── jmx-svc.yaml │ │ │ │ ├── prometheusrule.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── servicemonitor.yaml │ │ │ │ └── svc.yaml │ │ │ ├── network-policy │ │ │ │ ├── networkpolicy-egress.yaml │ │ │ │ └── networkpolicy-ingress.yaml │ │ │ ├── provisioning │ │ │ │ ├── job.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ └── tls-secret.yaml │ │ │ ├── rbac │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ └── serviceaccount.yaml │ │ │ ├── scripts-configmap.yaml │ │ │ ├── secrets.yaml │ │ │ ├── svc.yaml │ │ │ └── tls-secret.yaml │ │ │ └── values.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── agent-ds.yaml │ │ ├── agent-sa.yaml │ │ ├── agent-servicemonitor.yaml │ │ ├── agent-svc.yaml │ │ ├── allinone-agent-svc.yaml │ │ ├── allinone-collector-svc.yaml │ │ ├── allinone-configmap.yaml │ │ ├── allinone-deploy.yaml │ │ ├── allinone-ing.yaml │ │ ├── allinone-query-svc.yaml │ │ ├── allinone-sa.yaml │ │ ├── cassandra-schema-job.yaml │ │ ├── cassandra-schema-sa.yaml │ │ ├── cassandra-secret.yaml │ │ ├── collector-configmap.yaml │ │ ├── collector-deploy.yaml │ │ ├── collector-hpa.yaml │ │ ├── collector-ing.yaml │ │ ├── collector-networkpolicy-egress.yaml │ │ ├── collector-networkpolicy-ingress.yaml │ │ ├── collector-sa.yaml │ │ ├── collector-servicemonitor.yaml │ │ ├── collector-svc.yaml │ │ ├── elasticsearch-secret.yaml │ │ ├── es-index-cleaner-cronjob.yaml │ │ ├── es-index-cleaner-sa.yaml │ │ ├── es-lookback-cronjob.yaml │ │ ├── es-lookback-sa.yaml │ │ ├── es-rollover-cronjob.yaml │ │ ├── es-rollover-hook.yml │ │ ├── es-rollover-sa.yaml │ │ ├── extra-list.yaml │ │ ├── hotrod-deploy.yaml │ │ ├── hotrod-ing.yaml │ │ ├── hotrod-sa.yaml │ │ ├── hotrod-svc.yaml │ │ ├── ingester-deploy.yaml │ │ ├── ingester-hpa.yaml │ │ ├── ingester-sa.yaml │ │ ├── ingester-servicemonitor.yaml │ │ ├── ingester-svc.yaml │ │ ├── oauth-sidecar-configmap.yaml │ │ ├── query-configmap.yaml │ │ ├── query-deploy.yaml │ │ ├── query-ing.yaml │ │ ├── query-networkpolicy-egress.yaml │ │ ├── query-networkpolicy-ingress.yaml │ │ ├── query-sa.yaml │ │ ├── query-servicemonitor.yaml │ │ ├── query-svc.yaml │ │ ├── spark-cronjob.yaml │ │ └── spark-sa.yaml │ └── values.yaml └── metric │ ├── Chart.yaml │ ├── charts │ ├── alertmanager │ │ ├── Chart.yaml │ │ ├── templates │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ └── service.yaml │ │ └── values.yaml │ ├── cadvisor │ │ ├── Chart.yaml │ │ ├── templates │ │ │ ├── daemonset.yaml │ │ │ └── service.yaml │ │ └── values.yaml │ ├── grafana │ │ ├── Chart.yaml │ │ ├── grafana-config │ │ │ └── dashboards │ │ │ │ └── 1860_rev31.json │ │ ├── templates │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ └── service.yaml │ │ └── values.yaml │ ├── node-exporter │ │ ├── Chart.yaml │ │ ├── templates │ │ │ ├── daemonset.yaml │ │ │ └── service.yaml │ │ └── values.yaml │ └── prometheus │ │ ├── Chart.yaml │ │ ├── templates │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── role.yaml │ │ ├── rolebinding.yaml │ │ ├── service.yaml │ │ └── serviceaccount.yaml │ │ └── values.yaml │ ├── templates │ └── _helpers.tpl │ └── values.yaml ├── requirements.txt └── training ├── .env.example ├── notebook.ipynb ├── training_script ├── install.sh ├── training.py ├── unsloth │ ├── LICENSE │ ├── README.md │ ├── images │ │ ├── Colab.png │ │ ├── Discord button.png │ │ ├── Discord.png │ │ ├── Free version button.png │ │ ├── Kaggle.png │ │ ├── Kofi button.png │ │ ├── LAION 2GPU.png │ │ ├── Slim Orca 2GPUs.png │ │ ├── buy me a coffee button.png │ │ ├── made with unsloth.png │ │ ├── peft x trl button.png │ │ ├── start free finetune button.png │ │ ├── unsloth end.png │ │ ├── unsloth loading page render.png │ │ ├── unsloth logo black text.png │ │ ├── unsloth logo only.png │ │ ├── unsloth logo white text.png │ │ ├── unsloth made with love.png │ │ └── unsloth new logo.png │ ├── pyproject.toml │ └── unsloth │ │ ├── __init__.py │ │ ├── chat_templates.py │ │ ├── kernels │ │ ├── __init__.py │ │ ├── cross_entropy_loss.py │ │ ├── fast_lora.py │ │ ├── geglu.py │ │ ├── rms_layernorm.py │ │ ├── rope_embedding.py │ │ ├── swiglu.py │ │ └── utils.py │ │ ├── models │ │ ├── __init__.py │ │ ├── _utils.py │ │ ├── dpo.py │ │ ├── gemma.py │ │ ├── llama.py │ │ ├── loader.py │ │ ├── mapper.py │ │ ├── mistral.py │ │ └── qwen2.py │ │ ├── save.py │ │ ├── tokenizer_utils.py │ │ └── trainer.py └── utils │ └── training_utils.py └── translate ├── __init__.py ├── constants.py ├── main.py ├── requirements.txt ├── translator.py └── utils └── merge_file.py /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/Dockerfile -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/README.md -------------------------------------------------------------------------------- /app/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/app/constants.py -------------------------------------------------------------------------------- /app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/app/main.py -------------------------------------------------------------------------------- /app/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/app/utils.py -------------------------------------------------------------------------------- /custom_images/jenkins/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/custom_images/jenkins/Dockerfile -------------------------------------------------------------------------------- /custom_images/jenkins/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/custom_images/jenkins/docker-compose.yaml -------------------------------------------------------------------------------- /helm/nginx-ingress/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | *.png 3 | -------------------------------------------------------------------------------- /helm/nginx-ingress/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/helm/nginx-ingress/Chart.yaml -------------------------------------------------------------------------------- /helm/nginx-ingress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/helm/nginx-ingress/README.md -------------------------------------------------------------------------------- /helm/nginx-ingress/crds/appprotect.f5.com_aplogconfs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/helm/nginx-ingress/crds/appprotect.f5.com_aplogconfs.yaml -------------------------------------------------------------------------------- /helm/nginx-ingress/crds/appprotect.f5.com_appolicies.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/helm/nginx-ingress/crds/appprotect.f5.com_appolicies.yaml -------------------------------------------------------------------------------- /helm/nginx-ingress/crds/appprotect.f5.com_apusersigs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/helm/nginx-ingress/crds/appprotect.f5.com_apusersigs.yaml -------------------------------------------------------------------------------- /helm/nginx-ingress/crds/appprotectdos.f5.com_apdoslogconfs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/helm/nginx-ingress/crds/appprotectdos.f5.com_apdoslogconfs.yaml -------------------------------------------------------------------------------- /helm/nginx-ingress/crds/appprotectdos.f5.com_apdospolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/helm/nginx-ingress/crds/appprotectdos.f5.com_apdospolicy.yaml -------------------------------------------------------------------------------- /helm/nginx-ingress/crds/appprotectdos.f5.com_dosprotectedresources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/helm/nginx-ingress/crds/appprotectdos.f5.com_dosprotectedresources.yaml -------------------------------------------------------------------------------- /helm/nginx-ingress/crds/externaldns.nginx.org_dnsendpoints.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/helm/nginx-ingress/crds/externaldns.nginx.org_dnsendpoints.yaml -------------------------------------------------------------------------------- /helm/nginx-ingress/crds/k8s.nginx.org_globalconfigurations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/helm/nginx-ingress/crds/k8s.nginx.org_globalconfigurations.yaml -------------------------------------------------------------------------------- /helm/nginx-ingress/crds/k8s.nginx.org_policies.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/helm/nginx-ingress/crds/k8s.nginx.org_policies.yaml -------------------------------------------------------------------------------- /helm/nginx-ingress/crds/k8s.nginx.org_transportservers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/helm/nginx-ingress/crds/k8s.nginx.org_transportservers.yaml -------------------------------------------------------------------------------- /helm/nginx-ingress/crds/k8s.nginx.org_virtualserverroutes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/helm/nginx-ingress/crds/k8s.nginx.org_virtualserverroutes.yaml -------------------------------------------------------------------------------- /helm/nginx-ingress/crds/k8s.nginx.org_virtualservers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/helm/nginx-ingress/crds/k8s.nginx.org_virtualservers.yaml -------------------------------------------------------------------------------- /helm/nginx-ingress/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | The NGINX Ingress Controller has been installed. 2 | -------------------------------------------------------------------------------- /helm/nginx-ingress/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/helm/nginx-ingress/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm/nginx-ingress/templates/controller-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/helm/nginx-ingress/templates/controller-configmap.yaml -------------------------------------------------------------------------------- /helm/nginx-ingress/templates/controller-daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/helm/nginx-ingress/templates/controller-daemonset.yaml -------------------------------------------------------------------------------- /helm/nginx-ingress/templates/controller-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/helm/nginx-ingress/templates/controller-deployment.yaml -------------------------------------------------------------------------------- /helm/nginx-ingress/templates/controller-globalconfiguration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/helm/nginx-ingress/templates/controller-globalconfiguration.yaml -------------------------------------------------------------------------------- /helm/nginx-ingress/templates/controller-hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/helm/nginx-ingress/templates/controller-hpa.yaml -------------------------------------------------------------------------------- /helm/nginx-ingress/templates/controller-ingress-class.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/helm/nginx-ingress/templates/controller-ingress-class.yaml -------------------------------------------------------------------------------- /helm/nginx-ingress/templates/controller-leader-election-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/helm/nginx-ingress/templates/controller-leader-election-configmap.yaml -------------------------------------------------------------------------------- /helm/nginx-ingress/templates/controller-pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/helm/nginx-ingress/templates/controller-pdb.yaml -------------------------------------------------------------------------------- /helm/nginx-ingress/templates/controller-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/helm/nginx-ingress/templates/controller-secret.yaml -------------------------------------------------------------------------------- /helm/nginx-ingress/templates/controller-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/helm/nginx-ingress/templates/controller-service.yaml -------------------------------------------------------------------------------- /helm/nginx-ingress/templates/controller-serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/helm/nginx-ingress/templates/controller-serviceaccount.yaml -------------------------------------------------------------------------------- /helm/nginx-ingress/templates/controller-servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/helm/nginx-ingress/templates/controller-servicemonitor.yaml -------------------------------------------------------------------------------- /helm/nginx-ingress/templates/controller-wildcard-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/helm/nginx-ingress/templates/controller-wildcard-secret.yaml -------------------------------------------------------------------------------- /helm/nginx-ingress/templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/helm/nginx-ingress/templates/rbac.yaml -------------------------------------------------------------------------------- /helm/nginx-ingress/values-icp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/helm/nginx-ingress/values-icp.yaml -------------------------------------------------------------------------------- /helm/nginx-ingress/values-nsm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/helm/nginx-ingress/values-nsm.yaml -------------------------------------------------------------------------------- /helm/nginx-ingress/values-plus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/helm/nginx-ingress/values-plus.yaml -------------------------------------------------------------------------------- /helm/nginx-ingress/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/helm/nginx-ingress/values.schema.json -------------------------------------------------------------------------------- /helm/nginx-ingress/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/helm/nginx-ingress/values.yaml -------------------------------------------------------------------------------- /helm/quote_gen_chart/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/helm/quote_gen_chart/.helmignore -------------------------------------------------------------------------------- /helm/quote_gen_chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/helm/quote_gen_chart/Chart.yaml -------------------------------------------------------------------------------- /helm/quote_gen_chart/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/helm/quote_gen_chart/templates/deployment.yaml -------------------------------------------------------------------------------- /helm/quote_gen_chart/templates/nginx-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/helm/quote_gen_chart/templates/nginx-ingress.yaml -------------------------------------------------------------------------------- /helm/quote_gen_chart/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/helm/quote_gen_chart/templates/service.yaml -------------------------------------------------------------------------------- /helm/quote_gen_chart/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/helm/quote_gen_chart/values.yaml -------------------------------------------------------------------------------- /iac/ansible/deploy_jenkins/create_compute_instance.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/iac/ansible/deploy_jenkins/create_compute_instance.yaml -------------------------------------------------------------------------------- /iac/ansible/deploy_jenkins/deploy_jenkins.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/iac/ansible/deploy_jenkins/deploy_jenkins.yaml -------------------------------------------------------------------------------- /iac/ansible/inventory: -------------------------------------------------------------------------------- 1 | [servers] 2 | 35.240.163.52 ansible_ssh_private_key_file=../.ssh/jenkins -------------------------------------------------------------------------------- /iac/ansible/vm_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/iac/ansible/vm_requirements.txt -------------------------------------------------------------------------------- /iac/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/iac/terraform/main.tf -------------------------------------------------------------------------------- /iac/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/iac/terraform/variables.tf -------------------------------------------------------------------------------- /images/ans-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/images/ans-1.png -------------------------------------------------------------------------------- /images/ans-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/images/ans-2.png -------------------------------------------------------------------------------- /images/ans-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/images/ans-3.png -------------------------------------------------------------------------------- /images/ans-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/images/ans-4.png -------------------------------------------------------------------------------- /images/api_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/images/api_1.png -------------------------------------------------------------------------------- /images/dis-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/images/dis-1.png -------------------------------------------------------------------------------- /images/gke-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/images/gke-1.gif -------------------------------------------------------------------------------- /images/gke-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/images/gke-2.png -------------------------------------------------------------------------------- /images/gke-3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/images/gke-3.gif -------------------------------------------------------------------------------- /images/gke-4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/images/gke-4.gif -------------------------------------------------------------------------------- /images/gke-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/images/gke-4.png -------------------------------------------------------------------------------- /images/gke-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/images/gke-5.png -------------------------------------------------------------------------------- /images/graf-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/images/graf-1.png -------------------------------------------------------------------------------- /images/graf-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/images/graf-2.png -------------------------------------------------------------------------------- /images/graf-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/images/graf-3.png -------------------------------------------------------------------------------- /images/graf-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/images/graf-4.png -------------------------------------------------------------------------------- /images/jaeger-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/images/jaeger-1.png -------------------------------------------------------------------------------- /images/jaeger-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/images/jaeger-2.png -------------------------------------------------------------------------------- /images/jenkins-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/images/jenkins-1.png -------------------------------------------------------------------------------- /images/jenkins-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/images/jenkins-10.png -------------------------------------------------------------------------------- /images/jenkins-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/images/jenkins-11.png -------------------------------------------------------------------------------- /images/jenkins-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/images/jenkins-12.png -------------------------------------------------------------------------------- /images/jenkins-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/images/jenkins-13.png -------------------------------------------------------------------------------- /images/jenkins-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/images/jenkins-2.png -------------------------------------------------------------------------------- /images/jenkins-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/images/jenkins-3.png -------------------------------------------------------------------------------- /images/jenkins-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/images/jenkins-4.png -------------------------------------------------------------------------------- /images/jenkins-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/images/jenkins-6.png -------------------------------------------------------------------------------- /images/jenkins-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/images/jenkins-7.png -------------------------------------------------------------------------------- /images/jenkins-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/images/jenkins-8.png -------------------------------------------------------------------------------- /images/jenkins-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/images/jenkins-9.png -------------------------------------------------------------------------------- /images/jenskin-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/images/jenskin-5.png -------------------------------------------------------------------------------- /images/kibana-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/images/kibana-1.png -------------------------------------------------------------------------------- /images/kibana-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/images/kibana-2.png -------------------------------------------------------------------------------- /images/runpod_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/images/runpod_1.png -------------------------------------------------------------------------------- /images/runpod_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/images/runpod_2.png -------------------------------------------------------------------------------- /images/runpod_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/images/runpod_3.png -------------------------------------------------------------------------------- /images/system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/images/system.png -------------------------------------------------------------------------------- /images/wandb-eval.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/images/wandb-eval.png -------------------------------------------------------------------------------- /images/wandb-training.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/images/wandb-training.png -------------------------------------------------------------------------------- /images/webhook-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/images/webhook-1.png -------------------------------------------------------------------------------- /images/webhook-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/images/webhook-2.png -------------------------------------------------------------------------------- /images/webhook-3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/images/webhook-3.gif -------------------------------------------------------------------------------- /observability/elasticcloud/deploy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/elasticcloud/deploy/README.md -------------------------------------------------------------------------------- /observability/elasticcloud/deploy/eck-operator/crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/elasticcloud/deploy/eck-operator/crds.yaml -------------------------------------------------------------------------------- /observability/elasticcloud/deploy/eck-operator/operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/elasticcloud/deploy/eck-operator/operator.yaml -------------------------------------------------------------------------------- /observability/elasticcloud/deploy/eck-stack/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/elasticcloud/deploy/eck-stack/.helmignore -------------------------------------------------------------------------------- /observability/elasticcloud/deploy/eck-stack/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/elasticcloud/deploy/eck-stack/Chart.yaml -------------------------------------------------------------------------------- /observability/elasticcloud/deploy/eck-stack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/elasticcloud/deploy/eck-stack/README.md -------------------------------------------------------------------------------- /observability/elasticcloud/deploy/eck-stack/charts/eck-beats/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/elasticcloud/deploy/eck-stack/charts/eck-beats/.helmignore -------------------------------------------------------------------------------- /observability/elasticcloud/deploy/eck-stack/charts/eck-beats/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/elasticcloud/deploy/eck-stack/charts/eck-beats/Chart.yaml -------------------------------------------------------------------------------- /observability/elasticcloud/deploy/eck-stack/charts/eck-beats/examples/filebeat_no_autodiscover.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/elasticcloud/deploy/eck-stack/charts/eck-beats/examples/filebeat_no_autodiscover.yaml -------------------------------------------------------------------------------- /observability/elasticcloud/deploy/eck-stack/charts/eck-beats/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/elasticcloud/deploy/eck-stack/charts/eck-beats/templates/NOTES.txt -------------------------------------------------------------------------------- /observability/elasticcloud/deploy/eck-stack/charts/eck-beats/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/elasticcloud/deploy/eck-stack/charts/eck-beats/templates/_helpers.tpl -------------------------------------------------------------------------------- /observability/elasticcloud/deploy/eck-stack/charts/eck-beats/templates/beats.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/elasticcloud/deploy/eck-stack/charts/eck-beats/templates/beats.yaml -------------------------------------------------------------------------------- /observability/elasticcloud/deploy/eck-stack/charts/eck-beats/templates/cluster-role-binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/elasticcloud/deploy/eck-stack/charts/eck-beats/templates/cluster-role-binding.yaml -------------------------------------------------------------------------------- /observability/elasticcloud/deploy/eck-stack/charts/eck-beats/templates/cluster-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/elasticcloud/deploy/eck-stack/charts/eck-beats/templates/cluster-role.yaml -------------------------------------------------------------------------------- /observability/elasticcloud/deploy/eck-stack/charts/eck-beats/templates/service-account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/elasticcloud/deploy/eck-stack/charts/eck-beats/templates/service-account.yaml -------------------------------------------------------------------------------- /observability/elasticcloud/deploy/eck-stack/charts/eck-beats/templates/tests/beats-auditbeat-example_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/elasticcloud/deploy/eck-stack/charts/eck-beats/templates/tests/beats-auditbeat-example_test.yaml -------------------------------------------------------------------------------- /observability/elasticcloud/deploy/eck-stack/charts/eck-beats/templates/tests/beats-filebeat-example_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/elasticcloud/deploy/eck-stack/charts/eck-beats/templates/tests/beats-filebeat-example_test.yaml -------------------------------------------------------------------------------- /observability/elasticcloud/deploy/eck-stack/charts/eck-beats/templates/tests/beats-heartbeat-example_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/elasticcloud/deploy/eck-stack/charts/eck-beats/templates/tests/beats-heartbeat-example_test.yaml -------------------------------------------------------------------------------- /observability/elasticcloud/deploy/eck-stack/charts/eck-beats/templates/tests/beats-metricbeat-example_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/elasticcloud/deploy/eck-stack/charts/eck-beats/templates/tests/beats-metricbeat-example_test.yaml -------------------------------------------------------------------------------- /observability/elasticcloud/deploy/eck-stack/charts/eck-beats/templates/tests/beats-packetbeat-example_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/elasticcloud/deploy/eck-stack/charts/eck-beats/templates/tests/beats-packetbeat-example_test.yaml -------------------------------------------------------------------------------- /observability/elasticcloud/deploy/eck-stack/charts/eck-beats/templates/tests/beats_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/elasticcloud/deploy/eck-stack/charts/eck-beats/templates/tests/beats_test.yaml -------------------------------------------------------------------------------- /observability/elasticcloud/deploy/eck-stack/charts/eck-beats/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/elasticcloud/deploy/eck-stack/charts/eck-beats/values.yaml -------------------------------------------------------------------------------- /observability/elasticcloud/deploy/eck-stack/charts/eck-elasticsearch/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/elasticcloud/deploy/eck-stack/charts/eck-elasticsearch/.helmignore -------------------------------------------------------------------------------- /observability/elasticcloud/deploy/eck-stack/charts/eck-elasticsearch/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/elasticcloud/deploy/eck-stack/charts/eck-elasticsearch/Chart.yaml -------------------------------------------------------------------------------- /observability/elasticcloud/deploy/eck-stack/charts/eck-elasticsearch/examples/hot-warm-cold.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/elasticcloud/deploy/eck-stack/charts/eck-elasticsearch/examples/hot-warm-cold.yaml -------------------------------------------------------------------------------- /observability/elasticcloud/deploy/eck-stack/charts/eck-elasticsearch/examples/ingress/elasticsearch-ingress-aks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/elasticcloud/deploy/eck-stack/charts/eck-elasticsearch/examples/ingress/elasticsearch-ingress-aks.yaml -------------------------------------------------------------------------------- /observability/elasticcloud/deploy/eck-stack/charts/eck-elasticsearch/examples/ingress/elasticsearch-ingress-eks-alb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/elasticcloud/deploy/eck-stack/charts/eck-elasticsearch/examples/ingress/elasticsearch-ingress-eks-alb.yaml -------------------------------------------------------------------------------- /observability/elasticcloud/deploy/eck-stack/charts/eck-elasticsearch/examples/ingress/elasticsearch-ingress-eks-nlb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/elasticcloud/deploy/eck-stack/charts/eck-elasticsearch/examples/ingress/elasticsearch-ingress-eks-nlb.yaml -------------------------------------------------------------------------------- /observability/elasticcloud/deploy/eck-stack/charts/eck-elasticsearch/examples/ingress/elasticsearch-ingress-gke.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/elasticcloud/deploy/eck-stack/charts/eck-elasticsearch/examples/ingress/elasticsearch-ingress-gke.yaml -------------------------------------------------------------------------------- /observability/elasticcloud/deploy/eck-stack/charts/eck-elasticsearch/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/elasticcloud/deploy/eck-stack/charts/eck-elasticsearch/templates/NOTES.txt -------------------------------------------------------------------------------- /observability/elasticcloud/deploy/eck-stack/charts/eck-elasticsearch/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/elasticcloud/deploy/eck-stack/charts/eck-elasticsearch/templates/_helpers.tpl -------------------------------------------------------------------------------- /observability/elasticcloud/deploy/eck-stack/charts/eck-elasticsearch/templates/elasticsearch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/elasticcloud/deploy/eck-stack/charts/eck-elasticsearch/templates/elasticsearch.yaml -------------------------------------------------------------------------------- /observability/elasticcloud/deploy/eck-stack/charts/eck-elasticsearch/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/elasticcloud/deploy/eck-stack/charts/eck-elasticsearch/templates/ingress.yaml -------------------------------------------------------------------------------- /observability/elasticcloud/deploy/eck-stack/charts/eck-elasticsearch/templates/tests/elasticsearch_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/elasticcloud/deploy/eck-stack/charts/eck-elasticsearch/templates/tests/elasticsearch_test.yaml -------------------------------------------------------------------------------- /observability/elasticcloud/deploy/eck-stack/charts/eck-elasticsearch/templates/tests/ingress_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/elasticcloud/deploy/eck-stack/charts/eck-elasticsearch/templates/tests/ingress_test.yaml -------------------------------------------------------------------------------- /observability/elasticcloud/deploy/eck-stack/charts/eck-elasticsearch/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/elasticcloud/deploy/eck-stack/charts/eck-elasticsearch/values.yaml -------------------------------------------------------------------------------- /observability/elasticcloud/deploy/eck-stack/charts/eck-kibana/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/elasticcloud/deploy/eck-stack/charts/eck-kibana/.helmignore -------------------------------------------------------------------------------- /observability/elasticcloud/deploy/eck-stack/charts/eck-kibana/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/elasticcloud/deploy/eck-stack/charts/eck-kibana/Chart.yaml -------------------------------------------------------------------------------- /observability/elasticcloud/deploy/eck-stack/charts/eck-kibana/examples/http-configuration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/elasticcloud/deploy/eck-stack/charts/eck-kibana/examples/http-configuration.yaml -------------------------------------------------------------------------------- /observability/elasticcloud/deploy/eck-stack/charts/eck-kibana/examples/ingress/kibana-gke.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/elasticcloud/deploy/eck-stack/charts/eck-kibana/examples/ingress/kibana-gke.yaml -------------------------------------------------------------------------------- /observability/elasticcloud/deploy/eck-stack/charts/eck-kibana/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/elasticcloud/deploy/eck-stack/charts/eck-kibana/templates/NOTES.txt -------------------------------------------------------------------------------- /observability/elasticcloud/deploy/eck-stack/charts/eck-kibana/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/elasticcloud/deploy/eck-stack/charts/eck-kibana/templates/_helpers.tpl -------------------------------------------------------------------------------- /observability/elasticcloud/deploy/eck-stack/charts/eck-kibana/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/elasticcloud/deploy/eck-stack/charts/eck-kibana/templates/ingress.yaml -------------------------------------------------------------------------------- /observability/elasticcloud/deploy/eck-stack/charts/eck-kibana/templates/kibana.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/elasticcloud/deploy/eck-stack/charts/eck-kibana/templates/kibana.yaml -------------------------------------------------------------------------------- /observability/elasticcloud/deploy/eck-stack/charts/eck-kibana/templates/tests/ingress_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/elasticcloud/deploy/eck-stack/charts/eck-kibana/templates/tests/ingress_test.yaml -------------------------------------------------------------------------------- /observability/elasticcloud/deploy/eck-stack/charts/eck-kibana/templates/tests/kibana_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/elasticcloud/deploy/eck-stack/charts/eck-kibana/templates/tests/kibana_test.yaml -------------------------------------------------------------------------------- /observability/elasticcloud/deploy/eck-stack/charts/eck-kibana/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/elasticcloud/deploy/eck-stack/charts/eck-kibana/values.yaml -------------------------------------------------------------------------------- /observability/elasticcloud/deploy/eck-stack/kkk.ym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/elasticcloud/deploy/eck-stack/kkk.ym -------------------------------------------------------------------------------- /observability/elasticcloud/deploy/eck-stack/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/elasticcloud/deploy/eck-stack/run.sh -------------------------------------------------------------------------------- /observability/elasticcloud/deploy/eck-stack/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/elasticcloud/deploy/eck-stack/templates/NOTES.txt -------------------------------------------------------------------------------- /observability/elasticcloud/deploy/eck-stack/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/elasticcloud/deploy/eck-stack/templates/_helpers.tpl -------------------------------------------------------------------------------- /observability/elasticcloud/deploy/eck-stack/templates/tests/beats_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/elasticcloud/deploy/eck-stack/templates/tests/beats_test.yaml -------------------------------------------------------------------------------- /observability/elasticcloud/deploy/eck-stack/templates/tests/elastic-agent_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/elasticcloud/deploy/eck-stack/templates/tests/elastic-agent_test.yaml -------------------------------------------------------------------------------- /observability/elasticcloud/deploy/eck-stack/templates/tests/elasticsearch_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/elasticcloud/deploy/eck-stack/templates/tests/elasticsearch_test.yaml -------------------------------------------------------------------------------- /observability/elasticcloud/deploy/eck-stack/templates/tests/kibana_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/elasticcloud/deploy/eck-stack/templates/tests/kibana_test.yaml -------------------------------------------------------------------------------- /observability/elasticcloud/deploy/eck-stack/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/elasticcloud/deploy/eck-stack/values.yaml -------------------------------------------------------------------------------- /observability/elasticcloud/deploy/helm-migrate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/elasticcloud/deploy/helm-migrate.sh -------------------------------------------------------------------------------- /observability/inotify/inotify-limits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/inotify/inotify-limits.yaml -------------------------------------------------------------------------------- /observability/jaeger/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/.helmignore -------------------------------------------------------------------------------- /observability/jaeger/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/Chart.lock -------------------------------------------------------------------------------- /observability/jaeger/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/Chart.yaml -------------------------------------------------------------------------------- /observability/jaeger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/README.md -------------------------------------------------------------------------------- /observability/jaeger/charts/cassandra/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/cassandra/.helmignore -------------------------------------------------------------------------------- /observability/jaeger/charts/cassandra/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/cassandra/Chart.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/cassandra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/cassandra/README.md -------------------------------------------------------------------------------- /observability/jaeger/charts/cassandra/sample/create-storage-gce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/cassandra/sample/create-storage-gce.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/cassandra/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/cassandra/templates/NOTES.txt -------------------------------------------------------------------------------- /observability/jaeger/charts/cassandra/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/cassandra/templates/_helpers.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/cassandra/templates/backup/cronjob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/cassandra/templates/backup/cronjob.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/cassandra/templates/backup/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/cassandra/templates/backup/rbac.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/cassandra/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/cassandra/templates/configmap.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/cassandra/templates/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/cassandra/templates/pdb.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/cassandra/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/cassandra/templates/service.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/cassandra/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/cassandra/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/cassandra/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/cassandra/templates/statefulset.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/cassandra/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/cassandra/values.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/common/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/common/.helmignore -------------------------------------------------------------------------------- /observability/jaeger/charts/common/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/common/Chart.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/common/README.md -------------------------------------------------------------------------------- /observability/jaeger/charts/common/templates/_affinities.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/common/templates/_affinities.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/common/templates/_capabilities.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/common/templates/_capabilities.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/common/templates/_compatibility.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/common/templates/_compatibility.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/common/templates/_errors.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/common/templates/_errors.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/common/templates/_images.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/common/templates/_images.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/common/templates/_ingress.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/common/templates/_ingress.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/common/templates/_labels.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/common/templates/_labels.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/common/templates/_names.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/common/templates/_names.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/common/templates/_resources.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/common/templates/_resources.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/common/templates/_secrets.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/common/templates/_secrets.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/common/templates/_storage.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/common/templates/_storage.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/common/templates/_tplvalues.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/common/templates/_tplvalues.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/common/templates/_utils.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/common/templates/_utils.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/common/templates/_warnings.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/common/templates/_warnings.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/common/templates/validations/_cassandra.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/common/templates/validations/_cassandra.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/common/templates/validations/_mariadb.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/common/templates/validations/_mariadb.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/common/templates/validations/_mongodb.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/common/templates/validations/_mongodb.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/common/templates/validations/_mysql.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/common/templates/validations/_mysql.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/common/templates/validations/_postgresql.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/common/templates/validations/_postgresql.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/common/templates/validations/_redis.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/common/templates/validations/_redis.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/common/templates/validations/_validations.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/common/templates/validations/_validations.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/common/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/common/values.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/.helmignore -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/Chart.lock -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/Chart.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/README.md -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/common/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/common/.helmignore -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/common/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/common/Chart.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/common/README.md -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/common/templates/_affinities.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/common/templates/_affinities.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/common/templates/_capabilities.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/common/templates/_capabilities.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/common/templates/_compatibility.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/common/templates/_compatibility.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/common/templates/_errors.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/common/templates/_errors.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/common/templates/_images.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/common/templates/_images.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/common/templates/_ingress.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/common/templates/_ingress.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/common/templates/_labels.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/common/templates/_labels.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/common/templates/_names.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/common/templates/_names.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/common/templates/_resources.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/common/templates/_resources.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/common/templates/_secrets.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/common/templates/_secrets.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/common/templates/_storage.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/common/templates/_storage.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/common/templates/_tplvalues.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/common/templates/_tplvalues.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/common/templates/_utils.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/common/templates/_utils.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/common/templates/_warnings.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/common/templates/_warnings.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/common/templates/validations/_cassandra.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/common/templates/validations/_cassandra.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/common/templates/validations/_mariadb.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/common/templates/validations/_mariadb.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/common/templates/validations/_mongodb.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/common/templates/validations/_mongodb.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/common/templates/validations/_mysql.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/common/templates/validations/_mysql.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/common/templates/validations/_postgresql.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/common/templates/validations/_postgresql.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/common/templates/validations/_redis.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/common/templates/validations/_redis.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/common/templates/validations/_validations.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/common/templates/validations/_validations.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/common/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/common/values.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/kibana/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/kibana/.helmignore -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/kibana/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/kibana/Chart.lock -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/kibana/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/kibana/Chart.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/kibana/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/kibana/README.md -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/kibana/charts/common/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/kibana/charts/common/.helmignore -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/kibana/charts/common/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/kibana/charts/common/Chart.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/kibana/charts/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/kibana/charts/common/README.md -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/kibana/charts/common/templates/_affinities.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/kibana/charts/common/templates/_affinities.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/kibana/charts/common/templates/_capabilities.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/kibana/charts/common/templates/_capabilities.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/kibana/charts/common/templates/_compatibility.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/kibana/charts/common/templates/_compatibility.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/kibana/charts/common/templates/_errors.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/kibana/charts/common/templates/_errors.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/kibana/charts/common/templates/_images.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/kibana/charts/common/templates/_images.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/kibana/charts/common/templates/_ingress.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/kibana/charts/common/templates/_ingress.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/kibana/charts/common/templates/_labels.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/kibana/charts/common/templates/_labels.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/kibana/charts/common/templates/_names.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/kibana/charts/common/templates/_names.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/kibana/charts/common/templates/_resources.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/kibana/charts/common/templates/_resources.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/kibana/charts/common/templates/_secrets.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/kibana/charts/common/templates/_secrets.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/kibana/charts/common/templates/_storage.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/kibana/charts/common/templates/_storage.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/kibana/charts/common/templates/_tplvalues.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/kibana/charts/common/templates/_tplvalues.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/kibana/charts/common/templates/_utils.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/kibana/charts/common/templates/_utils.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/kibana/charts/common/templates/_warnings.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/kibana/charts/common/templates/_warnings.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/kibana/charts/common/templates/validations/_cassandra.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/kibana/charts/common/templates/validations/_cassandra.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/kibana/charts/common/templates/validations/_mariadb.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/kibana/charts/common/templates/validations/_mariadb.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/kibana/charts/common/templates/validations/_mongodb.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/kibana/charts/common/templates/validations/_mongodb.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/kibana/charts/common/templates/validations/_mysql.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/kibana/charts/common/templates/validations/_mysql.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/kibana/charts/common/templates/validations/_postgresql.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/kibana/charts/common/templates/validations/_postgresql.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/kibana/charts/common/templates/validations/_redis.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/kibana/charts/common/templates/validations/_redis.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/kibana/charts/common/templates/validations/_validations.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/kibana/charts/common/templates/validations/_validations.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/kibana/charts/common/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/kibana/charts/common/values.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/kibana/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/kibana/templates/NOTES.txt -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/kibana/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/kibana/templates/_helpers.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/kibana/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/kibana/templates/configmap.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/kibana/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/kibana/templates/deployment.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/kibana/templates/extra-list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/kibana/templates/extra-list.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/kibana/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/kibana/templates/ingress.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/kibana/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/kibana/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/kibana/templates/plugins-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/kibana/templates/plugins-configmap.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/kibana/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/kibana/templates/pvc.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/kibana/templates/saved-objects-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/kibana/templates/saved-objects-configmap.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/kibana/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/kibana/templates/secret.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/kibana/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/kibana/templates/service.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/kibana/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/kibana/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/kibana/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/kibana/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/kibana/templates/tls-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/kibana/templates/tls-secret.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/charts/kibana/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/charts/kibana/values.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/templates/NOTES.txt -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/templates/_helpers.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/templates/configmap.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/templates/coordinating/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/templates/coordinating/hpa.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/templates/coordinating/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/templates/coordinating/networkpolicy.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/templates/coordinating/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/templates/coordinating/pdb.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/templates/coordinating/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/templates/coordinating/serviceaccount.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/templates/coordinating/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/templates/coordinating/statefulset.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/templates/coordinating/svc-headless.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/templates/coordinating/svc-headless.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/templates/data/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/templates/data/hpa.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/templates/data/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/templates/data/networkpolicy.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/templates/data/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/templates/data/pdb.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/templates/data/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/templates/data/serviceaccount.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/templates/data/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/templates/data/statefulset.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/templates/data/svc-headless.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/templates/data/svc-headless.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/templates/extra-list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/templates/extra-list.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/templates/ingest/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/templates/ingest/hpa.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/templates/ingest/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/templates/ingest/ingress.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/templates/ingest/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/templates/ingest/networkpolicy.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/templates/ingest/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/templates/ingest/pdb.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/templates/ingest/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/templates/ingest/service.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/templates/ingest/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/templates/ingest/serviceaccount.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/templates/ingest/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/templates/ingest/statefulset.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/templates/ingest/svc-headless.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/templates/ingest/svc-headless.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/templates/ingress-tls-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/templates/ingress-tls-secrets.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/templates/ingress.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/templates/initialization-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/templates/initialization-configmap.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/templates/master/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/templates/master/hpa.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/templates/master/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/templates/master/networkpolicy.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/templates/master/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/templates/master/pdb.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/templates/master/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/templates/master/serviceaccount.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/templates/master/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/templates/master/statefulset.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/templates/master/svc-headless.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/templates/master/svc-headless.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/templates/metrics/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/templates/metrics/deployment.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/templates/metrics/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/templates/metrics/networkpolicy.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/templates/metrics/prometheusrule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/templates/metrics/prometheusrule.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/templates/metrics/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/templates/metrics/service.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/templates/metrics/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/templates/metrics/serviceaccount.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/templates/metrics/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/templates/metrics/servicemonitor.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/templates/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/templates/secrets.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/templates/service.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/templates/tls-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/templates/tls-secret.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/elasticsearch/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/elasticsearch/values.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/.helmignore -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/Chart.lock -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/Chart.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/README.md -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/common/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/common/.helmignore -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/common/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/common/Chart.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/common/README.md -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/common/templates/_affinities.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/common/templates/_affinities.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/common/templates/_capabilities.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/common/templates/_capabilities.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/common/templates/_errors.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/common/templates/_errors.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/common/templates/_images.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/common/templates/_images.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/common/templates/_ingress.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/common/templates/_ingress.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/common/templates/_labels.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/common/templates/_labels.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/common/templates/_names.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/common/templates/_names.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/common/templates/_secrets.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/common/templates/_secrets.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/common/templates/_storage.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/common/templates/_storage.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/common/templates/_tplvalues.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/common/templates/_tplvalues.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/common/templates/_utils.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/common/templates/_utils.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/common/templates/_warnings.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/common/templates/_warnings.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/common/templates/validations/_cassandra.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/common/templates/validations/_cassandra.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/common/templates/validations/_mariadb.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/common/templates/validations/_mariadb.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/common/templates/validations/_mongodb.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/common/templates/validations/_mongodb.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/common/templates/validations/_mysql.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/common/templates/validations/_mysql.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/common/templates/validations/_postgresql.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/common/templates/validations/_postgresql.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/common/templates/validations/_redis.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/common/templates/validations/_redis.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/common/templates/validations/_validations.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/common/templates/validations/_validations.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/common/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/common/values.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/zookeeper/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/zookeeper/.helmignore -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/zookeeper/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/zookeeper/Chart.lock -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/zookeeper/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/zookeeper/Chart.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/zookeeper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/zookeeper/README.md -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/zookeeper/charts/common/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/zookeeper/charts/common/.helmignore -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/zookeeper/charts/common/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/zookeeper/charts/common/Chart.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/zookeeper/charts/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/zookeeper/charts/common/README.md -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/zookeeper/charts/common/templates/_affinities.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/zookeeper/charts/common/templates/_affinities.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/zookeeper/charts/common/templates/_capabilities.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/zookeeper/charts/common/templates/_capabilities.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/zookeeper/charts/common/templates/_errors.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/zookeeper/charts/common/templates/_errors.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/zookeeper/charts/common/templates/_images.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/zookeeper/charts/common/templates/_images.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/zookeeper/charts/common/templates/_ingress.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/zookeeper/charts/common/templates/_ingress.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/zookeeper/charts/common/templates/_labels.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/zookeeper/charts/common/templates/_labels.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/zookeeper/charts/common/templates/_names.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/zookeeper/charts/common/templates/_names.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/zookeeper/charts/common/templates/_secrets.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/zookeeper/charts/common/templates/_secrets.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/zookeeper/charts/common/templates/_storage.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/zookeeper/charts/common/templates/_storage.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/zookeeper/charts/common/templates/_tplvalues.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/zookeeper/charts/common/templates/_tplvalues.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/zookeeper/charts/common/templates/_utils.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/zookeeper/charts/common/templates/_utils.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/zookeeper/charts/common/templates/_warnings.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/zookeeper/charts/common/templates/_warnings.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/zookeeper/charts/common/templates/validations/_cassandra.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/zookeeper/charts/common/templates/validations/_cassandra.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/zookeeper/charts/common/templates/validations/_mariadb.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/zookeeper/charts/common/templates/validations/_mariadb.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/zookeeper/charts/common/templates/validations/_mongodb.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/zookeeper/charts/common/templates/validations/_mongodb.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/zookeeper/charts/common/templates/validations/_mysql.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/zookeeper/charts/common/templates/validations/_mysql.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/zookeeper/charts/common/templates/validations/_postgresql.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/zookeeper/charts/common/templates/validations/_postgresql.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/zookeeper/charts/common/templates/validations/_redis.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/zookeeper/charts/common/templates/validations/_redis.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/zookeeper/charts/common/templates/validations/_validations.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/zookeeper/charts/common/templates/validations/_validations.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/zookeeper/charts/common/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/zookeeper/charts/common/values.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/zookeeper/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/zookeeper/templates/NOTES.txt -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/zookeeper/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/zookeeper/templates/_helpers.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/zookeeper/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/zookeeper/templates/configmap.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/zookeeper/templates/extra-list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/zookeeper/templates/extra-list.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/zookeeper/templates/metrics-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/zookeeper/templates/metrics-svc.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/zookeeper/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/zookeeper/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/zookeeper/templates/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/zookeeper/templates/pdb.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/zookeeper/templates/prometheusrule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/zookeeper/templates/prometheusrule.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/zookeeper/templates/scripts-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/zookeeper/templates/scripts-configmap.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/zookeeper/templates/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/zookeeper/templates/secrets.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/zookeeper/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/zookeeper/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/zookeeper/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/zookeeper/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/zookeeper/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/zookeeper/templates/statefulset.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/zookeeper/templates/svc-headless.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/zookeeper/templates/svc-headless.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/zookeeper/templates/svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/zookeeper/templates/svc.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/zookeeper/templates/tls-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/zookeeper/templates/tls-secrets.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/charts/zookeeper/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/charts/zookeeper/values.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/templates/NOTES.txt -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/templates/_helpers.tpl -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/templates/broker/config-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/templates/broker/config-secrets.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/templates/broker/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/templates/broker/configmap.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/templates/broker/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/templates/broker/pdb.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/templates/broker/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/templates/broker/statefulset.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/templates/broker/svc-external-access.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/templates/broker/svc-external-access.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/templates/broker/svc-headless.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/templates/broker/svc-headless.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/templates/controller-eligible/config-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/templates/controller-eligible/config-secrets.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/templates/controller-eligible/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/templates/controller-eligible/configmap.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/templates/controller-eligible/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/templates/controller-eligible/pdb.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/templates/controller-eligible/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/templates/controller-eligible/statefulset.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/templates/controller-eligible/svc-external-access.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/templates/controller-eligible/svc-external-access.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/templates/controller-eligible/svc-headless.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/templates/controller-eligible/svc-headless.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/templates/extra-list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/templates/extra-list.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/templates/log4j-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/templates/log4j-configmap.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/templates/metrics/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/templates/metrics/deployment.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/templates/metrics/jmx-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/templates/metrics/jmx-configmap.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/templates/metrics/jmx-servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/templates/metrics/jmx-servicemonitor.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/templates/metrics/jmx-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/templates/metrics/jmx-svc.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/templates/metrics/prometheusrule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/templates/metrics/prometheusrule.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/templates/metrics/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/templates/metrics/serviceaccount.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/templates/metrics/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/templates/metrics/servicemonitor.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/templates/metrics/svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/templates/metrics/svc.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/templates/network-policy/networkpolicy-egress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/templates/network-policy/networkpolicy-egress.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/templates/network-policy/networkpolicy-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/templates/network-policy/networkpolicy-ingress.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/templates/provisioning/job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/templates/provisioning/job.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/templates/provisioning/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/templates/provisioning/serviceaccount.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/templates/provisioning/tls-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/templates/provisioning/tls-secret.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/templates/rbac/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/templates/rbac/role.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/templates/rbac/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/templates/rbac/rolebinding.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/templates/rbac/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/templates/rbac/serviceaccount.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/templates/scripts-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/templates/scripts-configmap.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/templates/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/templates/secrets.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/templates/svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/templates/svc.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/templates/tls-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/templates/tls-secret.yaml -------------------------------------------------------------------------------- /observability/jaeger/charts/kafka/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/charts/kafka/values.yaml -------------------------------------------------------------------------------- /observability/jaeger/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/templates/NOTES.txt -------------------------------------------------------------------------------- /observability/jaeger/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/templates/_helpers.tpl -------------------------------------------------------------------------------- /observability/jaeger/templates/agent-ds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/templates/agent-ds.yaml -------------------------------------------------------------------------------- /observability/jaeger/templates/agent-sa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/templates/agent-sa.yaml -------------------------------------------------------------------------------- /observability/jaeger/templates/agent-servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/templates/agent-servicemonitor.yaml -------------------------------------------------------------------------------- /observability/jaeger/templates/agent-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/templates/agent-svc.yaml -------------------------------------------------------------------------------- /observability/jaeger/templates/allinone-agent-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/templates/allinone-agent-svc.yaml -------------------------------------------------------------------------------- /observability/jaeger/templates/allinone-collector-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/templates/allinone-collector-svc.yaml -------------------------------------------------------------------------------- /observability/jaeger/templates/allinone-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/templates/allinone-configmap.yaml -------------------------------------------------------------------------------- /observability/jaeger/templates/allinone-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/templates/allinone-deploy.yaml -------------------------------------------------------------------------------- /observability/jaeger/templates/allinone-ing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/templates/allinone-ing.yaml -------------------------------------------------------------------------------- /observability/jaeger/templates/allinone-query-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/templates/allinone-query-svc.yaml -------------------------------------------------------------------------------- /observability/jaeger/templates/allinone-sa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/templates/allinone-sa.yaml -------------------------------------------------------------------------------- /observability/jaeger/templates/cassandra-schema-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/templates/cassandra-schema-job.yaml -------------------------------------------------------------------------------- /observability/jaeger/templates/cassandra-schema-sa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/templates/cassandra-schema-sa.yaml -------------------------------------------------------------------------------- /observability/jaeger/templates/cassandra-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/templates/cassandra-secret.yaml -------------------------------------------------------------------------------- /observability/jaeger/templates/collector-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/templates/collector-configmap.yaml -------------------------------------------------------------------------------- /observability/jaeger/templates/collector-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/templates/collector-deploy.yaml -------------------------------------------------------------------------------- /observability/jaeger/templates/collector-hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/templates/collector-hpa.yaml -------------------------------------------------------------------------------- /observability/jaeger/templates/collector-ing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/templates/collector-ing.yaml -------------------------------------------------------------------------------- /observability/jaeger/templates/collector-networkpolicy-egress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/templates/collector-networkpolicy-egress.yaml -------------------------------------------------------------------------------- /observability/jaeger/templates/collector-networkpolicy-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/templates/collector-networkpolicy-ingress.yaml -------------------------------------------------------------------------------- /observability/jaeger/templates/collector-sa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/templates/collector-sa.yaml -------------------------------------------------------------------------------- /observability/jaeger/templates/collector-servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/templates/collector-servicemonitor.yaml -------------------------------------------------------------------------------- /observability/jaeger/templates/collector-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/templates/collector-svc.yaml -------------------------------------------------------------------------------- /observability/jaeger/templates/elasticsearch-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/templates/elasticsearch-secret.yaml -------------------------------------------------------------------------------- /observability/jaeger/templates/es-index-cleaner-cronjob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/templates/es-index-cleaner-cronjob.yaml -------------------------------------------------------------------------------- /observability/jaeger/templates/es-index-cleaner-sa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/templates/es-index-cleaner-sa.yaml -------------------------------------------------------------------------------- /observability/jaeger/templates/es-lookback-cronjob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/templates/es-lookback-cronjob.yaml -------------------------------------------------------------------------------- /observability/jaeger/templates/es-lookback-sa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/templates/es-lookback-sa.yaml -------------------------------------------------------------------------------- /observability/jaeger/templates/es-rollover-cronjob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/templates/es-rollover-cronjob.yaml -------------------------------------------------------------------------------- /observability/jaeger/templates/es-rollover-hook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/templates/es-rollover-hook.yml -------------------------------------------------------------------------------- /observability/jaeger/templates/es-rollover-sa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/templates/es-rollover-sa.yaml -------------------------------------------------------------------------------- /observability/jaeger/templates/extra-list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/templates/extra-list.yaml -------------------------------------------------------------------------------- /observability/jaeger/templates/hotrod-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/templates/hotrod-deploy.yaml -------------------------------------------------------------------------------- /observability/jaeger/templates/hotrod-ing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/templates/hotrod-ing.yaml -------------------------------------------------------------------------------- /observability/jaeger/templates/hotrod-sa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/templates/hotrod-sa.yaml -------------------------------------------------------------------------------- /observability/jaeger/templates/hotrod-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/templates/hotrod-svc.yaml -------------------------------------------------------------------------------- /observability/jaeger/templates/ingester-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/templates/ingester-deploy.yaml -------------------------------------------------------------------------------- /observability/jaeger/templates/ingester-hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/templates/ingester-hpa.yaml -------------------------------------------------------------------------------- /observability/jaeger/templates/ingester-sa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/templates/ingester-sa.yaml -------------------------------------------------------------------------------- /observability/jaeger/templates/ingester-servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/templates/ingester-servicemonitor.yaml -------------------------------------------------------------------------------- /observability/jaeger/templates/ingester-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/templates/ingester-svc.yaml -------------------------------------------------------------------------------- /observability/jaeger/templates/oauth-sidecar-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/templates/oauth-sidecar-configmap.yaml -------------------------------------------------------------------------------- /observability/jaeger/templates/query-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/templates/query-configmap.yaml -------------------------------------------------------------------------------- /observability/jaeger/templates/query-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/templates/query-deploy.yaml -------------------------------------------------------------------------------- /observability/jaeger/templates/query-ing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/templates/query-ing.yaml -------------------------------------------------------------------------------- /observability/jaeger/templates/query-networkpolicy-egress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/templates/query-networkpolicy-egress.yaml -------------------------------------------------------------------------------- /observability/jaeger/templates/query-networkpolicy-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/templates/query-networkpolicy-ingress.yaml -------------------------------------------------------------------------------- /observability/jaeger/templates/query-sa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/templates/query-sa.yaml -------------------------------------------------------------------------------- /observability/jaeger/templates/query-servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/templates/query-servicemonitor.yaml -------------------------------------------------------------------------------- /observability/jaeger/templates/query-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/templates/query-svc.yaml -------------------------------------------------------------------------------- /observability/jaeger/templates/spark-cronjob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/templates/spark-cronjob.yaml -------------------------------------------------------------------------------- /observability/jaeger/templates/spark-sa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/templates/spark-sa.yaml -------------------------------------------------------------------------------- /observability/jaeger/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/jaeger/values.yaml -------------------------------------------------------------------------------- /observability/metric/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/metric/Chart.yaml -------------------------------------------------------------------------------- /observability/metric/charts/alertmanager/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/metric/charts/alertmanager/Chart.yaml -------------------------------------------------------------------------------- /observability/metric/charts/alertmanager/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/metric/charts/alertmanager/templates/configmap.yaml -------------------------------------------------------------------------------- /observability/metric/charts/alertmanager/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/metric/charts/alertmanager/templates/deployment.yaml -------------------------------------------------------------------------------- /observability/metric/charts/alertmanager/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/metric/charts/alertmanager/templates/service.yaml -------------------------------------------------------------------------------- /observability/metric/charts/alertmanager/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/metric/charts/alertmanager/values.yaml -------------------------------------------------------------------------------- /observability/metric/charts/cadvisor/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/metric/charts/cadvisor/Chart.yaml -------------------------------------------------------------------------------- /observability/metric/charts/cadvisor/templates/daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/metric/charts/cadvisor/templates/daemonset.yaml -------------------------------------------------------------------------------- /observability/metric/charts/cadvisor/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/metric/charts/cadvisor/templates/service.yaml -------------------------------------------------------------------------------- /observability/metric/charts/cadvisor/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/metric/charts/cadvisor/values.yaml -------------------------------------------------------------------------------- /observability/metric/charts/grafana/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/metric/charts/grafana/Chart.yaml -------------------------------------------------------------------------------- /observability/metric/charts/grafana/grafana-config/dashboards/1860_rev31.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/metric/charts/grafana/grafana-config/dashboards/1860_rev31.json -------------------------------------------------------------------------------- /observability/metric/charts/grafana/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/metric/charts/grafana/templates/configmap.yaml -------------------------------------------------------------------------------- /observability/metric/charts/grafana/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/metric/charts/grafana/templates/deployment.yaml -------------------------------------------------------------------------------- /observability/metric/charts/grafana/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/metric/charts/grafana/templates/service.yaml -------------------------------------------------------------------------------- /observability/metric/charts/grafana/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/metric/charts/grafana/values.yaml -------------------------------------------------------------------------------- /observability/metric/charts/node-exporter/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/metric/charts/node-exporter/Chart.yaml -------------------------------------------------------------------------------- /observability/metric/charts/node-exporter/templates/daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/metric/charts/node-exporter/templates/daemonset.yaml -------------------------------------------------------------------------------- /observability/metric/charts/node-exporter/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/metric/charts/node-exporter/templates/service.yaml -------------------------------------------------------------------------------- /observability/metric/charts/node-exporter/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/metric/charts/node-exporter/values.yaml -------------------------------------------------------------------------------- /observability/metric/charts/prometheus/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/metric/charts/prometheus/Chart.yaml -------------------------------------------------------------------------------- /observability/metric/charts/prometheus/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/metric/charts/prometheus/templates/configmap.yaml -------------------------------------------------------------------------------- /observability/metric/charts/prometheus/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/metric/charts/prometheus/templates/deployment.yaml -------------------------------------------------------------------------------- /observability/metric/charts/prometheus/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/metric/charts/prometheus/templates/role.yaml -------------------------------------------------------------------------------- /observability/metric/charts/prometheus/templates/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/metric/charts/prometheus/templates/rolebinding.yaml -------------------------------------------------------------------------------- /observability/metric/charts/prometheus/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/metric/charts/prometheus/templates/service.yaml -------------------------------------------------------------------------------- /observability/metric/charts/prometheus/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/metric/charts/prometheus/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /observability/metric/charts/prometheus/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/metric/charts/prometheus/values.yaml -------------------------------------------------------------------------------- /observability/metric/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/metric/templates/_helpers.tpl -------------------------------------------------------------------------------- /observability/metric/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/observability/metric/values.yaml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/requirements.txt -------------------------------------------------------------------------------- /training/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/training/.env.example -------------------------------------------------------------------------------- /training/notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/training/notebook.ipynb -------------------------------------------------------------------------------- /training/training_script/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/training/training_script/install.sh -------------------------------------------------------------------------------- /training/training_script/training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/training/training_script/training.py -------------------------------------------------------------------------------- /training/training_script/unsloth/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/training/training_script/unsloth/LICENSE -------------------------------------------------------------------------------- /training/training_script/unsloth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/training/training_script/unsloth/README.md -------------------------------------------------------------------------------- /training/training_script/unsloth/images/Colab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/training/training_script/unsloth/images/Colab.png -------------------------------------------------------------------------------- /training/training_script/unsloth/images/Discord button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/training/training_script/unsloth/images/Discord button.png -------------------------------------------------------------------------------- /training/training_script/unsloth/images/Discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/training/training_script/unsloth/images/Discord.png -------------------------------------------------------------------------------- /training/training_script/unsloth/images/Free version button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/training/training_script/unsloth/images/Free version button.png -------------------------------------------------------------------------------- /training/training_script/unsloth/images/Kaggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/training/training_script/unsloth/images/Kaggle.png -------------------------------------------------------------------------------- /training/training_script/unsloth/images/Kofi button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/training/training_script/unsloth/images/Kofi button.png -------------------------------------------------------------------------------- /training/training_script/unsloth/images/LAION 2GPU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/training/training_script/unsloth/images/LAION 2GPU.png -------------------------------------------------------------------------------- /training/training_script/unsloth/images/Slim Orca 2GPUs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/training/training_script/unsloth/images/Slim Orca 2GPUs.png -------------------------------------------------------------------------------- /training/training_script/unsloth/images/buy me a coffee button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/training/training_script/unsloth/images/buy me a coffee button.png -------------------------------------------------------------------------------- /training/training_script/unsloth/images/made with unsloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/training/training_script/unsloth/images/made with unsloth.png -------------------------------------------------------------------------------- /training/training_script/unsloth/images/peft x trl button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/training/training_script/unsloth/images/peft x trl button.png -------------------------------------------------------------------------------- /training/training_script/unsloth/images/start free finetune button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/training/training_script/unsloth/images/start free finetune button.png -------------------------------------------------------------------------------- /training/training_script/unsloth/images/unsloth end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/training/training_script/unsloth/images/unsloth end.png -------------------------------------------------------------------------------- /training/training_script/unsloth/images/unsloth loading page render.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/training/training_script/unsloth/images/unsloth loading page render.png -------------------------------------------------------------------------------- /training/training_script/unsloth/images/unsloth logo black text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/training/training_script/unsloth/images/unsloth logo black text.png -------------------------------------------------------------------------------- /training/training_script/unsloth/images/unsloth logo only.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/training/training_script/unsloth/images/unsloth logo only.png -------------------------------------------------------------------------------- /training/training_script/unsloth/images/unsloth logo white text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/training/training_script/unsloth/images/unsloth logo white text.png -------------------------------------------------------------------------------- /training/training_script/unsloth/images/unsloth made with love.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/training/training_script/unsloth/images/unsloth made with love.png -------------------------------------------------------------------------------- /training/training_script/unsloth/images/unsloth new logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/training/training_script/unsloth/images/unsloth new logo.png -------------------------------------------------------------------------------- /training/training_script/unsloth/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/training/training_script/unsloth/pyproject.toml -------------------------------------------------------------------------------- /training/training_script/unsloth/unsloth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/training/training_script/unsloth/unsloth/__init__.py -------------------------------------------------------------------------------- /training/training_script/unsloth/unsloth/chat_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/training/training_script/unsloth/unsloth/chat_templates.py -------------------------------------------------------------------------------- /training/training_script/unsloth/unsloth/kernels/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/training/training_script/unsloth/unsloth/kernels/__init__.py -------------------------------------------------------------------------------- /training/training_script/unsloth/unsloth/kernels/cross_entropy_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/training/training_script/unsloth/unsloth/kernels/cross_entropy_loss.py -------------------------------------------------------------------------------- /training/training_script/unsloth/unsloth/kernels/fast_lora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/training/training_script/unsloth/unsloth/kernels/fast_lora.py -------------------------------------------------------------------------------- /training/training_script/unsloth/unsloth/kernels/geglu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/training/training_script/unsloth/unsloth/kernels/geglu.py -------------------------------------------------------------------------------- /training/training_script/unsloth/unsloth/kernels/rms_layernorm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/training/training_script/unsloth/unsloth/kernels/rms_layernorm.py -------------------------------------------------------------------------------- /training/training_script/unsloth/unsloth/kernels/rope_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/training/training_script/unsloth/unsloth/kernels/rope_embedding.py -------------------------------------------------------------------------------- /training/training_script/unsloth/unsloth/kernels/swiglu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/training/training_script/unsloth/unsloth/kernels/swiglu.py -------------------------------------------------------------------------------- /training/training_script/unsloth/unsloth/kernels/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/training/training_script/unsloth/unsloth/kernels/utils.py -------------------------------------------------------------------------------- /training/training_script/unsloth/unsloth/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/training/training_script/unsloth/unsloth/models/__init__.py -------------------------------------------------------------------------------- /training/training_script/unsloth/unsloth/models/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/training/training_script/unsloth/unsloth/models/_utils.py -------------------------------------------------------------------------------- /training/training_script/unsloth/unsloth/models/dpo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/training/training_script/unsloth/unsloth/models/dpo.py -------------------------------------------------------------------------------- /training/training_script/unsloth/unsloth/models/gemma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/training/training_script/unsloth/unsloth/models/gemma.py -------------------------------------------------------------------------------- /training/training_script/unsloth/unsloth/models/llama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/training/training_script/unsloth/unsloth/models/llama.py -------------------------------------------------------------------------------- /training/training_script/unsloth/unsloth/models/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/training/training_script/unsloth/unsloth/models/loader.py -------------------------------------------------------------------------------- /training/training_script/unsloth/unsloth/models/mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/training/training_script/unsloth/unsloth/models/mapper.py -------------------------------------------------------------------------------- /training/training_script/unsloth/unsloth/models/mistral.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/training/training_script/unsloth/unsloth/models/mistral.py -------------------------------------------------------------------------------- /training/training_script/unsloth/unsloth/models/qwen2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/training/training_script/unsloth/unsloth/models/qwen2.py -------------------------------------------------------------------------------- /training/training_script/unsloth/unsloth/save.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/training/training_script/unsloth/unsloth/save.py -------------------------------------------------------------------------------- /training/training_script/unsloth/unsloth/tokenizer_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/training/training_script/unsloth/unsloth/tokenizer_utils.py -------------------------------------------------------------------------------- /training/training_script/unsloth/unsloth/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/training/training_script/unsloth/unsloth/trainer.py -------------------------------------------------------------------------------- /training/training_script/utils/training_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/training/training_script/utils/training_utils.py -------------------------------------------------------------------------------- /training/translate/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /training/translate/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/training/translate/constants.py -------------------------------------------------------------------------------- /training/translate/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/training/translate/main.py -------------------------------------------------------------------------------- /training/translate/requirements.txt: -------------------------------------------------------------------------------- 1 | fire 2 | datasets 3 | google-generativeai 4 | loguru -------------------------------------------------------------------------------- /training/translate/translator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/training/translate/translator.py -------------------------------------------------------------------------------- /training/translate/utils/merge_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinhln03/LLM_Quote_Generator/HEAD/training/translate/utils/merge_file.py --------------------------------------------------------------------------------