├── .pre-commit-config.yaml ├── Dockerfile ├── Dockerfile.Jenkins ├── Jenkinsfile ├── README.md ├── app.py ├── assets ├── add_gke_con.gif ├── chatbot.gif ├── chatbot_ui.png ├── compute_instance.png ├── connect2gke.png ├── create_jenkins_pipe.gif ├── dockerhub_token.gif ├── github_token.gif ├── gke_ui.png ├── grafana.gif ├── jenkins_logs.png ├── jenkins_setup.gif ├── jenkins_stage.png ├── jenkins_success.png ├── monitor.gif ├── new_pipeline.png ├── newest_pipeline.png ├── ngrok.gif ├── pipeline.png ├── popup.png ├── test.pdf └── tgi.gif ├── env.py ├── helm ├── model-serving │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── nginx-ingress.yaml │ │ └── service.yaml │ └── values.yaml ├── monitor │ ├── Chart.yaml │ ├── charts │ │ ├── kube-prometheus-stack │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Chart.lock │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── charts │ │ │ │ ├── grafana │ │ │ │ │ ├── .helmignore │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── README.md │ │ │ │ │ ├── ci │ │ │ │ │ │ ├── default-values.yaml │ │ │ │ │ │ ├── with-affinity-values.yaml │ │ │ │ │ │ ├── with-dashboard-json-values.yaml │ │ │ │ │ │ ├── with-dashboard-values.yaml │ │ │ │ │ │ ├── with-extraconfigmapmounts-values.yaml │ │ │ │ │ │ ├── with-image-renderer-values.yaml │ │ │ │ │ │ └── with-persistence.yaml │ │ │ │ │ ├── dashboards │ │ │ │ │ │ └── custom-dashboard.json │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ │ ├── _pod.tpl │ │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ │ ├── configmap-dashboard-provider.yaml │ │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ │ ├── dashboards-json-configmap.yaml │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ ├── extra-manifests.yaml │ │ │ │ │ │ ├── headless-service.yaml │ │ │ │ │ │ ├── hpa.yaml │ │ │ │ │ │ ├── image-renderer-deployment.yaml │ │ │ │ │ │ ├── image-renderer-hpa.yaml │ │ │ │ │ │ ├── image-renderer-network-policy.yaml │ │ │ │ │ │ ├── image-renderer-service.yaml │ │ │ │ │ │ ├── image-renderer-servicemonitor.yaml │ │ │ │ │ │ ├── ingress.yaml │ │ │ │ │ │ ├── networkpolicy.yaml │ │ │ │ │ │ ├── poddisruptionbudget.yaml │ │ │ │ │ │ ├── podsecuritypolicy.yaml │ │ │ │ │ │ ├── pvc.yaml │ │ │ │ │ │ ├── role.yaml │ │ │ │ │ │ ├── rolebinding.yaml │ │ │ │ │ │ ├── secret-env.yaml │ │ │ │ │ │ ├── secret.yaml │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ │ ├── servicemonitor.yaml │ │ │ │ │ │ ├── statefulset.yaml │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ ├── test-configmap.yaml │ │ │ │ │ │ │ ├── test-podsecuritypolicy.yaml │ │ │ │ │ │ │ ├── test-role.yaml │ │ │ │ │ │ │ ├── test-rolebinding.yaml │ │ │ │ │ │ │ ├── test-serviceaccount.yaml │ │ │ │ │ │ │ └── test.yaml │ │ │ │ │ └── values.yaml │ │ │ │ ├── kube-state-metrics │ │ │ │ │ ├── .helmignore │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── README.md │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ │ ├── ciliumnetworkpolicy.yaml │ │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ │ ├── crs-configmap.yaml │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ ├── kubeconfig-secret.yaml │ │ │ │ │ │ ├── networkpolicy.yaml │ │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ │ ├── podsecuritypolicy.yaml │ │ │ │ │ │ ├── psp-clusterrole.yaml │ │ │ │ │ │ ├── psp-clusterrolebinding.yaml │ │ │ │ │ │ ├── rbac-configmap.yaml │ │ │ │ │ │ ├── role.yaml │ │ │ │ │ │ ├── rolebinding.yaml │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ │ ├── servicemonitor.yaml │ │ │ │ │ │ ├── stsdiscovery-role.yaml │ │ │ │ │ │ ├── stsdiscovery-rolebinding.yaml │ │ │ │ │ │ └── verticalpodautoscaler.yaml │ │ │ │ │ └── values.yaml │ │ │ │ ├── prometheus-node-exporter │ │ │ │ │ ├── .helmignore │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── README.md │ │ │ │ │ ├── ci │ │ │ │ │ │ └── port-values.yaml │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ │ ├── daemonset.yaml │ │ │ │ │ │ ├── endpoints.yaml │ │ │ │ │ │ ├── networkpolicy.yaml │ │ │ │ │ │ ├── podmonitor.yaml │ │ │ │ │ │ ├── psp-clusterrole.yaml │ │ │ │ │ │ ├── psp-clusterrolebinding.yaml │ │ │ │ │ │ ├── psp.yaml │ │ │ │ │ │ ├── rbac-configmap.yaml │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ │ ├── servicemonitor.yaml │ │ │ │ │ │ └── verticalpodautoscaler.yaml │ │ │ │ │ └── values.yaml │ │ │ │ └── prometheus-windows-exporter │ │ │ │ │ ├── .helmignore │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── README.md │ │ │ │ │ ├── templates │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── config.yaml │ │ │ │ │ ├── daemonset.yaml │ │ │ │ │ ├── podmonitor.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ └── servicemonitor.yaml │ │ │ │ │ └── values.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── alertmanager │ │ │ │ │ ├── alertmanager.yaml │ │ │ │ │ ├── extrasecret.yaml │ │ │ │ │ ├── ingress.yaml │ │ │ │ │ ├── ingressperreplica.yaml │ │ │ │ │ ├── podDisruptionBudget.yaml │ │ │ │ │ ├── psp-role.yaml │ │ │ │ │ ├── psp-rolebinding.yaml │ │ │ │ │ ├── psp.yaml │ │ │ │ │ ├── secret.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ ├── servicemonitor.yaml │ │ │ │ │ └── serviceperreplica.yaml │ │ │ │ ├── exporters │ │ │ │ │ ├── core-dns │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ └── servicemonitor.yaml │ │ │ │ │ ├── kube-api-server │ │ │ │ │ │ └── servicemonitor.yaml │ │ │ │ │ ├── kube-controller-manager │ │ │ │ │ │ ├── endpoints.yaml │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ └── servicemonitor.yaml │ │ │ │ │ ├── kube-dns │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ └── servicemonitor.yaml │ │ │ │ │ ├── kube-etcd │ │ │ │ │ │ ├── endpoints.yaml │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ └── servicemonitor.yaml │ │ │ │ │ ├── kube-proxy │ │ │ │ │ │ ├── endpoints.yaml │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ └── servicemonitor.yaml │ │ │ │ │ ├── kube-scheduler │ │ │ │ │ │ ├── endpoints.yaml │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ └── servicemonitor.yaml │ │ │ │ │ └── kubelet │ │ │ │ │ │ └── servicemonitor.yaml │ │ │ │ ├── extra-objects.yaml │ │ │ │ ├── grafana │ │ │ │ │ ├── configmap-dashboards.yaml │ │ │ │ │ ├── configmaps-datasources.yaml │ │ │ │ │ └── dashboards-1.14 │ │ │ │ │ │ ├── alertmanager-overview.yaml │ │ │ │ │ │ ├── apiserver.yaml │ │ │ │ │ │ ├── cluster-total.yaml │ │ │ │ │ │ ├── controller-manager.yaml │ │ │ │ │ │ ├── etcd.yaml │ │ │ │ │ │ ├── grafana-overview.yaml │ │ │ │ │ │ ├── k8s-coredns.yaml │ │ │ │ │ │ ├── k8s-resources-cluster.yaml │ │ │ │ │ │ ├── k8s-resources-multicluster.yaml │ │ │ │ │ │ ├── k8s-resources-namespace.yaml │ │ │ │ │ │ ├── k8s-resources-node.yaml │ │ │ │ │ │ ├── k8s-resources-pod.yaml │ │ │ │ │ │ ├── k8s-resources-windows-cluster.yaml │ │ │ │ │ │ ├── k8s-resources-windows-namespace.yaml │ │ │ │ │ │ ├── k8s-resources-windows-pod.yaml │ │ │ │ │ │ ├── k8s-resources-workload.yaml │ │ │ │ │ │ ├── k8s-resources-workloads-namespace.yaml │ │ │ │ │ │ ├── k8s-windows-cluster-rsrc-use.yaml │ │ │ │ │ │ ├── k8s-windows-node-rsrc-use.yaml │ │ │ │ │ │ ├── kubelet.yaml │ │ │ │ │ │ ├── namespace-by-pod.yaml │ │ │ │ │ │ ├── namespace-by-workload.yaml │ │ │ │ │ │ ├── node-cluster-rsrc-use.yaml │ │ │ │ │ │ ├── node-rsrc-use.yaml │ │ │ │ │ │ ├── nodes-darwin.yaml │ │ │ │ │ │ ├── nodes.yaml │ │ │ │ │ │ ├── persistentvolumesusage.yaml │ │ │ │ │ │ ├── pod-total.yaml │ │ │ │ │ │ ├── prometheus-remote-write.yaml │ │ │ │ │ │ ├── prometheus.yaml │ │ │ │ │ │ ├── proxy.yaml │ │ │ │ │ │ ├── scheduler.yaml │ │ │ │ │ │ └── workload-total.yaml │ │ │ │ ├── prometheus-operator │ │ │ │ │ ├── admission-webhooks │ │ │ │ │ │ ├── job-patch │ │ │ │ │ │ │ ├── ciliumnetworkpolicy-createSecret.yaml │ │ │ │ │ │ │ ├── ciliumnetworkpolicy-patchWebhook.yaml │ │ │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ │ │ ├── job-createSecret.yaml │ │ │ │ │ │ │ ├── job-patchWebhook.yaml │ │ │ │ │ │ │ ├── networkpolicy-createSecret.yaml │ │ │ │ │ │ │ ├── networkpolicy-patchWebhook.yaml │ │ │ │ │ │ │ ├── psp.yaml │ │ │ │ │ │ │ ├── role.yaml │ │ │ │ │ │ │ ├── rolebinding.yaml │ │ │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ │ │ ├── mutatingWebhookConfiguration.yaml │ │ │ │ │ │ └── validatingWebhookConfiguration.yaml │ │ │ │ │ ├── aggregate-clusterroles.yaml │ │ │ │ │ ├── certmanager.yaml │ │ │ │ │ ├── ciliumnetworkpolicy.yaml │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── networkpolicy.yaml │ │ │ │ │ ├── psp-clusterrole.yaml │ │ │ │ │ ├── psp-clusterrolebinding.yaml │ │ │ │ │ ├── psp.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ ├── servicemonitor.yaml │ │ │ │ │ └── verticalpodautoscaler.yaml │ │ │ │ ├── prometheus │ │ │ │ │ ├── _rules.tpl │ │ │ │ │ ├── additionalAlertRelabelConfigs.yaml │ │ │ │ │ ├── additionalAlertmanagerConfigs.yaml │ │ │ │ │ ├── additionalPrometheusRules.yaml │ │ │ │ │ ├── additionalScrapeConfigs.yaml │ │ │ │ │ ├── ciliumnetworkpolicy.yaml │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ ├── csi-secret.yaml │ │ │ │ │ ├── extrasecret.yaml │ │ │ │ │ ├── ingress.yaml │ │ │ │ │ ├── ingressThanosSidecar.yaml │ │ │ │ │ ├── ingressperreplica.yaml │ │ │ │ │ ├── networkpolicy.yaml │ │ │ │ │ ├── podDisruptionBudget.yaml │ │ │ │ │ ├── podmonitors.yaml │ │ │ │ │ ├── prometheus.yaml │ │ │ │ │ ├── psp-clusterrole.yaml │ │ │ │ │ ├── psp-clusterrolebinding.yaml │ │ │ │ │ ├── psp.yaml │ │ │ │ │ ├── rules-1.14 │ │ │ │ │ │ ├── alertmanager.rules.yaml │ │ │ │ │ │ ├── config-reloaders.yaml │ │ │ │ │ │ ├── etcd.yaml │ │ │ │ │ │ ├── general.rules.yaml │ │ │ │ │ │ ├── k8s.rules.yaml │ │ │ │ │ │ ├── kube-apiserver-availability.rules.yaml │ │ │ │ │ │ ├── kube-apiserver-burnrate.rules.yaml │ │ │ │ │ │ ├── kube-apiserver-histogram.rules.yaml │ │ │ │ │ │ ├── kube-apiserver-slos.yaml │ │ │ │ │ │ ├── kube-prometheus-general.rules.yaml │ │ │ │ │ │ ├── kube-prometheus-node-recording.rules.yaml │ │ │ │ │ │ ├── kube-scheduler.rules.yaml │ │ │ │ │ │ ├── kube-state-metrics.yaml │ │ │ │ │ │ ├── kubelet.rules.yaml │ │ │ │ │ │ ├── kubernetes-apps.yaml │ │ │ │ │ │ ├── kubernetes-resources.yaml │ │ │ │ │ │ ├── kubernetes-storage.yaml │ │ │ │ │ │ ├── kubernetes-system-apiserver.yaml │ │ │ │ │ │ ├── kubernetes-system-controller-manager.yaml │ │ │ │ │ │ ├── kubernetes-system-kube-proxy.yaml │ │ │ │ │ │ ├── kubernetes-system-kubelet.yaml │ │ │ │ │ │ ├── kubernetes-system-scheduler.yaml │ │ │ │ │ │ ├── kubernetes-system.yaml │ │ │ │ │ │ ├── node-exporter.rules.yaml │ │ │ │ │ │ ├── node-exporter.yaml │ │ │ │ │ │ ├── node-network.yaml │ │ │ │ │ │ ├── node.rules.yaml │ │ │ │ │ │ ├── prometheus-operator.yaml │ │ │ │ │ │ ├── prometheus.yaml │ │ │ │ │ │ ├── windows.node.rules.yaml │ │ │ │ │ │ └── windows.pod.rules.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── serviceThanosSidecar.yaml │ │ │ │ │ ├── serviceThanosSidecarExternal.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ ├── servicemonitor.yaml │ │ │ │ │ ├── servicemonitorThanosSidecar.yaml │ │ │ │ │ ├── servicemonitors.yaml │ │ │ │ │ └── serviceperreplica.yaml │ │ │ │ └── thanos-ruler │ │ │ │ │ ├── extrasecret.yaml │ │ │ │ │ ├── ingress.yaml │ │ │ │ │ ├── podDisruptionBudget.yaml │ │ │ │ │ ├── ruler.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ └── servicemonitor.yaml │ │ │ └── values.yaml │ │ ├── loki-stack │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── charts │ │ │ │ ├── fluent-bit │ │ │ │ │ ├── .helmignore │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── README.md │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ │ ├── daemonset.yaml │ │ │ │ │ │ ├── podsecuritypolicy.yaml │ │ │ │ │ │ ├── role.yaml │ │ │ │ │ │ ├── rolebinding.yaml │ │ │ │ │ │ ├── service-headless.yaml │ │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ │ └── servicemonitor.yaml │ │ │ │ │ └── values.yaml │ │ │ │ └── loki │ │ │ │ │ ├── .helmignore │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── README.md │ │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── configmap-alert.yaml │ │ │ │ │ ├── ingress.yaml │ │ │ │ │ ├── networkpolicy.yaml │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ ├── podsecuritypolicy.yaml │ │ │ │ │ ├── prometheusrule.yaml │ │ │ │ │ ├── role.yaml │ │ │ │ │ ├── rolebinding.yaml │ │ │ │ │ ├── secret.yaml │ │ │ │ │ ├── service-headless.yaml │ │ │ │ │ ├── service-memberlist.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ ├── servicemonitor.yaml │ │ │ │ │ └── statefulset.yaml │ │ │ │ │ └── values.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── datasources.yaml │ │ │ │ └── tests │ │ │ │ │ ├── loki-test-configmap.yaml │ │ │ │ │ └── loki-test-pod.yaml │ │ │ └── values.yaml │ │ ├── opentelemetry-collector │ │ │ ├── .helmignore │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── UPGRADING.md │ │ │ ├── ci │ │ │ │ ├── GOMEMLIMIT-values.yaml │ │ │ │ ├── clusterrole-values.yaml │ │ │ │ ├── config-override-values.yaml │ │ │ │ ├── daemonset-values.yaml │ │ │ │ ├── deployment-values.yaml │ │ │ │ ├── disabling-protocols-values.yaml │ │ │ │ ├── hpa-deployment-values.yaml │ │ │ │ ├── hpa-statefulset-values.yaml │ │ │ │ ├── multiple-ingress-values.yaml │ │ │ │ ├── networkpolicy-override-values.yaml │ │ │ │ ├── networkpolicy-values.yaml │ │ │ │ ├── preset-clustermetrics-values.yaml │ │ │ │ ├── preset-hostmetrics-values.yaml │ │ │ │ ├── preset-k8sevents-values.yaml │ │ │ │ ├── preset-kubeletmetrics-values.yaml │ │ │ │ ├── preset-kubernetesattributes-values.yaml │ │ │ │ ├── preset-logscollection-values.yaml │ │ │ │ ├── probes-values.yaml │ │ │ │ └── statefulset-values.yaml │ │ │ ├── examples │ │ │ │ ├── README.md │ │ │ │ ├── daemonset-and-deployment │ │ │ │ │ ├── daemonset-values.yaml │ │ │ │ │ ├── deployment-values.yaml │ │ │ │ │ └── rendered │ │ │ │ │ │ ├── configmap-agent.yaml │ │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ │ ├── daemonset.yaml │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ ├── daemonset-collector-logs │ │ │ │ │ ├── rendered │ │ │ │ │ │ ├── configmap-agent.yaml │ │ │ │ │ │ ├── daemonset.yaml │ │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ │ └── values.yaml │ │ │ │ ├── daemonset-hostmetrics │ │ │ │ │ ├── rendered │ │ │ │ │ │ ├── configmap-agent.yaml │ │ │ │ │ │ ├── daemonset.yaml │ │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ │ └── values.yaml │ │ │ │ ├── daemonset-lifecycle-hooks │ │ │ │ │ ├── rendered │ │ │ │ │ │ ├── configmap-agent.yaml │ │ │ │ │ │ ├── daemonset.yaml │ │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ │ └── values.yaml │ │ │ │ ├── daemonset-only │ │ │ │ │ ├── rendered │ │ │ │ │ │ ├── configmap-agent.yaml │ │ │ │ │ │ ├── daemonset.yaml │ │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ │ └── values.yaml │ │ │ │ ├── deployment-only │ │ │ │ │ ├── rendered │ │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ │ └── values.yaml │ │ │ │ ├── deployment-otlp-traces │ │ │ │ │ ├── rendered │ │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ │ └── values.yaml │ │ │ │ ├── deployment-use-existing-configMap │ │ │ │ │ ├── deployment-values.yaml │ │ │ │ │ └── rendered │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ ├── kubernetesAttributes │ │ │ │ │ ├── rendered │ │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ │ └── values.yaml │ │ │ │ ├── statefulset-only │ │ │ │ │ ├── rendered │ │ │ │ │ │ ├── configmap-statefulset.yaml │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ │ └── statefulset.yaml │ │ │ │ │ └── values.yaml │ │ │ │ ├── statefulset-with-pvc │ │ │ │ │ ├── rendered │ │ │ │ │ │ ├── configmap-statefulset.yaml │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ │ └── statefulset.yaml │ │ │ │ │ └── values.yaml │ │ │ │ ├── using-GOMEMLIMIT │ │ │ │ │ ├── rendered │ │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ │ └── values.yaml │ │ │ │ └── using-custom-config │ │ │ │ │ ├── rendered │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ │ └── values.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _config.tpl │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── _pod.tpl │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── configmap-agent.yaml │ │ │ │ ├── configmap-statefulset.yaml │ │ │ │ ├── configmap.yaml │ │ │ │ ├── daemonset.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── hpa.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── networkpolicy.yaml │ │ │ │ ├── pdb.yaml │ │ │ │ ├── podmonitor.yaml │ │ │ │ ├── prometheusrule.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── servicemonitor.yaml │ │ │ │ └── statefulset.yaml │ │ │ ├── values.schema.json │ │ │ └── values.yaml │ │ └── tempo │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── README.md.gotmpl │ │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ ├── configmap-tempo-query.yaml │ │ │ ├── configmap-tempo.yaml │ │ │ ├── ingress-tempo-query.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── servicemonitor.yaml │ │ │ └── statefulset.yaml │ │ │ └── values.yaml │ ├── crds │ │ ├── crd-alertmanagerconfigs.yaml │ │ ├── crd-alertmanagers.yaml │ │ ├── crd-podmonitors.yaml │ │ ├── crd-probes.yaml │ │ ├── crd-prometheusagents.yaml │ │ ├── crd-prometheuses.yaml │ │ ├── crd-prometheusrules.yaml │ │ ├── crd-scrapeconfigs.yaml │ │ ├── crd-servicemonitors.yaml │ │ └── crd-thanosrulers.yaml │ └── values.yaml └── 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 ├── iac ├── ansible │ ├── inventory │ ├── playbooks │ │ ├── create_compute_instance.yml │ │ └── install_docker.yaml │ └── requirements.txt └── terraform │ ├── main.tf │ └── variables.tf ├── notebooks ├── Dataset_Creating_For_Fine_Tuning_TinyLlama.ipynb └── Finetuning_TinyLlama.ipynb ├── requirements.txt └── utils.py /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.Jenkins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/Dockerfile.Jenkins -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/app.py -------------------------------------------------------------------------------- /assets/add_gke_con.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/assets/add_gke_con.gif -------------------------------------------------------------------------------- /assets/chatbot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/assets/chatbot.gif -------------------------------------------------------------------------------- /assets/chatbot_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/assets/chatbot_ui.png -------------------------------------------------------------------------------- /assets/compute_instance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/assets/compute_instance.png -------------------------------------------------------------------------------- /assets/connect2gke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/assets/connect2gke.png -------------------------------------------------------------------------------- /assets/create_jenkins_pipe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/assets/create_jenkins_pipe.gif -------------------------------------------------------------------------------- /assets/dockerhub_token.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/assets/dockerhub_token.gif -------------------------------------------------------------------------------- /assets/github_token.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/assets/github_token.gif -------------------------------------------------------------------------------- /assets/gke_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/assets/gke_ui.png -------------------------------------------------------------------------------- /assets/grafana.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/assets/grafana.gif -------------------------------------------------------------------------------- /assets/jenkins_logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/assets/jenkins_logs.png -------------------------------------------------------------------------------- /assets/jenkins_setup.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/assets/jenkins_setup.gif -------------------------------------------------------------------------------- /assets/jenkins_stage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/assets/jenkins_stage.png -------------------------------------------------------------------------------- /assets/jenkins_success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/assets/jenkins_success.png -------------------------------------------------------------------------------- /assets/monitor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/assets/monitor.gif -------------------------------------------------------------------------------- /assets/new_pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/assets/new_pipeline.png -------------------------------------------------------------------------------- /assets/newest_pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/assets/newest_pipeline.png -------------------------------------------------------------------------------- /assets/ngrok.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/assets/ngrok.gif -------------------------------------------------------------------------------- /assets/pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/assets/pipeline.png -------------------------------------------------------------------------------- /assets/popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/assets/popup.png -------------------------------------------------------------------------------- /assets/test.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/assets/test.pdf -------------------------------------------------------------------------------- /assets/tgi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/assets/tgi.gif -------------------------------------------------------------------------------- /env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/env.py -------------------------------------------------------------------------------- /helm/model-serving/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/model-serving/.helmignore -------------------------------------------------------------------------------- /helm/model-serving/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/model-serving/Chart.yaml -------------------------------------------------------------------------------- /helm/model-serving/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/model-serving/templates/NOTES.txt -------------------------------------------------------------------------------- /helm/model-serving/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/model-serving/templates/configmap.yaml -------------------------------------------------------------------------------- /helm/model-serving/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/model-serving/templates/deployment.yaml -------------------------------------------------------------------------------- /helm/model-serving/templates/nginx-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/model-serving/templates/nginx-ingress.yaml -------------------------------------------------------------------------------- /helm/model-serving/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/model-serving/templates/service.yaml -------------------------------------------------------------------------------- /helm/model-serving/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/model-serving/values.yaml -------------------------------------------------------------------------------- /helm/monitor/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/Chart.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/CONTRIBUTING.md -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/Chart.lock -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/Chart.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/README.md -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/grafana/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/grafana/.helmignore -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/grafana/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/grafana/Chart.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/grafana/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/grafana/README.md -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/grafana/ci/default-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/grafana/ci/default-values.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/grafana/ci/with-affinity-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/grafana/ci/with-affinity-values.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/grafana/ci/with-dashboard-json-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/grafana/ci/with-dashboard-json-values.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/grafana/ci/with-dashboard-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/grafana/ci/with-dashboard-values.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/grafana/ci/with-extraconfigmapmounts-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/grafana/ci/with-extraconfigmapmounts-values.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/grafana/ci/with-image-renderer-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/grafana/ci/with-image-renderer-values.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/grafana/ci/with-persistence.yaml: -------------------------------------------------------------------------------- 1 | persistence: 2 | type: pvc 3 | enabled: true 4 | -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/grafana/dashboards/custom-dashboard.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/NOTES.txt -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/_pod.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/_pod.tpl -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/clusterrole.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/clusterrolebinding.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/configmap-dashboard-provider.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/configmap-dashboard-provider.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/configmap.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/dashboards-json-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/dashboards-json-configmap.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/deployment.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/extra-manifests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/extra-manifests.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/headless-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/headless-service.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/hpa.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/image-renderer-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/image-renderer-deployment.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/image-renderer-hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/image-renderer-hpa.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/image-renderer-network-policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/image-renderer-network-policy.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/image-renderer-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/image-renderer-service.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/image-renderer-servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/image-renderer-servicemonitor.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/ingress.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/poddisruptionbudget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/poddisruptionbudget.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/podsecuritypolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/podsecuritypolicy.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/pvc.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/role.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/rolebinding.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/secret-env.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/secret-env.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/secret.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/service.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/statefulset.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/tests/test-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/tests/test-configmap.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/tests/test-podsecuritypolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/tests/test-podsecuritypolicy.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/tests/test-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/tests/test-role.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/tests/test-rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/tests/test-rolebinding.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/tests/test-serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/tests/test-serviceaccount.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/tests/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/grafana/templates/tests/test.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/grafana/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/grafana/values.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/kube-state-metrics/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/kube-state-metrics/.helmignore -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/kube-state-metrics/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/kube-state-metrics/Chart.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/kube-state-metrics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/kube-state-metrics/README.md -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/NOTES.txt -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/ciliumnetworkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/ciliumnetworkpolicy.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/clusterrolebinding.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/crs-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/crs-configmap.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/deployment.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/kubeconfig-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/kubeconfig-secret.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/pdb.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/podsecuritypolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/podsecuritypolicy.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/psp-clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/psp-clusterrole.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/psp-clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/psp-clusterrolebinding.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/rbac-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/rbac-configmap.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/role.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/rolebinding.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/service.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/stsdiscovery-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/stsdiscovery-role.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/stsdiscovery-rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/stsdiscovery-rolebinding.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/verticalpodautoscaler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/verticalpodautoscaler.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/kube-state-metrics/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/kube-state-metrics/values.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/prometheus-node-exporter/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/prometheus-node-exporter/.helmignore -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/prometheus-node-exporter/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/prometheus-node-exporter/Chart.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/prometheus-node-exporter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/prometheus-node-exporter/README.md -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/prometheus-node-exporter/ci/port-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/prometheus-node-exporter/ci/port-values.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/prometheus-node-exporter/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/prometheus-node-exporter/templates/NOTES.txt -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/prometheus-node-exporter/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/prometheus-node-exporter/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/prometheus-node-exporter/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/prometheus-node-exporter/templates/clusterrole.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/prometheus-node-exporter/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/prometheus-node-exporter/templates/clusterrolebinding.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/prometheus-node-exporter/templates/daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/prometheus-node-exporter/templates/daemonset.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/prometheus-node-exporter/templates/endpoints.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/prometheus-node-exporter/templates/endpoints.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/prometheus-node-exporter/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/prometheus-node-exporter/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/prometheus-node-exporter/templates/podmonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/prometheus-node-exporter/templates/podmonitor.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/prometheus-node-exporter/templates/psp-clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/prometheus-node-exporter/templates/psp-clusterrole.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/prometheus-node-exporter/templates/psp-clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/prometheus-node-exporter/templates/psp-clusterrolebinding.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/prometheus-node-exporter/templates/psp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/prometheus-node-exporter/templates/psp.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/prometheus-node-exporter/templates/rbac-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/prometheus-node-exporter/templates/rbac-configmap.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/prometheus-node-exporter/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/prometheus-node-exporter/templates/service.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/prometheus-node-exporter/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/prometheus-node-exporter/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/prometheus-node-exporter/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/prometheus-node-exporter/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/prometheus-node-exporter/templates/verticalpodautoscaler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/prometheus-node-exporter/templates/verticalpodautoscaler.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/prometheus-node-exporter/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/prometheus-node-exporter/values.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/prometheus-windows-exporter/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/prometheus-windows-exporter/.helmignore -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/prometheus-windows-exporter/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/prometheus-windows-exporter/Chart.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/prometheus-windows-exporter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/prometheus-windows-exporter/README.md -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/prometheus-windows-exporter/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/prometheus-windows-exporter/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/prometheus-windows-exporter/templates/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/prometheus-windows-exporter/templates/config.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/prometheus-windows-exporter/templates/daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/prometheus-windows-exporter/templates/daemonset.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/prometheus-windows-exporter/templates/podmonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/prometheus-windows-exporter/templates/podmonitor.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/prometheus-windows-exporter/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/prometheus-windows-exporter/templates/service.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/prometheus-windows-exporter/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/prometheus-windows-exporter/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/prometheus-windows-exporter/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/prometheus-windows-exporter/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/charts/prometheus-windows-exporter/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/charts/prometheus-windows-exporter/values.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/NOTES.txt -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/alertmanager/alertmanager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/alertmanager/alertmanager.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/alertmanager/extrasecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/alertmanager/extrasecret.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/alertmanager/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/alertmanager/ingress.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/alertmanager/ingressperreplica.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/alertmanager/ingressperreplica.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/alertmanager/podDisruptionBudget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/alertmanager/podDisruptionBudget.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/alertmanager/psp-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/alertmanager/psp-role.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/alertmanager/psp-rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/alertmanager/psp-rolebinding.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/alertmanager/psp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/alertmanager/psp.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/alertmanager/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/alertmanager/secret.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/alertmanager/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/alertmanager/service.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/alertmanager/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/alertmanager/serviceaccount.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/alertmanager/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/alertmanager/servicemonitor.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/alertmanager/serviceperreplica.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/alertmanager/serviceperreplica.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/exporters/core-dns/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/exporters/core-dns/service.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/exporters/core-dns/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/exporters/core-dns/servicemonitor.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/exporters/kube-api-server/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/exporters/kube-api-server/servicemonitor.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/exporters/kube-controller-manager/endpoints.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/exporters/kube-controller-manager/endpoints.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/exporters/kube-controller-manager/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/exporters/kube-controller-manager/service.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/exporters/kube-controller-manager/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/exporters/kube-controller-manager/servicemonitor.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/exporters/kube-dns/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/exporters/kube-dns/service.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/exporters/kube-dns/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/exporters/kube-dns/servicemonitor.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/exporters/kube-etcd/endpoints.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/exporters/kube-etcd/endpoints.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/exporters/kube-etcd/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/exporters/kube-etcd/service.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/exporters/kube-etcd/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/exporters/kube-etcd/servicemonitor.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/exporters/kube-proxy/endpoints.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/exporters/kube-proxy/endpoints.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/exporters/kube-proxy/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/exporters/kube-proxy/service.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/exporters/kube-proxy/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/exporters/kube-proxy/servicemonitor.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/exporters/kube-scheduler/endpoints.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/exporters/kube-scheduler/endpoints.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/exporters/kube-scheduler/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/exporters/kube-scheduler/service.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/exporters/kube-scheduler/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/exporters/kube-scheduler/servicemonitor.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/exporters/kubelet/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/exporters/kubelet/servicemonitor.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/extra-objects.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/extra-objects.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/grafana/configmap-dashboards.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/grafana/configmap-dashboards.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/grafana/configmaps-datasources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/grafana/configmaps-datasources.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/alertmanager-overview.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/alertmanager-overview.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/apiserver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/apiserver.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/cluster-total.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/cluster-total.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/controller-manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/controller-manager.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/etcd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/etcd.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/grafana-overview.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/grafana-overview.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/k8s-coredns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/k8s-coredns.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/k8s-resources-cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/k8s-resources-cluster.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/k8s-resources-multicluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/k8s-resources-multicluster.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/k8s-resources-namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/k8s-resources-namespace.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/k8s-resources-node.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/k8s-resources-node.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/k8s-resources-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/k8s-resources-pod.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/k8s-resources-windows-cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/k8s-resources-windows-cluster.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/k8s-resources-windows-namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/k8s-resources-windows-namespace.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/k8s-resources-windows-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/k8s-resources-windows-pod.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/k8s-resources-workload.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/k8s-resources-workload.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/k8s-resources-workloads-namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/k8s-resources-workloads-namespace.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/k8s-windows-cluster-rsrc-use.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/k8s-windows-cluster-rsrc-use.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/k8s-windows-node-rsrc-use.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/k8s-windows-node-rsrc-use.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/kubelet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/kubelet.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/namespace-by-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/namespace-by-pod.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/namespace-by-workload.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/namespace-by-workload.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/node-cluster-rsrc-use.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/node-cluster-rsrc-use.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/node-rsrc-use.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/node-rsrc-use.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/nodes-darwin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/nodes-darwin.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/nodes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/nodes.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/persistentvolumesusage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/persistentvolumesusage.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/pod-total.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/pod-total.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/prometheus-remote-write.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/prometheus-remote-write.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/prometheus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/prometheus.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/proxy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/proxy.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/scheduler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/scheduler.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/workload-total.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/workload-total.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/job-patch/ciliumnetworkpolicy-createSecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/job-patch/ciliumnetworkpolicy-createSecret.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/job-patch/ciliumnetworkpolicy-patchWebhook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/job-patch/ciliumnetworkpolicy-patchWebhook.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/job-patch/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/job-patch/clusterrole.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/job-patch/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/job-patch/clusterrolebinding.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/job-patch/job-createSecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/job-patch/job-createSecret.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/job-patch/job-patchWebhook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/job-patch/job-patchWebhook.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/job-patch/networkpolicy-createSecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/job-patch/networkpolicy-createSecret.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/job-patch/networkpolicy-patchWebhook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/job-patch/networkpolicy-patchWebhook.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/job-patch/psp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/job-patch/psp.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/job-patch/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/job-patch/role.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/job-patch/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/job-patch/rolebinding.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/job-patch/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/job-patch/serviceaccount.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/mutatingWebhookConfiguration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/mutatingWebhookConfiguration.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/validatingWebhookConfiguration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/validatingWebhookConfiguration.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus-operator/aggregate-clusterroles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus-operator/aggregate-clusterroles.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus-operator/certmanager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus-operator/certmanager.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus-operator/ciliumnetworkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus-operator/ciliumnetworkpolicy.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus-operator/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus-operator/clusterrole.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus-operator/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus-operator/clusterrolebinding.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus-operator/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus-operator/deployment.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus-operator/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus-operator/networkpolicy.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus-operator/psp-clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus-operator/psp-clusterrole.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus-operator/psp-clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus-operator/psp-clusterrolebinding.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus-operator/psp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus-operator/psp.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus-operator/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus-operator/service.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus-operator/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus-operator/serviceaccount.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus-operator/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus-operator/servicemonitor.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus-operator/verticalpodautoscaler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus-operator/verticalpodautoscaler.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus/_rules.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus/_rules.tpl -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus/additionalAlertRelabelConfigs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus/additionalAlertRelabelConfigs.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus/additionalAlertmanagerConfigs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus/additionalAlertmanagerConfigs.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus/additionalPrometheusRules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus/additionalPrometheusRules.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus/additionalScrapeConfigs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus/additionalScrapeConfigs.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus/ciliumnetworkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus/ciliumnetworkpolicy.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus/clusterrole.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus/clusterrolebinding.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus/csi-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus/csi-secret.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus/extrasecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus/extrasecret.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus/ingress.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus/ingressThanosSidecar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus/ingressThanosSidecar.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus/ingressperreplica.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus/ingressperreplica.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus/networkpolicy.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus/podDisruptionBudget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus/podDisruptionBudget.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus/podmonitors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus/podmonitors.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus/prometheus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus/prometheus.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus/psp-clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus/psp-clusterrole.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus/psp-clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus/psp-clusterrolebinding.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus/psp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus/psp.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/alertmanager.rules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/alertmanager.rules.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/config-reloaders.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/config-reloaders.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/etcd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/etcd.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/general.rules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/general.rules.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/k8s.rules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/k8s.rules.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kube-apiserver-availability.rules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kube-apiserver-availability.rules.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kube-apiserver-burnrate.rules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kube-apiserver-burnrate.rules.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kube-apiserver-histogram.rules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kube-apiserver-histogram.rules.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kube-apiserver-slos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kube-apiserver-slos.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kube-prometheus-general.rules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kube-prometheus-general.rules.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kube-prometheus-node-recording.rules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kube-prometheus-node-recording.rules.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kube-scheduler.rules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kube-scheduler.rules.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kube-state-metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kube-state-metrics.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kubelet.rules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kubelet.rules.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kubernetes-apps.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kubernetes-apps.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kubernetes-resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kubernetes-resources.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kubernetes-storage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kubernetes-storage.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kubernetes-system-apiserver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kubernetes-system-apiserver.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kubernetes-system-controller-manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kubernetes-system-controller-manager.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kubernetes-system-kube-proxy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kubernetes-system-kube-proxy.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kubernetes-system-kubelet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kubernetes-system-kubelet.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kubernetes-system-scheduler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kubernetes-system-scheduler.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kubernetes-system.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kubernetes-system.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/node-exporter.rules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/node-exporter.rules.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/node-exporter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/node-exporter.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/node-network.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/node-network.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/node.rules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/node.rules.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/prometheus-operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/prometheus-operator.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/prometheus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/prometheus.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/windows.node.rules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/windows.node.rules.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/windows.pod.rules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/windows.pod.rules.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus/service.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus/serviceThanosSidecar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus/serviceThanosSidecar.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus/serviceThanosSidecarExternal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus/serviceThanosSidecarExternal.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus/serviceaccount.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus/servicemonitor.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus/servicemonitorThanosSidecar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus/servicemonitorThanosSidecar.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus/servicemonitors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus/servicemonitors.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/prometheus/serviceperreplica.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/prometheus/serviceperreplica.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/thanos-ruler/extrasecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/thanos-ruler/extrasecret.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/thanos-ruler/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/thanos-ruler/ingress.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/thanos-ruler/podDisruptionBudget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/thanos-ruler/podDisruptionBudget.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/thanos-ruler/ruler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/thanos-ruler/ruler.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/thanos-ruler/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/thanos-ruler/service.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/thanos-ruler/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/thanos-ruler/serviceaccount.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/templates/thanos-ruler/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/templates/thanos-ruler/servicemonitor.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/kube-prometheus-stack/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/kube-prometheus-stack/values.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/loki-stack/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/loki-stack/.helmignore -------------------------------------------------------------------------------- /helm/monitor/charts/loki-stack/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/loki-stack/Chart.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/loki-stack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/loki-stack/README.md -------------------------------------------------------------------------------- /helm/monitor/charts/loki-stack/charts/fluent-bit/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/loki-stack/charts/fluent-bit/.helmignore -------------------------------------------------------------------------------- /helm/monitor/charts/loki-stack/charts/fluent-bit/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/loki-stack/charts/fluent-bit/Chart.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/loki-stack/charts/fluent-bit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/loki-stack/charts/fluent-bit/README.md -------------------------------------------------------------------------------- /helm/monitor/charts/loki-stack/charts/fluent-bit/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/loki-stack/charts/fluent-bit/templates/NOTES.txt -------------------------------------------------------------------------------- /helm/monitor/charts/loki-stack/charts/fluent-bit/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/loki-stack/charts/fluent-bit/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm/monitor/charts/loki-stack/charts/fluent-bit/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/loki-stack/charts/fluent-bit/templates/clusterrole.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/loki-stack/charts/fluent-bit/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/loki-stack/charts/fluent-bit/templates/clusterrolebinding.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/loki-stack/charts/fluent-bit/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/loki-stack/charts/fluent-bit/templates/configmap.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/loki-stack/charts/fluent-bit/templates/daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/loki-stack/charts/fluent-bit/templates/daemonset.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/loki-stack/charts/fluent-bit/templates/podsecuritypolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/loki-stack/charts/fluent-bit/templates/podsecuritypolicy.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/loki-stack/charts/fluent-bit/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/loki-stack/charts/fluent-bit/templates/role.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/loki-stack/charts/fluent-bit/templates/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/loki-stack/charts/fluent-bit/templates/rolebinding.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/loki-stack/charts/fluent-bit/templates/service-headless.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/loki-stack/charts/fluent-bit/templates/service-headless.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/loki-stack/charts/fluent-bit/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/loki-stack/charts/fluent-bit/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/loki-stack/charts/fluent-bit/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/loki-stack/charts/fluent-bit/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/loki-stack/charts/fluent-bit/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/loki-stack/charts/fluent-bit/values.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/loki-stack/charts/loki/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/loki-stack/charts/loki/.helmignore -------------------------------------------------------------------------------- /helm/monitor/charts/loki-stack/charts/loki/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/loki-stack/charts/loki/Chart.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/loki-stack/charts/loki/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/loki-stack/charts/loki/README.md -------------------------------------------------------------------------------- /helm/monitor/charts/loki-stack/charts/loki/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/loki-stack/charts/loki/templates/NOTES.txt -------------------------------------------------------------------------------- /helm/monitor/charts/loki-stack/charts/loki/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/loki-stack/charts/loki/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm/monitor/charts/loki-stack/charts/loki/templates/configmap-alert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/loki-stack/charts/loki/templates/configmap-alert.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/loki-stack/charts/loki/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/loki-stack/charts/loki/templates/ingress.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/loki-stack/charts/loki/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/loki-stack/charts/loki/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/loki-stack/charts/loki/templates/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/loki-stack/charts/loki/templates/pdb.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/loki-stack/charts/loki/templates/podsecuritypolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/loki-stack/charts/loki/templates/podsecuritypolicy.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/loki-stack/charts/loki/templates/prometheusrule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/loki-stack/charts/loki/templates/prometheusrule.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/loki-stack/charts/loki/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/loki-stack/charts/loki/templates/role.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/loki-stack/charts/loki/templates/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/loki-stack/charts/loki/templates/rolebinding.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/loki-stack/charts/loki/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/loki-stack/charts/loki/templates/secret.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/loki-stack/charts/loki/templates/service-headless.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/loki-stack/charts/loki/templates/service-headless.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/loki-stack/charts/loki/templates/service-memberlist.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/loki-stack/charts/loki/templates/service-memberlist.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/loki-stack/charts/loki/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/loki-stack/charts/loki/templates/service.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/loki-stack/charts/loki/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/loki-stack/charts/loki/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/loki-stack/charts/loki/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/loki-stack/charts/loki/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/loki-stack/charts/loki/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/loki-stack/charts/loki/templates/statefulset.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/loki-stack/charts/loki/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/loki-stack/charts/loki/values.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/loki-stack/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/loki-stack/templates/NOTES.txt -------------------------------------------------------------------------------- /helm/monitor/charts/loki-stack/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/loki-stack/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm/monitor/charts/loki-stack/templates/datasources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/loki-stack/templates/datasources.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/loki-stack/templates/tests/loki-test-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/loki-stack/templates/tests/loki-test-configmap.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/loki-stack/templates/tests/loki-test-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/loki-stack/templates/tests/loki-test-pod.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/loki-stack/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/loki-stack/values.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/.helmignore -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/CONTRIBUTING.md -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/Chart.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/README.md -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/UPGRADING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/UPGRADING.md -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/ci/GOMEMLIMIT-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/ci/GOMEMLIMIT-values.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/ci/clusterrole-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/ci/clusterrole-values.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/ci/config-override-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/ci/config-override-values.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/ci/daemonset-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/ci/daemonset-values.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/ci/deployment-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/ci/deployment-values.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/ci/disabling-protocols-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/ci/disabling-protocols-values.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/ci/hpa-deployment-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/ci/hpa-deployment-values.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/ci/hpa-statefulset-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/ci/hpa-statefulset-values.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/ci/multiple-ingress-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/ci/multiple-ingress-values.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/ci/networkpolicy-override-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/ci/networkpolicy-override-values.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/ci/networkpolicy-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/ci/networkpolicy-values.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/ci/preset-clustermetrics-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/ci/preset-clustermetrics-values.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/ci/preset-hostmetrics-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/ci/preset-hostmetrics-values.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/ci/preset-k8sevents-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/ci/preset-k8sevents-values.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/ci/preset-kubeletmetrics-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/ci/preset-kubeletmetrics-values.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/ci/preset-kubernetesattributes-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/ci/preset-kubernetesattributes-values.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/ci/preset-logscollection-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/ci/preset-logscollection-values.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/ci/probes-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/ci/probes-values.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/ci/statefulset-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/ci/statefulset-values.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/README.md -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/daemonset-and-deployment/daemonset-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/daemonset-and-deployment/daemonset-values.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/daemonset-and-deployment/deployment-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/daemonset-and-deployment/deployment-values.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/daemonset-and-deployment/rendered/configmap-agent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/daemonset-and-deployment/rendered/configmap-agent.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/daemonset-and-deployment/rendered/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/daemonset-and-deployment/rendered/configmap.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/daemonset-and-deployment/rendered/daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/daemonset-and-deployment/rendered/daemonset.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/daemonset-and-deployment/rendered/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/daemonset-and-deployment/rendered/deployment.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/daemonset-and-deployment/rendered/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/daemonset-and-deployment/rendered/service.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/daemonset-and-deployment/rendered/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/daemonset-and-deployment/rendered/serviceaccount.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/daemonset-collector-logs/rendered/configmap-agent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/daemonset-collector-logs/rendered/configmap-agent.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/daemonset-collector-logs/rendered/daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/daemonset-collector-logs/rendered/daemonset.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/daemonset-collector-logs/rendered/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/daemonset-collector-logs/rendered/serviceaccount.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/daemonset-collector-logs/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/daemonset-collector-logs/values.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/daemonset-hostmetrics/rendered/configmap-agent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/daemonset-hostmetrics/rendered/configmap-agent.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/daemonset-hostmetrics/rendered/daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/daemonset-hostmetrics/rendered/daemonset.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/daemonset-hostmetrics/rendered/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/daemonset-hostmetrics/rendered/serviceaccount.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/daemonset-hostmetrics/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/daemonset-hostmetrics/values.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/daemonset-lifecycle-hooks/rendered/configmap-agent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/daemonset-lifecycle-hooks/rendered/configmap-agent.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/daemonset-lifecycle-hooks/rendered/daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/daemonset-lifecycle-hooks/rendered/daemonset.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/daemonset-lifecycle-hooks/rendered/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/daemonset-lifecycle-hooks/rendered/serviceaccount.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/daemonset-lifecycle-hooks/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/daemonset-lifecycle-hooks/values.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/daemonset-only/rendered/configmap-agent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/daemonset-only/rendered/configmap-agent.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/daemonset-only/rendered/daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/daemonset-only/rendered/daemonset.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/daemonset-only/rendered/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/daemonset-only/rendered/serviceaccount.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/daemonset-only/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/daemonset-only/values.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/deployment-only/rendered/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/deployment-only/rendered/configmap.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/deployment-only/rendered/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/deployment-only/rendered/deployment.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/deployment-only/rendered/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/deployment-only/rendered/service.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/deployment-only/rendered/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/deployment-only/rendered/serviceaccount.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/deployment-only/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/deployment-only/values.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/deployment-otlp-traces/rendered/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/deployment-otlp-traces/rendered/configmap.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/deployment-otlp-traces/rendered/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/deployment-otlp-traces/rendered/deployment.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/deployment-otlp-traces/rendered/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/deployment-otlp-traces/rendered/service.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/deployment-otlp-traces/rendered/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/deployment-otlp-traces/rendered/serviceaccount.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/deployment-otlp-traces/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/deployment-otlp-traces/values.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/deployment-use-existing-configMap/deployment-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/deployment-use-existing-configMap/deployment-values.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/deployment-use-existing-configMap/rendered/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/deployment-use-existing-configMap/rendered/deployment.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/deployment-use-existing-configMap/rendered/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/deployment-use-existing-configMap/rendered/service.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/deployment-use-existing-configMap/rendered/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/deployment-use-existing-configMap/rendered/serviceaccount.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/kubernetesAttributes/rendered/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/kubernetesAttributes/rendered/clusterrole.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/kubernetesAttributes/rendered/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/kubernetesAttributes/rendered/clusterrolebinding.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/kubernetesAttributes/rendered/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/kubernetesAttributes/rendered/configmap.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/kubernetesAttributes/rendered/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/kubernetesAttributes/rendered/deployment.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/kubernetesAttributes/rendered/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/kubernetesAttributes/rendered/service.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/kubernetesAttributes/rendered/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/kubernetesAttributes/rendered/serviceaccount.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/kubernetesAttributes/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/kubernetesAttributes/values.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/statefulset-only/rendered/configmap-statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/statefulset-only/rendered/configmap-statefulset.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/statefulset-only/rendered/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/statefulset-only/rendered/service.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/statefulset-only/rendered/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/statefulset-only/rendered/serviceaccount.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/statefulset-only/rendered/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/statefulset-only/rendered/statefulset.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/statefulset-only/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/statefulset-only/values.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/statefulset-with-pvc/rendered/configmap-statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/statefulset-with-pvc/rendered/configmap-statefulset.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/statefulset-with-pvc/rendered/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/statefulset-with-pvc/rendered/service.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/statefulset-with-pvc/rendered/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/statefulset-with-pvc/rendered/serviceaccount.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/statefulset-with-pvc/rendered/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/statefulset-with-pvc/rendered/statefulset.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/statefulset-with-pvc/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/statefulset-with-pvc/values.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/using-GOMEMLIMIT/rendered/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/using-GOMEMLIMIT/rendered/configmap.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/using-GOMEMLIMIT/rendered/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/using-GOMEMLIMIT/rendered/deployment.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/using-GOMEMLIMIT/rendered/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/using-GOMEMLIMIT/rendered/service.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/using-GOMEMLIMIT/rendered/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/using-GOMEMLIMIT/rendered/serviceaccount.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/using-GOMEMLIMIT/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/using-GOMEMLIMIT/values.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/using-custom-config/rendered/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/using-custom-config/rendered/deployment.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/using-custom-config/rendered/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/using-custom-config/rendered/service.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/using-custom-config/rendered/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/using-custom-config/rendered/serviceaccount.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/examples/using-custom-config/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/examples/using-custom-config/values.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/templates/NOTES.txt -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/templates/_config.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/templates/_config.tpl -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/templates/_pod.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/templates/_pod.tpl -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/templates/clusterrole.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/templates/clusterrolebinding.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/templates/configmap-agent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/templates/configmap-agent.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/templates/configmap-statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/templates/configmap-statefulset.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/templates/configmap.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/templates/daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/templates/daemonset.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/templates/deployment.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/templates/hpa.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/templates/ingress.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/templates/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/templates/pdb.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/templates/podmonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/templates/podmonitor.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/templates/prometheusrule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/templates/prometheusrule.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/templates/service.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/templates/statefulset.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/values.schema.json -------------------------------------------------------------------------------- /helm/monitor/charts/opentelemetry-collector/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/opentelemetry-collector/values.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/tempo/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/tempo/.helmignore -------------------------------------------------------------------------------- /helm/monitor/charts/tempo/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/tempo/Chart.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/tempo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/tempo/README.md -------------------------------------------------------------------------------- /helm/monitor/charts/tempo/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/tempo/README.md.gotmpl -------------------------------------------------------------------------------- /helm/monitor/charts/tempo/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/tempo/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm/monitor/charts/tempo/templates/configmap-tempo-query.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/tempo/templates/configmap-tempo-query.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/tempo/templates/configmap-tempo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/tempo/templates/configmap-tempo.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/tempo/templates/ingress-tempo-query.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/tempo/templates/ingress-tempo-query.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/tempo/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/tempo/templates/service.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/tempo/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/tempo/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/tempo/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/tempo/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/tempo/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/tempo/templates/statefulset.yaml -------------------------------------------------------------------------------- /helm/monitor/charts/tempo/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/charts/tempo/values.yaml -------------------------------------------------------------------------------- /helm/monitor/crds/crd-alertmanagerconfigs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/crds/crd-alertmanagerconfigs.yaml -------------------------------------------------------------------------------- /helm/monitor/crds/crd-alertmanagers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/crds/crd-alertmanagers.yaml -------------------------------------------------------------------------------- /helm/monitor/crds/crd-podmonitors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/crds/crd-podmonitors.yaml -------------------------------------------------------------------------------- /helm/monitor/crds/crd-probes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/crds/crd-probes.yaml -------------------------------------------------------------------------------- /helm/monitor/crds/crd-prometheusagents.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/crds/crd-prometheusagents.yaml -------------------------------------------------------------------------------- /helm/monitor/crds/crd-prometheuses.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/crds/crd-prometheuses.yaml -------------------------------------------------------------------------------- /helm/monitor/crds/crd-prometheusrules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/crds/crd-prometheusrules.yaml -------------------------------------------------------------------------------- /helm/monitor/crds/crd-scrapeconfigs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/crds/crd-scrapeconfigs.yaml -------------------------------------------------------------------------------- /helm/monitor/crds/crd-servicemonitors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/crds/crd-servicemonitors.yaml -------------------------------------------------------------------------------- /helm/monitor/crds/crd-thanosrulers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/crds/crd-thanosrulers.yaml -------------------------------------------------------------------------------- /helm/monitor/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/monitor/values.yaml -------------------------------------------------------------------------------- /helm/nginx-ingress/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | *.png 3 | -------------------------------------------------------------------------------- /helm/nginx-ingress/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/nginx-ingress/Chart.yaml -------------------------------------------------------------------------------- /helm/nginx-ingress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/nginx-ingress/README.md -------------------------------------------------------------------------------- /helm/nginx-ingress/crds/appprotect.f5.com_aplogconfs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/nginx-ingress/crds/appprotect.f5.com_aplogconfs.yaml -------------------------------------------------------------------------------- /helm/nginx-ingress/crds/appprotect.f5.com_appolicies.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/nginx-ingress/crds/appprotect.f5.com_appolicies.yaml -------------------------------------------------------------------------------- /helm/nginx-ingress/crds/appprotect.f5.com_apusersigs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/nginx-ingress/crds/appprotect.f5.com_apusersigs.yaml -------------------------------------------------------------------------------- /helm/nginx-ingress/crds/appprotectdos.f5.com_apdoslogconfs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/nginx-ingress/crds/appprotectdos.f5.com_apdoslogconfs.yaml -------------------------------------------------------------------------------- /helm/nginx-ingress/crds/appprotectdos.f5.com_apdospolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/nginx-ingress/crds/appprotectdos.f5.com_apdospolicy.yaml -------------------------------------------------------------------------------- /helm/nginx-ingress/crds/appprotectdos.f5.com_dosprotectedresources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/nginx-ingress/crds/appprotectdos.f5.com_dosprotectedresources.yaml -------------------------------------------------------------------------------- /helm/nginx-ingress/crds/externaldns.nginx.org_dnsendpoints.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/nginx-ingress/crds/externaldns.nginx.org_dnsendpoints.yaml -------------------------------------------------------------------------------- /helm/nginx-ingress/crds/k8s.nginx.org_globalconfigurations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/nginx-ingress/crds/k8s.nginx.org_globalconfigurations.yaml -------------------------------------------------------------------------------- /helm/nginx-ingress/crds/k8s.nginx.org_policies.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/nginx-ingress/crds/k8s.nginx.org_policies.yaml -------------------------------------------------------------------------------- /helm/nginx-ingress/crds/k8s.nginx.org_transportservers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/nginx-ingress/crds/k8s.nginx.org_transportservers.yaml -------------------------------------------------------------------------------- /helm/nginx-ingress/crds/k8s.nginx.org_virtualserverroutes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/nginx-ingress/crds/k8s.nginx.org_virtualserverroutes.yaml -------------------------------------------------------------------------------- /helm/nginx-ingress/crds/k8s.nginx.org_virtualservers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/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/LongDaHo/Chatbot-with-LLM/HEAD/helm/nginx-ingress/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm/nginx-ingress/templates/controller-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/nginx-ingress/templates/controller-configmap.yaml -------------------------------------------------------------------------------- /helm/nginx-ingress/templates/controller-daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/nginx-ingress/templates/controller-daemonset.yaml -------------------------------------------------------------------------------- /helm/nginx-ingress/templates/controller-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/nginx-ingress/templates/controller-deployment.yaml -------------------------------------------------------------------------------- /helm/nginx-ingress/templates/controller-globalconfiguration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/nginx-ingress/templates/controller-globalconfiguration.yaml -------------------------------------------------------------------------------- /helm/nginx-ingress/templates/controller-hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/nginx-ingress/templates/controller-hpa.yaml -------------------------------------------------------------------------------- /helm/nginx-ingress/templates/controller-ingress-class.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/nginx-ingress/templates/controller-ingress-class.yaml -------------------------------------------------------------------------------- /helm/nginx-ingress/templates/controller-leader-election-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/nginx-ingress/templates/controller-leader-election-configmap.yaml -------------------------------------------------------------------------------- /helm/nginx-ingress/templates/controller-pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/nginx-ingress/templates/controller-pdb.yaml -------------------------------------------------------------------------------- /helm/nginx-ingress/templates/controller-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/nginx-ingress/templates/controller-secret.yaml -------------------------------------------------------------------------------- /helm/nginx-ingress/templates/controller-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/nginx-ingress/templates/controller-service.yaml -------------------------------------------------------------------------------- /helm/nginx-ingress/templates/controller-serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/nginx-ingress/templates/controller-serviceaccount.yaml -------------------------------------------------------------------------------- /helm/nginx-ingress/templates/controller-servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/nginx-ingress/templates/controller-servicemonitor.yaml -------------------------------------------------------------------------------- /helm/nginx-ingress/templates/controller-wildcard-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/nginx-ingress/templates/controller-wildcard-secret.yaml -------------------------------------------------------------------------------- /helm/nginx-ingress/templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/nginx-ingress/templates/rbac.yaml -------------------------------------------------------------------------------- /helm/nginx-ingress/values-icp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/nginx-ingress/values-icp.yaml -------------------------------------------------------------------------------- /helm/nginx-ingress/values-nsm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/nginx-ingress/values-nsm.yaml -------------------------------------------------------------------------------- /helm/nginx-ingress/values-plus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/nginx-ingress/values-plus.yaml -------------------------------------------------------------------------------- /helm/nginx-ingress/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/nginx-ingress/values.schema.json -------------------------------------------------------------------------------- /helm/nginx-ingress/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/helm/nginx-ingress/values.yaml -------------------------------------------------------------------------------- /iac/ansible/inventory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/iac/ansible/inventory -------------------------------------------------------------------------------- /iac/ansible/playbooks/create_compute_instance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/iac/ansible/playbooks/create_compute_instance.yml -------------------------------------------------------------------------------- /iac/ansible/playbooks/install_docker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/iac/ansible/playbooks/install_docker.yaml -------------------------------------------------------------------------------- /iac/ansible/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/iac/ansible/requirements.txt -------------------------------------------------------------------------------- /iac/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/iac/terraform/main.tf -------------------------------------------------------------------------------- /iac/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/iac/terraform/variables.tf -------------------------------------------------------------------------------- /notebooks/Dataset_Creating_For_Fine_Tuning_TinyLlama.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/notebooks/Dataset_Creating_For_Fine_Tuning_TinyLlama.ipynb -------------------------------------------------------------------------------- /notebooks/Finetuning_TinyLlama.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/notebooks/Finetuning_TinyLlama.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongDaHo/Chatbot-with-LLM/HEAD/utils.py --------------------------------------------------------------------------------