├── .clomonitor.yml ├── .editorconfig ├── .github ├── configs │ ├── cr.yaml │ ├── ct-install.yaml │ ├── ct-lint.yaml │ ├── kind-config.yaml │ ├── labeler.yaml │ ├── lintconf.yaml │ └── stale.yml ├── dependabot.yml ├── linters │ ├── .markdown-lint.yml │ └── ct.yaml └── workflows │ ├── auto-assign-issue.yml │ ├── auto-gh-pr.yml │ ├── auto-invite.yml │ ├── auto-tag.yml │ ├── bot-auto-cherry-pick.yml │ ├── chart-version-bump.yml │ ├── cla.yml │ ├── helm-charts-test.yml │ ├── lint-and-test.yml │ ├── lint-test.yml │ ├── lock-issue.yml │ ├── pr-title.yml │ ├── publish.yml │ ├── release.yml │ ├── scorecard.yml │ └── template-comment.yaml ├── .gitignore ├── .goreleaser.yml ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README-zh_CN.md ├── README.md ├── charts ├── openim-admin │ ├── Chart.yaml │ ├── README.md │ ├── README.md.gotmpl │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── hpa.yaml │ │ ├── ingress.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ └── tests │ │ │ └── test-connection.yaml │ └── values.yaml ├── openim-chat │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── README.md.gotmpl │ ├── charts │ │ ├── admin-rpc │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── deployment.yaml │ │ │ │ ├── hpa.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── serviceaccount.yaml │ │ │ └── values.yaml │ │ ├── chat-api │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── deployment.yaml │ │ │ │ ├── hpa.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── serviceaccount.yaml │ │ │ └── values.yaml │ │ └── chat-rpc │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── deployment.yaml │ │ │ ├── hpa.yaml │ │ │ ├── ingress.yaml │ │ │ ├── service.yaml │ │ │ └── serviceaccount.yaml │ │ │ └── values.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── app-cm.yaml │ │ ├── deployment.yaml │ │ ├── hpa.yaml │ │ ├── ingress.yaml │ │ ├── service.yaml │ │ └── serviceaccount.yaml │ └── values.yaml ├── openim-server │ ├── Chart.yaml │ ├── README.md │ ├── README.md.gotmpl │ ├── charts │ │ ├── openim-msggateway-proxy │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── deployment.yaml │ │ │ │ ├── hpa.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceMonitor.yaml │ │ │ │ └── serviceaccount.yaml │ │ │ └── values.yaml │ │ ├── openim-msggateway │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── deployment.yaml │ │ │ │ ├── hpa.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceMonitor.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ └── serviceheadless.yaml │ │ │ └── values.yaml │ │ ├── openim-msgtransfer │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── deployment.yaml │ │ │ │ ├── hpa.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceMonitor.yaml │ │ │ │ └── serviceaccount.yaml │ │ │ └── values.yaml │ │ ├── openim-push │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── deployment.yaml │ │ │ │ ├── hpa.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceMonitor.yaml │ │ │ │ └── serviceaccount.yaml │ │ │ └── values.yaml │ │ ├── openim-rpc-auth │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── deployment.yaml │ │ │ │ ├── hpa.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceMonitor.yaml │ │ │ │ └── serviceaccount.yaml │ │ │ └── values.yaml │ │ ├── openim-rpc-conversation │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── deployment.yaml │ │ │ │ ├── hpa.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceMonitor.yaml │ │ │ │ └── serviceaccount.yaml │ │ │ └── values.yaml │ │ ├── openim-rpc-friend │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── deployment.yaml │ │ │ │ ├── hpa.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceMonitor.yaml │ │ │ │ └── serviceaccount.yaml │ │ │ └── values.yaml │ │ ├── openim-rpc-group │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── deployment.yaml │ │ │ │ ├── hpa.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceMonitor.yaml │ │ │ │ └── serviceaccount.yaml │ │ │ └── values.yaml │ │ ├── openim-rpc-msg │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── deployment.yaml │ │ │ │ ├── hpa.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceMonitor.yaml │ │ │ │ └── serviceaccount.yaml │ │ │ └── values.yaml │ │ ├── openim-rpc-third │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── deployment.yaml │ │ │ │ ├── hpa.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceMonitor.yaml │ │ │ │ └── serviceaccount.yaml │ │ │ └── values.yaml │ │ └── openim-rpc-user │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── deployment.yaml │ │ │ ├── hpa.yaml │ │ │ ├── ingress.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceMonitor.yaml │ │ │ └── serviceaccount.yaml │ │ │ └── values.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── app-cm.yaml │ │ ├── deployment.yaml │ │ ├── hpa.yaml │ │ ├── ingress.yaml │ │ ├── service.yaml │ │ ├── serviceMonitor.yaml │ │ └── serviceaccount.yaml │ └── values.yaml └── openim-web │ ├── Chart.yaml │ ├── README.md │ ├── README.md.gotmpl │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── deployment.yaml │ ├── hpa.yaml │ ├── ingress.yaml │ ├── service.yaml │ ├── serviceaccount.yaml │ └── tests │ │ └── test-connection.yaml │ └── values.yaml ├── config-chatserver.yaml ├── config-imserver.yaml ├── docs ├── CODEOWNERS ├── contrib │ ├── user-guide-zh.md │ ├── user-guide.md │ ├── version-zh.md │ └── version.md ├── images │ ├── img.png │ ├── img_1.png │ ├── img_2.png │ ├── img_3.png │ ├── img_4.png │ ├── img_5.png │ ├── img_6.png │ ├── img_7.png │ ├── img_8.png │ └── img_9.png ├── k8s-custom.yaml └── k8s-loki.yaml ├── helm.sh ├── infra ├── ingress-nginx │ ├── .helmignore │ ├── CHANGELOG.md │ ├── Chart.yaml │ ├── OWNERS │ ├── README.md │ ├── README.md.gotmpl │ ├── changelog.md.gotmpl │ ├── changelog │ │ ├── .gitkeep │ │ ├── Changelog-4.5.2.md │ │ ├── Changelog-4.6.0.md │ │ ├── Changelog-4.6.1.md │ │ ├── Changelog-4.7.0.md │ │ ├── Changelog-4.7.1.md │ │ └── Changelog-4.7.2.md │ ├── ci │ │ ├── controller-admission-tls-cert-manager-values.yaml │ │ ├── controller-custom-ingressclass-flags.yaml │ │ ├── daemonset-customconfig-values.yaml │ │ ├── daemonset-customnodeport-values.yaml │ │ ├── daemonset-extra-modules.yaml │ │ ├── daemonset-headers-values.yaml │ │ ├── daemonset-internal-lb-values.yaml │ │ ├── daemonset-nodeport-values.yaml │ │ ├── daemonset-podannotations-values.yaml │ │ ├── daemonset-tcp-udp-configMapNamespace-values.yaml │ │ ├── daemonset-tcp-udp-portNamePrefix-values.yaml │ │ ├── daemonset-tcp-udp-values.yaml │ │ ├── daemonset-tcp-values.yaml │ │ ├── deamonset-default-values.yaml │ │ ├── deamonset-metrics-values.yaml │ │ ├── deamonset-psp-values.yaml │ │ ├── deamonset-webhook-and-psp-values.yaml │ │ ├── deamonset-webhook-values.yaml │ │ ├── deployment-autoscaling-behavior-values.yaml │ │ ├── deployment-autoscaling-values.yaml │ │ ├── deployment-customconfig-values.yaml │ │ ├── deployment-customnodeport-values.yaml │ │ ├── deployment-default-values.yaml │ │ ├── deployment-extra-modules-default-container-sec-context.yaml │ │ ├── deployment-extra-modules-specific-container-sec-context.yaml │ │ ├── deployment-extra-modules.yaml │ │ ├── deployment-headers-values.yaml │ │ ├── deployment-internal-lb-values.yaml │ │ ├── deployment-metrics-values.yaml │ │ ├── deployment-nodeport-values.yaml │ │ ├── deployment-podannotations-values.yaml │ │ ├── deployment-psp-values.yaml │ │ ├── deployment-tcp-udp-configMapNamespace-values.yaml │ │ ├── deployment-tcp-udp-portNamePrefix-values.yaml │ │ ├── deployment-tcp-udp-values.yaml │ │ ├── deployment-tcp-values.yaml │ │ ├── deployment-webhook-and-psp-values.yaml │ │ ├── deployment-webhook-extraEnvs-values.yaml │ │ ├── deployment-webhook-resources-values.yaml │ │ └── deployment-webhook-values.yaml │ ├── config.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── _params.tpl │ │ ├── admission-webhooks │ │ │ ├── cert-manager.yaml │ │ │ ├── job-patch │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── job-createSecret.yaml │ │ │ │ ├── job-patchWebhook.yaml │ │ │ │ ├── networkpolicy.yaml │ │ │ │ ├── psp.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ └── serviceaccount.yaml │ │ │ └── validating-webhook.yaml │ │ ├── clusterrole.yaml │ │ ├── clusterrolebinding.yaml │ │ ├── controller-configmap-addheaders.yaml │ │ ├── controller-configmap-proxyheaders.yaml │ │ ├── controller-configmap-tcp.yaml │ │ ├── controller-configmap-udp.yaml │ │ ├── controller-configmap.yaml │ │ ├── controller-daemonset.yaml │ │ ├── controller-deployment.yaml │ │ ├── controller-hpa.yaml │ │ ├── controller-ingressclass.yaml │ │ ├── controller-keda.yaml │ │ ├── controller-poddisruptionbudget.yaml │ │ ├── controller-prometheusrules.yaml │ │ ├── controller-psp.yaml │ │ ├── controller-role.yaml │ │ ├── controller-rolebinding.yaml │ │ ├── controller-secret.yaml │ │ ├── controller-service-internal.yaml │ │ ├── controller-service-metrics.yaml │ │ ├── controller-service-webhook.yaml │ │ ├── controller-service.yaml │ │ ├── controller-serviceaccount.yaml │ │ ├── controller-servicemonitor.yaml │ │ ├── controller-webhooks-networkpolicy.yaml │ │ ├── default-backend-deployment.yaml │ │ ├── default-backend-hpa.yaml │ │ ├── default-backend-poddisruptionbudget.yaml │ │ ├── default-backend-psp.yaml │ │ ├── default-backend-role.yaml │ │ ├── default-backend-rolebinding.yaml │ │ ├── default-backend-service.yaml │ │ └── default-backend-serviceaccount.yaml │ └── values.yaml ├── kafka-config.yaml ├── kafka │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── charts │ │ ├── common │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ │ ├── _affinities.tpl │ │ │ │ ├── _capabilities.tpl │ │ │ │ ├── _errors.tpl │ │ │ │ ├── _images.tpl │ │ │ │ ├── _ingress.tpl │ │ │ │ ├── _labels.tpl │ │ │ │ ├── _names.tpl │ │ │ │ ├── _secrets.tpl │ │ │ │ ├── _storage.tpl │ │ │ │ ├── _tplvalues.tpl │ │ │ │ ├── _utils.tpl │ │ │ │ ├── _warnings.tpl │ │ │ │ └── validations │ │ │ │ │ ├── _cassandra.tpl │ │ │ │ │ ├── _mariadb.tpl │ │ │ │ │ ├── _mongodb.tpl │ │ │ │ │ ├── _mysql.tpl │ │ │ │ │ ├── _postgresql.tpl │ │ │ │ │ ├── _redis.tpl │ │ │ │ │ └── _validations.tpl │ │ │ ├── values.schema.json │ │ │ └── values.yaml │ │ └── zookeeper │ │ │ ├── .helmignore │ │ │ ├── Chart.lock │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── charts │ │ │ └── common │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── README.md │ │ │ │ ├── templates │ │ │ │ ├── _affinities.tpl │ │ │ │ ├── _capabilities.tpl │ │ │ │ ├── _errors.tpl │ │ │ │ ├── _images.tpl │ │ │ │ ├── _ingress.tpl │ │ │ │ ├── _labels.tpl │ │ │ │ ├── _names.tpl │ │ │ │ ├── _secrets.tpl │ │ │ │ ├── _storage.tpl │ │ │ │ ├── _tplvalues.tpl │ │ │ │ ├── _utils.tpl │ │ │ │ ├── _warnings.tpl │ │ │ │ └── validations │ │ │ │ │ ├── _cassandra.tpl │ │ │ │ │ ├── _mariadb.tpl │ │ │ │ │ ├── _mongodb.tpl │ │ │ │ │ ├── _mysql.tpl │ │ │ │ │ ├── _postgresql.tpl │ │ │ │ │ ├── _redis.tpl │ │ │ │ │ └── _validations.tpl │ │ │ │ └── values.yaml │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── configmap.yaml │ │ │ ├── extra-list.yaml │ │ │ ├── metrics-svc.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── pdb.yaml │ │ │ ├── prometheusrule.yaml │ │ │ ├── scripts-configmap.yaml │ │ │ ├── secrets.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── servicemonitor.yaml │ │ │ ├── statefulset.yaml │ │ │ ├── svc-headless.yaml │ │ │ ├── svc.yaml │ │ │ └── tls-secrets.yaml │ │ │ └── values.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── broker │ │ │ ├── config-secrets.yaml │ │ │ ├── configmap.yaml │ │ │ ├── pdb.yaml │ │ │ ├── statefulset.yaml │ │ │ ├── svc-external-access.yaml │ │ │ └── svc-headless.yaml │ │ ├── controller-eligible │ │ │ ├── config-secrets.yaml │ │ │ ├── configmap.yaml │ │ │ ├── pdb.yaml │ │ │ ├── statefulset.yaml │ │ │ ├── svc-external-access.yaml │ │ │ └── svc-headless.yaml │ │ ├── extra-list.yaml │ │ ├── log4j-configmap.yaml │ │ ├── metrics │ │ │ ├── deployment.yaml │ │ │ ├── jmx-configmap.yaml │ │ │ ├── jmx-servicemonitor.yaml │ │ │ ├── jmx-svc.yaml │ │ │ ├── prometheusrule.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── servicemonitor.yaml │ │ │ └── svc.yaml │ │ ├── network-policy │ │ │ ├── networkpolicy-egress.yaml │ │ │ └── networkpolicy-ingress.yaml │ │ ├── provisioning │ │ │ ├── job.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── tls-secret.yaml │ │ ├── rbac │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ └── serviceaccount.yaml │ │ ├── scripts-configmap.yaml │ │ ├── secrets.yaml │ │ ├── svc.yaml │ │ └── tls-secret.yaml │ └── values.yaml ├── kube-prometheus-stack │ ├── CONTRIBUTING.md │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── charts │ │ ├── crds │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ └── 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 │ │ ├── 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 │ │ │ │ ├── configSecret.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 │ │ │ │ ├── extra-manifests.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 │ │ │ │ ├── extra-manifests.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 │ │ │ ├── secret.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── servicemonitor.yaml │ ├── values.yaml │ └── vs.yaml ├── loki-stack │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── charts │ │ ├── filebeat │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── examples │ │ │ │ ├── default │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ └── test │ │ │ │ │ │ └── goss.yaml │ │ │ │ ├── deployment │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── test │ │ │ │ │ │ └── goss.yaml │ │ │ │ │ └── values.yaml │ │ │ │ ├── oss │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── test │ │ │ │ │ │ └── goss.yaml │ │ │ │ │ └── values.yaml │ │ │ │ ├── security │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── test │ │ │ │ │ │ └── goss.yaml │ │ │ │ │ └── values.yaml │ │ │ │ └── upgrade │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── test │ │ │ │ │ └── goss.yaml │ │ │ │ │ └── values.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── configmap.yaml │ │ │ │ ├── daemonset.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ └── serviceaccount.yaml │ │ │ └── values.yaml │ │ ├── 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 │ │ ├── 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-network-policy.yaml │ │ │ │ ├── image-renderer-service.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 │ │ ├── logstash │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── examples │ │ │ │ ├── default │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ └── test │ │ │ │ │ │ └── goss.yaml │ │ │ │ ├── elasticsearch │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── test │ │ │ │ │ │ └── goss.yaml │ │ │ │ │ └── values.yaml │ │ │ │ ├── oss │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── test │ │ │ │ │ │ └── goss.yaml │ │ │ │ │ └── values.yaml │ │ │ │ ├── security │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── test │ │ │ │ │ │ └── goss.yaml │ │ │ │ │ └── values.yaml │ │ │ │ └── upgrade │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── test │ │ │ │ │ └── goss.yaml │ │ │ │ │ └── values.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── configmap-config.yaml │ │ │ │ ├── configmap-pattern.yaml │ │ │ │ ├── configmap-pipeline.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── poddisruptionbudget.yaml │ │ │ │ ├── podsecuritypolicy.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ ├── secret.yaml │ │ │ │ ├── service-headless.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ └── statefulset.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 │ │ ├── prometheus │ │ │ ├── .helmignore │ │ │ ├── Chart.lock │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── charts │ │ │ │ └── kube-state-metrics │ │ │ │ │ ├── .helmignore │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── README.md │ │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── kubeconfig-secret.yaml │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ ├── podsecuritypolicy.yaml │ │ │ │ │ ├── psp-clusterrole.yaml │ │ │ │ │ ├── psp-clusterrolebinding.yaml │ │ │ │ │ ├── role.yaml │ │ │ │ │ ├── rolebinding.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ ├── servicemonitor.yaml │ │ │ │ │ ├── stsdiscovery-role.yaml │ │ │ │ │ └── stsdiscovery-rolebinding.yaml │ │ │ │ │ └── values.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── alertmanager │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ ├── cm.yaml │ │ │ │ │ ├── deploy.yaml │ │ │ │ │ ├── headless-svc.yaml │ │ │ │ │ ├── ingress.yaml │ │ │ │ │ ├── netpol.yaml │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ ├── psp.yaml │ │ │ │ │ ├── pvc.yaml │ │ │ │ │ ├── role.yaml │ │ │ │ │ ├── rolebinding.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ └── sts.yaml │ │ │ │ ├── node-exporter │ │ │ │ │ ├── daemonset.yaml │ │ │ │ │ ├── psp.yaml │ │ │ │ │ ├── role.yaml │ │ │ │ │ ├── rolebinding.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ └── svc.yaml │ │ │ │ ├── pushgateway │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ ├── deploy.yaml │ │ │ │ │ ├── ingress.yaml │ │ │ │ │ ├── netpol.yaml │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ ├── psp.yaml │ │ │ │ │ ├── pvc.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ └── vpa.yaml │ │ │ │ └── server │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ ├── cm.yaml │ │ │ │ │ ├── deploy.yaml │ │ │ │ │ ├── headless-svc.yaml │ │ │ │ │ ├── ingress.yaml │ │ │ │ │ ├── netpol.yaml │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ ├── psp.yaml │ │ │ │ │ ├── pvc.yaml │ │ │ │ │ ├── rolebinding.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ ├── sts.yaml │ │ │ │ │ └── vpa.yaml │ │ │ └── values.yaml │ │ └── promtail │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── README.md.gotmpl │ │ │ ├── ci │ │ │ ├── autoscaled-deployment-values.yaml │ │ │ ├── default-values.yaml │ │ │ ├── deployment-values.yaml │ │ │ ├── netpol-values.yaml │ │ │ └── service-values.yaml │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── _pod.tpl │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── configmap.yaml │ │ │ ├── daemonset.yaml │ │ │ ├── deployment.yaml │ │ │ ├── extra-manifests.yaml │ │ │ ├── hpa.yaml │ │ │ ├── ingress.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── podsecuritypolicy.yaml │ │ │ ├── prometheus-rules.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── secret.yaml │ │ │ ├── service-extra.yaml │ │ │ ├── service-metrics.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── servicemonitor.yaml │ │ │ └── verticalpodautoscaler.yaml │ │ │ └── values.yaml │ ├── requirements.lock │ ├── requirements.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── datasources.yaml │ │ └── tests │ │ │ ├── loki-test-configmap.yaml │ │ │ └── loki-test-pod.yaml │ └── values.yaml ├── minio-config.yaml ├── minio │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── charts │ │ └── common │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ ├── _affinities.tpl │ │ │ ├── _capabilities.tpl │ │ │ ├── _errors.tpl │ │ │ ├── _images.tpl │ │ │ ├── _ingress.tpl │ │ │ ├── _labels.tpl │ │ │ ├── _names.tpl │ │ │ ├── _secrets.tpl │ │ │ ├── _storage.tpl │ │ │ ├── _tplvalues.tpl │ │ │ ├── _utils.tpl │ │ │ ├── _warnings.tpl │ │ │ └── validations │ │ │ │ ├── _cassandra.tpl │ │ │ │ ├── _mariadb.tpl │ │ │ │ ├── _mongodb.tpl │ │ │ │ ├── _mysql.tpl │ │ │ │ ├── _postgresql.tpl │ │ │ │ ├── _redis.tpl │ │ │ │ └── _validations.tpl │ │ │ ├── values.schema.json │ │ │ └── values.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── api-ingress.yaml │ │ ├── distributed │ │ │ ├── headless-svc.yaml │ │ │ ├── pdb.yaml │ │ │ └── statefulset.yaml │ │ ├── extra-list.yaml │ │ ├── ingress.yaml │ │ ├── networkpolicy.yaml │ │ ├── prometheusrule.yaml │ │ ├── provisioning-configmap.yaml │ │ ├── provisioning-job.yaml │ │ ├── pvc.yaml │ │ ├── secrets.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── servicemonitor.yaml │ │ ├── standalone │ │ │ └── deployment.yaml │ │ └── tls-secrets.yaml │ └── values.yaml ├── mongodb-config.yaml ├── mongodb │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── charts │ │ └── common │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ ├── _affinities.tpl │ │ │ ├── _capabilities.tpl │ │ │ ├── _errors.tpl │ │ │ ├── _images.tpl │ │ │ ├── _ingress.tpl │ │ │ ├── _labels.tpl │ │ │ ├── _names.tpl │ │ │ ├── _secrets.tpl │ │ │ ├── _storage.tpl │ │ │ ├── _tplvalues.tpl │ │ │ ├── _utils.tpl │ │ │ ├── _warnings.tpl │ │ │ └── validations │ │ │ │ ├── _cassandra.tpl │ │ │ │ ├── _mariadb.tpl │ │ │ │ ├── _mongodb.tpl │ │ │ │ ├── _mysql.tpl │ │ │ │ ├── _postgresql.tpl │ │ │ │ ├── _redis.tpl │ │ │ │ └── _validations.tpl │ │ │ └── values.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── arbiter │ │ │ ├── configmap.yaml │ │ │ ├── headless-svc.yaml │ │ │ ├── pdb.yaml │ │ │ └── statefulset.yaml │ │ ├── backup │ │ │ ├── cronjob.yaml │ │ │ └── pvc.yaml │ │ ├── common-scripts-cm.yaml │ │ ├── configmap.yaml │ │ ├── extra-list.yaml │ │ ├── hidden │ │ │ ├── configmap.yaml │ │ │ ├── external-access-svc.yaml │ │ │ ├── headless-svc.yaml │ │ │ ├── pdb.yaml │ │ │ └── statefulset.yaml │ │ ├── initialization-configmap.yaml │ │ ├── metrics-svc.yaml │ │ ├── prometheusrule.yaml │ │ ├── psp.yaml │ │ ├── replicaset │ │ │ ├── external-access-svc.yaml │ │ │ ├── headless-svc.yaml │ │ │ ├── pdb.yaml │ │ │ ├── scripts-configmap.yaml │ │ │ ├── statefulset.yaml │ │ │ └── svc.yaml │ │ ├── role.yaml │ │ ├── rolebinding.yaml │ │ ├── secrets-ca.yaml │ │ ├── secrets.yaml │ │ ├── serviceaccount.yaml │ │ ├── servicemonitor.yaml │ │ └── standalone │ │ │ ├── dep-sts.yaml │ │ │ ├── pvc.yaml │ │ │ └── svc.yaml │ ├── values.schema.json │ └── values.yaml ├── mysql-config.yaml ├── mysql │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── charts │ │ └── common │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ ├── _affinities.tpl │ │ │ ├── _capabilities.tpl │ │ │ ├── _errors.tpl │ │ │ ├── _images.tpl │ │ │ ├── _ingress.tpl │ │ │ ├── _labels.tpl │ │ │ ├── _names.tpl │ │ │ ├── _secrets.tpl │ │ │ ├── _storage.tpl │ │ │ ├── _tplvalues.tpl │ │ │ ├── _utils.tpl │ │ │ ├── _warnings.tpl │ │ │ └── validations │ │ │ │ ├── _cassandra.tpl │ │ │ │ ├── _mariadb.tpl │ │ │ │ ├── _mongodb.tpl │ │ │ │ ├── _mysql.tpl │ │ │ │ ├── _postgresql.tpl │ │ │ │ ├── _redis.tpl │ │ │ │ └── _validations.tpl │ │ │ ├── values.schema.json │ │ │ └── values.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── extra-list.yaml │ │ ├── metrics-svc.yaml │ │ ├── networkpolicy.yaml │ │ ├── primary │ │ │ ├── configmap.yaml │ │ │ ├── initialization-configmap.yaml │ │ │ ├── pdb.yaml │ │ │ ├── startdb-configmap.yaml │ │ │ ├── statefulset.yaml │ │ │ ├── svc-headless.yaml │ │ │ └── svc.yaml │ │ ├── prometheusrule.yaml │ │ ├── role.yaml │ │ ├── rolebinding.yaml │ │ ├── secondary │ │ │ ├── configmap.yaml │ │ │ ├── pdb.yaml │ │ │ ├── statefulset.yaml │ │ │ ├── svc-headless.yaml │ │ │ └── svc.yaml │ │ ├── secrets.yaml │ │ ├── serviceaccount.yaml │ │ └── servicemonitor.yaml │ ├── values.schema.json │ └── values.yaml ├── nfs-subdir-external-provisioner │ ├── Chart.yaml │ ├── README.md │ ├── ci │ │ └── test-values.yaml │ ├── config.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── clusterrole.yaml │ │ ├── clusterrolebinding.yaml │ │ ├── deployment.yaml │ │ ├── persistentvolume.yaml │ │ ├── persistentvolumeclaim.yaml │ │ ├── poddisruptionbudget.yaml │ │ ├── podsecuritypolicy.yaml │ │ ├── role.yaml │ │ ├── rolebinding.yaml │ │ ├── serviceaccount.yaml │ │ └── storageclass.yaml │ └── values.yaml ├── prometheus-config.yaml ├── redis-config.yaml └── redis │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── charts │ └── common │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── templates │ │ ├── _affinities.tpl │ │ ├── _capabilities.tpl │ │ ├── _errors.tpl │ │ ├── _images.tpl │ │ ├── _ingress.tpl │ │ ├── _labels.tpl │ │ ├── _names.tpl │ │ ├── _secrets.tpl │ │ ├── _storage.tpl │ │ ├── _tplvalues.tpl │ │ ├── _utils.tpl │ │ ├── _warnings.tpl │ │ └── validations │ │ │ ├── _cassandra.tpl │ │ │ ├── _mariadb.tpl │ │ │ ├── _mongodb.tpl │ │ │ ├── _mysql.tpl │ │ │ ├── _postgresql.tpl │ │ │ ├── _redis.tpl │ │ │ └── _validations.tpl │ │ └── values.yaml │ ├── img │ ├── redis-cluster-topology.png │ └── redis-topology.png │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── configmap.yaml │ ├── extra-list.yaml │ ├── headless-svc.yaml │ ├── health-configmap.yaml │ ├── master │ │ ├── application.yaml │ │ ├── psp.yaml │ │ ├── pvc.yaml │ │ ├── service.yaml │ │ └── serviceaccount.yaml │ ├── metrics-svc.yaml │ ├── networkpolicy.yaml │ ├── pdb.yaml │ ├── prometheusrule.yaml │ ├── replicas │ │ ├── hpa.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ └── statefulset.yaml │ ├── role.yaml │ ├── rolebinding.yaml │ ├── scripts-configmap.yaml │ ├── secret-svcbind.yaml │ ├── secret.yaml │ ├── sentinel │ │ ├── hpa.yaml │ │ ├── node-services.yaml │ │ ├── ports-configmap.yaml │ │ ├── service.yaml │ │ └── statefulset.yaml │ ├── serviceaccount.yaml │ ├── servicemonitor.yaml │ └── tls-secret.yaml │ ├── values.schema.json │ └── values.yaml ├── k8s-adminfront-config.yaml ├── k8s-chat-server-config.yaml ├── k8s-open-im-server-config.yaml ├── k8s-webfront-config.yaml ├── notification.yaml └── scripts ├── helm-docs.sh └── lint.sh /.clomonitor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/.clomonitor.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/configs/cr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/.github/configs/cr.yaml -------------------------------------------------------------------------------- /.github/configs/ct-install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/.github/configs/ct-install.yaml -------------------------------------------------------------------------------- /.github/configs/ct-lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/.github/configs/ct-lint.yaml -------------------------------------------------------------------------------- /.github/configs/kind-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/.github/configs/kind-config.yaml -------------------------------------------------------------------------------- /.github/configs/labeler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/.github/configs/labeler.yaml -------------------------------------------------------------------------------- /.github/configs/lintconf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/.github/configs/lintconf.yaml -------------------------------------------------------------------------------- /.github/configs/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/.github/configs/stale.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/linters/.markdown-lint.yml: -------------------------------------------------------------------------------- 1 | MD013: 2 | line_length: 600 -------------------------------------------------------------------------------- /.github/linters/ct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/.github/linters/ct.yaml -------------------------------------------------------------------------------- /.github/workflows/auto-assign-issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/.github/workflows/auto-assign-issue.yml -------------------------------------------------------------------------------- /.github/workflows/auto-gh-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/.github/workflows/auto-gh-pr.yml -------------------------------------------------------------------------------- /.github/workflows/auto-invite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/.github/workflows/auto-invite.yml -------------------------------------------------------------------------------- /.github/workflows/auto-tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/.github/workflows/auto-tag.yml -------------------------------------------------------------------------------- /.github/workflows/bot-auto-cherry-pick.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/.github/workflows/bot-auto-cherry-pick.yml -------------------------------------------------------------------------------- /.github/workflows/chart-version-bump.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/.github/workflows/chart-version-bump.yml -------------------------------------------------------------------------------- /.github/workflows/cla.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/.github/workflows/cla.yml -------------------------------------------------------------------------------- /.github/workflows/helm-charts-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/.github/workflows/helm-charts-test.yml -------------------------------------------------------------------------------- /.github/workflows/lint-and-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/.github/workflows/lint-and-test.yml -------------------------------------------------------------------------------- /.github/workflows/lint-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/.github/workflows/lint-test.yml -------------------------------------------------------------------------------- /.github/workflows/lock-issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/.github/workflows/lock-issue.yml -------------------------------------------------------------------------------- /.github/workflows/pr-title.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/.github/workflows/pr-title.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/scorecard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/.github/workflows/scorecard.yml -------------------------------------------------------------------------------- /.github/workflows/template-comment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/.github/workflows/template-comment.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/.gitignore -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/LICENSE -------------------------------------------------------------------------------- /README-zh_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/README-zh_CN.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/README.md -------------------------------------------------------------------------------- /charts/openim-admin/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-admin/Chart.yaml -------------------------------------------------------------------------------- /charts/openim-admin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-admin/README.md -------------------------------------------------------------------------------- /charts/openim-admin/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-admin/README.md.gotmpl -------------------------------------------------------------------------------- /charts/openim-admin/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-admin/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/openim-admin/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-admin/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/openim-admin/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-admin/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/openim-admin/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-admin/templates/hpa.yaml -------------------------------------------------------------------------------- /charts/openim-admin/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-admin/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/openim-admin/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-admin/templates/service.yaml -------------------------------------------------------------------------------- /charts/openim-admin/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-admin/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/openim-admin/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-admin/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /charts/openim-admin/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-admin/values.yaml -------------------------------------------------------------------------------- /charts/openim-chat/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-chat/.helmignore -------------------------------------------------------------------------------- /charts/openim-chat/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-chat/Chart.yaml -------------------------------------------------------------------------------- /charts/openim-chat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-chat/README.md -------------------------------------------------------------------------------- /charts/openim-chat/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-chat/README.md.gotmpl -------------------------------------------------------------------------------- /charts/openim-chat/charts/admin-rpc/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-chat/charts/admin-rpc/.helmignore -------------------------------------------------------------------------------- /charts/openim-chat/charts/admin-rpc/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-chat/charts/admin-rpc/Chart.yaml -------------------------------------------------------------------------------- /charts/openim-chat/charts/admin-rpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-chat/charts/admin-rpc/README.md -------------------------------------------------------------------------------- /charts/openim-chat/charts/admin-rpc/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-chat/charts/admin-rpc/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/openim-chat/charts/admin-rpc/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-chat/charts/admin-rpc/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/openim-chat/charts/admin-rpc/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-chat/charts/admin-rpc/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/openim-chat/charts/admin-rpc/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-chat/charts/admin-rpc/templates/hpa.yaml -------------------------------------------------------------------------------- /charts/openim-chat/charts/admin-rpc/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-chat/charts/admin-rpc/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/openim-chat/charts/admin-rpc/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-chat/charts/admin-rpc/templates/service.yaml -------------------------------------------------------------------------------- /charts/openim-chat/charts/admin-rpc/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-chat/charts/admin-rpc/values.yaml -------------------------------------------------------------------------------- /charts/openim-chat/charts/chat-api/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-chat/charts/chat-api/.helmignore -------------------------------------------------------------------------------- /charts/openim-chat/charts/chat-api/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-chat/charts/chat-api/Chart.yaml -------------------------------------------------------------------------------- /charts/openim-chat/charts/chat-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-chat/charts/chat-api/README.md -------------------------------------------------------------------------------- /charts/openim-chat/charts/chat-api/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-chat/charts/chat-api/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/openim-chat/charts/chat-api/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-chat/charts/chat-api/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/openim-chat/charts/chat-api/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-chat/charts/chat-api/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/openim-chat/charts/chat-api/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-chat/charts/chat-api/templates/hpa.yaml -------------------------------------------------------------------------------- /charts/openim-chat/charts/chat-api/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-chat/charts/chat-api/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/openim-chat/charts/chat-api/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-chat/charts/chat-api/templates/service.yaml -------------------------------------------------------------------------------- /charts/openim-chat/charts/chat-api/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-chat/charts/chat-api/values.yaml -------------------------------------------------------------------------------- /charts/openim-chat/charts/chat-rpc/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-chat/charts/chat-rpc/.helmignore -------------------------------------------------------------------------------- /charts/openim-chat/charts/chat-rpc/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-chat/charts/chat-rpc/Chart.yaml -------------------------------------------------------------------------------- /charts/openim-chat/charts/chat-rpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-chat/charts/chat-rpc/README.md -------------------------------------------------------------------------------- /charts/openim-chat/charts/chat-rpc/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-chat/charts/chat-rpc/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/openim-chat/charts/chat-rpc/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-chat/charts/chat-rpc/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/openim-chat/charts/chat-rpc/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-chat/charts/chat-rpc/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/openim-chat/charts/chat-rpc/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-chat/charts/chat-rpc/templates/hpa.yaml -------------------------------------------------------------------------------- /charts/openim-chat/charts/chat-rpc/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-chat/charts/chat-rpc/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/openim-chat/charts/chat-rpc/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-chat/charts/chat-rpc/templates/service.yaml -------------------------------------------------------------------------------- /charts/openim-chat/charts/chat-rpc/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-chat/charts/chat-rpc/values.yaml -------------------------------------------------------------------------------- /charts/openim-chat/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-chat/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/openim-chat/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-chat/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/openim-chat/templates/app-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-chat/templates/app-cm.yaml -------------------------------------------------------------------------------- /charts/openim-chat/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-chat/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/openim-chat/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-chat/templates/hpa.yaml -------------------------------------------------------------------------------- /charts/openim-chat/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-chat/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/openim-chat/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-chat/templates/service.yaml -------------------------------------------------------------------------------- /charts/openim-chat/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-chat/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/openim-chat/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-chat/values.yaml -------------------------------------------------------------------------------- /charts/openim-server/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/Chart.yaml -------------------------------------------------------------------------------- /charts/openim-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/README.md -------------------------------------------------------------------------------- /charts/openim-server/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/README.md.gotmpl -------------------------------------------------------------------------------- /charts/openim-server/charts/openim-msggateway-proxy/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/charts/openim-msggateway-proxy/.helmignore -------------------------------------------------------------------------------- /charts/openim-server/charts/openim-msggateway-proxy/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/charts/openim-msggateway-proxy/Chart.yaml -------------------------------------------------------------------------------- /charts/openim-server/charts/openim-msggateway-proxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/charts/openim-msggateway-proxy/README.md -------------------------------------------------------------------------------- /charts/openim-server/charts/openim-msggateway-proxy/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/charts/openim-msggateway-proxy/values.yaml -------------------------------------------------------------------------------- /charts/openim-server/charts/openim-msggateway/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/charts/openim-msggateway/.helmignore -------------------------------------------------------------------------------- /charts/openim-server/charts/openim-msggateway/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/charts/openim-msggateway/Chart.yaml -------------------------------------------------------------------------------- /charts/openim-server/charts/openim-msggateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/charts/openim-msggateway/README.md -------------------------------------------------------------------------------- /charts/openim-server/charts/openim-msggateway/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/charts/openim-msggateway/values.yaml -------------------------------------------------------------------------------- /charts/openim-server/charts/openim-msgtransfer/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/charts/openim-msgtransfer/.helmignore -------------------------------------------------------------------------------- /charts/openim-server/charts/openim-msgtransfer/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/charts/openim-msgtransfer/Chart.yaml -------------------------------------------------------------------------------- /charts/openim-server/charts/openim-msgtransfer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/charts/openim-msgtransfer/README.md -------------------------------------------------------------------------------- /charts/openim-server/charts/openim-msgtransfer/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/charts/openim-msgtransfer/values.yaml -------------------------------------------------------------------------------- /charts/openim-server/charts/openim-push/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/charts/openim-push/.helmignore -------------------------------------------------------------------------------- /charts/openim-server/charts/openim-push/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/charts/openim-push/Chart.yaml -------------------------------------------------------------------------------- /charts/openim-server/charts/openim-push/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/charts/openim-push/README.md -------------------------------------------------------------------------------- /charts/openim-server/charts/openim-push/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/charts/openim-push/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/openim-server/charts/openim-push/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/charts/openim-push/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/openim-server/charts/openim-push/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/charts/openim-push/templates/hpa.yaml -------------------------------------------------------------------------------- /charts/openim-server/charts/openim-push/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/charts/openim-push/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/openim-server/charts/openim-push/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/charts/openim-push/templates/service.yaml -------------------------------------------------------------------------------- /charts/openim-server/charts/openim-push/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/charts/openim-push/values.yaml -------------------------------------------------------------------------------- /charts/openim-server/charts/openim-rpc-auth/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/charts/openim-rpc-auth/.helmignore -------------------------------------------------------------------------------- /charts/openim-server/charts/openim-rpc-auth/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/charts/openim-rpc-auth/Chart.yaml -------------------------------------------------------------------------------- /charts/openim-server/charts/openim-rpc-auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/charts/openim-rpc-auth/README.md -------------------------------------------------------------------------------- /charts/openim-server/charts/openim-rpc-auth/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/charts/openim-rpc-auth/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/openim-server/charts/openim-rpc-auth/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/charts/openim-rpc-auth/templates/hpa.yaml -------------------------------------------------------------------------------- /charts/openim-server/charts/openim-rpc-auth/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/charts/openim-rpc-auth/values.yaml -------------------------------------------------------------------------------- /charts/openim-server/charts/openim-rpc-conversation/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/charts/openim-rpc-conversation/.helmignore -------------------------------------------------------------------------------- /charts/openim-server/charts/openim-rpc-conversation/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/charts/openim-rpc-conversation/Chart.yaml -------------------------------------------------------------------------------- /charts/openim-server/charts/openim-rpc-conversation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/charts/openim-rpc-conversation/README.md -------------------------------------------------------------------------------- /charts/openim-server/charts/openim-rpc-conversation/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/charts/openim-rpc-conversation/values.yaml -------------------------------------------------------------------------------- /charts/openim-server/charts/openim-rpc-friend/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/charts/openim-rpc-friend/.helmignore -------------------------------------------------------------------------------- /charts/openim-server/charts/openim-rpc-friend/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/charts/openim-rpc-friend/Chart.yaml -------------------------------------------------------------------------------- /charts/openim-server/charts/openim-rpc-friend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/charts/openim-rpc-friend/README.md -------------------------------------------------------------------------------- /charts/openim-server/charts/openim-rpc-friend/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/charts/openim-rpc-friend/values.yaml -------------------------------------------------------------------------------- /charts/openim-server/charts/openim-rpc-group/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/charts/openim-rpc-group/.helmignore -------------------------------------------------------------------------------- /charts/openim-server/charts/openim-rpc-group/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/charts/openim-rpc-group/Chart.yaml -------------------------------------------------------------------------------- /charts/openim-server/charts/openim-rpc-group/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/charts/openim-rpc-group/README.md -------------------------------------------------------------------------------- /charts/openim-server/charts/openim-rpc-group/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/charts/openim-rpc-group/templates/hpa.yaml -------------------------------------------------------------------------------- /charts/openim-server/charts/openim-rpc-group/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/charts/openim-rpc-group/values.yaml -------------------------------------------------------------------------------- /charts/openim-server/charts/openim-rpc-msg/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/charts/openim-rpc-msg/.helmignore -------------------------------------------------------------------------------- /charts/openim-server/charts/openim-rpc-msg/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/charts/openim-rpc-msg/Chart.yaml -------------------------------------------------------------------------------- /charts/openim-server/charts/openim-rpc-msg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/charts/openim-rpc-msg/README.md -------------------------------------------------------------------------------- /charts/openim-server/charts/openim-rpc-msg/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/charts/openim-rpc-msg/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/openim-server/charts/openim-rpc-msg/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/charts/openim-rpc-msg/templates/hpa.yaml -------------------------------------------------------------------------------- /charts/openim-server/charts/openim-rpc-msg/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/charts/openim-rpc-msg/values.yaml -------------------------------------------------------------------------------- /charts/openim-server/charts/openim-rpc-third/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/charts/openim-rpc-third/.helmignore -------------------------------------------------------------------------------- /charts/openim-server/charts/openim-rpc-third/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/charts/openim-rpc-third/Chart.yaml -------------------------------------------------------------------------------- /charts/openim-server/charts/openim-rpc-third/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/charts/openim-rpc-third/README.md -------------------------------------------------------------------------------- /charts/openim-server/charts/openim-rpc-third/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/charts/openim-rpc-third/templates/hpa.yaml -------------------------------------------------------------------------------- /charts/openim-server/charts/openim-rpc-third/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/charts/openim-rpc-third/values.yaml -------------------------------------------------------------------------------- /charts/openim-server/charts/openim-rpc-user/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/charts/openim-rpc-user/.helmignore -------------------------------------------------------------------------------- /charts/openim-server/charts/openim-rpc-user/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/charts/openim-rpc-user/Chart.yaml -------------------------------------------------------------------------------- /charts/openim-server/charts/openim-rpc-user/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/charts/openim-rpc-user/README.md -------------------------------------------------------------------------------- /charts/openim-server/charts/openim-rpc-user/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/charts/openim-rpc-user/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/openim-server/charts/openim-rpc-user/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/charts/openim-rpc-user/templates/hpa.yaml -------------------------------------------------------------------------------- /charts/openim-server/charts/openim-rpc-user/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/charts/openim-rpc-user/values.yaml -------------------------------------------------------------------------------- /charts/openim-server/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/openim-server/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/openim-server/templates/app-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/templates/app-cm.yaml -------------------------------------------------------------------------------- /charts/openim-server/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/openim-server/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/templates/hpa.yaml -------------------------------------------------------------------------------- /charts/openim-server/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/openim-server/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/templates/service.yaml -------------------------------------------------------------------------------- /charts/openim-server/templates/serviceMonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/templates/serviceMonitor.yaml -------------------------------------------------------------------------------- /charts/openim-server/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/openim-server/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-server/values.yaml -------------------------------------------------------------------------------- /charts/openim-web/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-web/Chart.yaml -------------------------------------------------------------------------------- /charts/openim-web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-web/README.md -------------------------------------------------------------------------------- /charts/openim-web/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-web/README.md.gotmpl -------------------------------------------------------------------------------- /charts/openim-web/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-web/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/openim-web/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-web/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/openim-web/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-web/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/openim-web/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-web/templates/hpa.yaml -------------------------------------------------------------------------------- /charts/openim-web/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-web/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/openim-web/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-web/templates/service.yaml -------------------------------------------------------------------------------- /charts/openim-web/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-web/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/openim-web/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-web/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /charts/openim-web/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/charts/openim-web/values.yaml -------------------------------------------------------------------------------- /config-chatserver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/config-chatserver.yaml -------------------------------------------------------------------------------- /config-imserver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/config-imserver.yaml -------------------------------------------------------------------------------- /docs/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/docs/CODEOWNERS -------------------------------------------------------------------------------- /docs/contrib/user-guide-zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/docs/contrib/user-guide-zh.md -------------------------------------------------------------------------------- /docs/contrib/user-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/docs/contrib/user-guide.md -------------------------------------------------------------------------------- /docs/contrib/version-zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/docs/contrib/version-zh.md -------------------------------------------------------------------------------- /docs/contrib/version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/docs/contrib/version.md -------------------------------------------------------------------------------- /docs/images/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/docs/images/img.png -------------------------------------------------------------------------------- /docs/images/img_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/docs/images/img_1.png -------------------------------------------------------------------------------- /docs/images/img_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/docs/images/img_2.png -------------------------------------------------------------------------------- /docs/images/img_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/docs/images/img_3.png -------------------------------------------------------------------------------- /docs/images/img_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/docs/images/img_4.png -------------------------------------------------------------------------------- /docs/images/img_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/docs/images/img_5.png -------------------------------------------------------------------------------- /docs/images/img_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/docs/images/img_6.png -------------------------------------------------------------------------------- /docs/images/img_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/docs/images/img_7.png -------------------------------------------------------------------------------- /docs/images/img_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/docs/images/img_8.png -------------------------------------------------------------------------------- /docs/images/img_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/docs/images/img_9.png -------------------------------------------------------------------------------- /docs/k8s-custom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/docs/k8s-custom.yaml -------------------------------------------------------------------------------- /docs/k8s-loki.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/docs/k8s-loki.yaml -------------------------------------------------------------------------------- /helm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/helm.sh -------------------------------------------------------------------------------- /infra/ingress-nginx/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/.helmignore -------------------------------------------------------------------------------- /infra/ingress-nginx/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/CHANGELOG.md -------------------------------------------------------------------------------- /infra/ingress-nginx/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/Chart.yaml -------------------------------------------------------------------------------- /infra/ingress-nginx/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/OWNERS -------------------------------------------------------------------------------- /infra/ingress-nginx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/README.md -------------------------------------------------------------------------------- /infra/ingress-nginx/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/README.md.gotmpl -------------------------------------------------------------------------------- /infra/ingress-nginx/changelog.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/changelog.md.gotmpl -------------------------------------------------------------------------------- /infra/ingress-nginx/changelog/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infra/ingress-nginx/changelog/Changelog-4.5.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/changelog/Changelog-4.5.2.md -------------------------------------------------------------------------------- /infra/ingress-nginx/changelog/Changelog-4.6.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/changelog/Changelog-4.6.0.md -------------------------------------------------------------------------------- /infra/ingress-nginx/changelog/Changelog-4.6.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/changelog/Changelog-4.6.1.md -------------------------------------------------------------------------------- /infra/ingress-nginx/changelog/Changelog-4.7.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/changelog/Changelog-4.7.0.md -------------------------------------------------------------------------------- /infra/ingress-nginx/changelog/Changelog-4.7.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/changelog/Changelog-4.7.1.md -------------------------------------------------------------------------------- /infra/ingress-nginx/changelog/Changelog-4.7.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/changelog/Changelog-4.7.2.md -------------------------------------------------------------------------------- /infra/ingress-nginx/ci/daemonset-customconfig-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/ci/daemonset-customconfig-values.yaml -------------------------------------------------------------------------------- /infra/ingress-nginx/ci/daemonset-customnodeport-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/ci/daemonset-customnodeport-values.yaml -------------------------------------------------------------------------------- /infra/ingress-nginx/ci/daemonset-extra-modules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/ci/daemonset-extra-modules.yaml -------------------------------------------------------------------------------- /infra/ingress-nginx/ci/daemonset-headers-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/ci/daemonset-headers-values.yaml -------------------------------------------------------------------------------- /infra/ingress-nginx/ci/daemonset-internal-lb-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/ci/daemonset-internal-lb-values.yaml -------------------------------------------------------------------------------- /infra/ingress-nginx/ci/daemonset-nodeport-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/ci/daemonset-nodeport-values.yaml -------------------------------------------------------------------------------- /infra/ingress-nginx/ci/daemonset-podannotations-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/ci/daemonset-podannotations-values.yaml -------------------------------------------------------------------------------- /infra/ingress-nginx/ci/daemonset-tcp-udp-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/ci/daemonset-tcp-udp-values.yaml -------------------------------------------------------------------------------- /infra/ingress-nginx/ci/daemonset-tcp-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/ci/daemonset-tcp-values.yaml -------------------------------------------------------------------------------- /infra/ingress-nginx/ci/deamonset-default-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/ci/deamonset-default-values.yaml -------------------------------------------------------------------------------- /infra/ingress-nginx/ci/deamonset-metrics-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/ci/deamonset-metrics-values.yaml -------------------------------------------------------------------------------- /infra/ingress-nginx/ci/deamonset-psp-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/ci/deamonset-psp-values.yaml -------------------------------------------------------------------------------- /infra/ingress-nginx/ci/deamonset-webhook-and-psp-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/ci/deamonset-webhook-and-psp-values.yaml -------------------------------------------------------------------------------- /infra/ingress-nginx/ci/deamonset-webhook-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/ci/deamonset-webhook-values.yaml -------------------------------------------------------------------------------- /infra/ingress-nginx/ci/deployment-autoscaling-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/ci/deployment-autoscaling-values.yaml -------------------------------------------------------------------------------- /infra/ingress-nginx/ci/deployment-customconfig-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/ci/deployment-customconfig-values.yaml -------------------------------------------------------------------------------- /infra/ingress-nginx/ci/deployment-customnodeport-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/ci/deployment-customnodeport-values.yaml -------------------------------------------------------------------------------- /infra/ingress-nginx/ci/deployment-default-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/ci/deployment-default-values.yaml -------------------------------------------------------------------------------- /infra/ingress-nginx/ci/deployment-extra-modules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/ci/deployment-extra-modules.yaml -------------------------------------------------------------------------------- /infra/ingress-nginx/ci/deployment-headers-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/ci/deployment-headers-values.yaml -------------------------------------------------------------------------------- /infra/ingress-nginx/ci/deployment-internal-lb-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/ci/deployment-internal-lb-values.yaml -------------------------------------------------------------------------------- /infra/ingress-nginx/ci/deployment-metrics-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/ci/deployment-metrics-values.yaml -------------------------------------------------------------------------------- /infra/ingress-nginx/ci/deployment-nodeport-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/ci/deployment-nodeport-values.yaml -------------------------------------------------------------------------------- /infra/ingress-nginx/ci/deployment-podannotations-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/ci/deployment-podannotations-values.yaml -------------------------------------------------------------------------------- /infra/ingress-nginx/ci/deployment-psp-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/ci/deployment-psp-values.yaml -------------------------------------------------------------------------------- /infra/ingress-nginx/ci/deployment-tcp-udp-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/ci/deployment-tcp-udp-values.yaml -------------------------------------------------------------------------------- /infra/ingress-nginx/ci/deployment-tcp-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/ci/deployment-tcp-values.yaml -------------------------------------------------------------------------------- /infra/ingress-nginx/ci/deployment-webhook-and-psp-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/ci/deployment-webhook-and-psp-values.yaml -------------------------------------------------------------------------------- /infra/ingress-nginx/ci/deployment-webhook-extraEnvs-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/ci/deployment-webhook-extraEnvs-values.yaml -------------------------------------------------------------------------------- /infra/ingress-nginx/ci/deployment-webhook-resources-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/ci/deployment-webhook-resources-values.yaml -------------------------------------------------------------------------------- /infra/ingress-nginx/ci/deployment-webhook-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/ci/deployment-webhook-values.yaml -------------------------------------------------------------------------------- /infra/ingress-nginx/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/config.yaml -------------------------------------------------------------------------------- /infra/ingress-nginx/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/templates/NOTES.txt -------------------------------------------------------------------------------- /infra/ingress-nginx/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/templates/_helpers.tpl -------------------------------------------------------------------------------- /infra/ingress-nginx/templates/_params.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/templates/_params.tpl -------------------------------------------------------------------------------- /infra/ingress-nginx/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/templates/clusterrole.yaml -------------------------------------------------------------------------------- /infra/ingress-nginx/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/templates/clusterrolebinding.yaml -------------------------------------------------------------------------------- /infra/ingress-nginx/templates/controller-configmap-tcp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/templates/controller-configmap-tcp.yaml -------------------------------------------------------------------------------- /infra/ingress-nginx/templates/controller-configmap-udp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/templates/controller-configmap-udp.yaml -------------------------------------------------------------------------------- /infra/ingress-nginx/templates/controller-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/templates/controller-configmap.yaml -------------------------------------------------------------------------------- /infra/ingress-nginx/templates/controller-daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/templates/controller-daemonset.yaml -------------------------------------------------------------------------------- /infra/ingress-nginx/templates/controller-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/templates/controller-deployment.yaml -------------------------------------------------------------------------------- /infra/ingress-nginx/templates/controller-hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/templates/controller-hpa.yaml -------------------------------------------------------------------------------- /infra/ingress-nginx/templates/controller-ingressclass.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/templates/controller-ingressclass.yaml -------------------------------------------------------------------------------- /infra/ingress-nginx/templates/controller-keda.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/templates/controller-keda.yaml -------------------------------------------------------------------------------- /infra/ingress-nginx/templates/controller-prometheusrules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/templates/controller-prometheusrules.yaml -------------------------------------------------------------------------------- /infra/ingress-nginx/templates/controller-psp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/templates/controller-psp.yaml -------------------------------------------------------------------------------- /infra/ingress-nginx/templates/controller-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/templates/controller-role.yaml -------------------------------------------------------------------------------- /infra/ingress-nginx/templates/controller-rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/templates/controller-rolebinding.yaml -------------------------------------------------------------------------------- /infra/ingress-nginx/templates/controller-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/templates/controller-secret.yaml -------------------------------------------------------------------------------- /infra/ingress-nginx/templates/controller-service-internal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/templates/controller-service-internal.yaml -------------------------------------------------------------------------------- /infra/ingress-nginx/templates/controller-service-metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/templates/controller-service-metrics.yaml -------------------------------------------------------------------------------- /infra/ingress-nginx/templates/controller-service-webhook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/templates/controller-service-webhook.yaml -------------------------------------------------------------------------------- /infra/ingress-nginx/templates/controller-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/templates/controller-service.yaml -------------------------------------------------------------------------------- /infra/ingress-nginx/templates/controller-serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/templates/controller-serviceaccount.yaml -------------------------------------------------------------------------------- /infra/ingress-nginx/templates/controller-servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/templates/controller-servicemonitor.yaml -------------------------------------------------------------------------------- /infra/ingress-nginx/templates/default-backend-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/templates/default-backend-deployment.yaml -------------------------------------------------------------------------------- /infra/ingress-nginx/templates/default-backend-hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/templates/default-backend-hpa.yaml -------------------------------------------------------------------------------- /infra/ingress-nginx/templates/default-backend-psp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/templates/default-backend-psp.yaml -------------------------------------------------------------------------------- /infra/ingress-nginx/templates/default-backend-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/templates/default-backend-role.yaml -------------------------------------------------------------------------------- /infra/ingress-nginx/templates/default-backend-rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/templates/default-backend-rolebinding.yaml -------------------------------------------------------------------------------- /infra/ingress-nginx/templates/default-backend-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/templates/default-backend-service.yaml -------------------------------------------------------------------------------- /infra/ingress-nginx/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/ingress-nginx/values.yaml -------------------------------------------------------------------------------- /infra/kafka-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka-config.yaml -------------------------------------------------------------------------------- /infra/kafka/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/.helmignore -------------------------------------------------------------------------------- /infra/kafka/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/Chart.lock -------------------------------------------------------------------------------- /infra/kafka/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/Chart.yaml -------------------------------------------------------------------------------- /infra/kafka/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/README.md -------------------------------------------------------------------------------- /infra/kafka/charts/common/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/charts/common/.helmignore -------------------------------------------------------------------------------- /infra/kafka/charts/common/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/charts/common/Chart.yaml -------------------------------------------------------------------------------- /infra/kafka/charts/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/charts/common/README.md -------------------------------------------------------------------------------- /infra/kafka/charts/common/templates/_affinities.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/charts/common/templates/_affinities.tpl -------------------------------------------------------------------------------- /infra/kafka/charts/common/templates/_capabilities.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/charts/common/templates/_capabilities.tpl -------------------------------------------------------------------------------- /infra/kafka/charts/common/templates/_errors.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/charts/common/templates/_errors.tpl -------------------------------------------------------------------------------- /infra/kafka/charts/common/templates/_images.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/charts/common/templates/_images.tpl -------------------------------------------------------------------------------- /infra/kafka/charts/common/templates/_ingress.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/charts/common/templates/_ingress.tpl -------------------------------------------------------------------------------- /infra/kafka/charts/common/templates/_labels.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/charts/common/templates/_labels.tpl -------------------------------------------------------------------------------- /infra/kafka/charts/common/templates/_names.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/charts/common/templates/_names.tpl -------------------------------------------------------------------------------- /infra/kafka/charts/common/templates/_secrets.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/charts/common/templates/_secrets.tpl -------------------------------------------------------------------------------- /infra/kafka/charts/common/templates/_storage.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/charts/common/templates/_storage.tpl -------------------------------------------------------------------------------- /infra/kafka/charts/common/templates/_tplvalues.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/charts/common/templates/_tplvalues.tpl -------------------------------------------------------------------------------- /infra/kafka/charts/common/templates/_utils.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/charts/common/templates/_utils.tpl -------------------------------------------------------------------------------- /infra/kafka/charts/common/templates/_warnings.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/charts/common/templates/_warnings.tpl -------------------------------------------------------------------------------- /infra/kafka/charts/common/templates/validations/_cassandra.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/charts/common/templates/validations/_cassandra.tpl -------------------------------------------------------------------------------- /infra/kafka/charts/common/templates/validations/_mariadb.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/charts/common/templates/validations/_mariadb.tpl -------------------------------------------------------------------------------- /infra/kafka/charts/common/templates/validations/_mongodb.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/charts/common/templates/validations/_mongodb.tpl -------------------------------------------------------------------------------- /infra/kafka/charts/common/templates/validations/_mysql.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/charts/common/templates/validations/_mysql.tpl -------------------------------------------------------------------------------- /infra/kafka/charts/common/templates/validations/_postgresql.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/charts/common/templates/validations/_postgresql.tpl -------------------------------------------------------------------------------- /infra/kafka/charts/common/templates/validations/_redis.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/charts/common/templates/validations/_redis.tpl -------------------------------------------------------------------------------- /infra/kafka/charts/common/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/charts/common/values.schema.json -------------------------------------------------------------------------------- /infra/kafka/charts/common/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/charts/common/values.yaml -------------------------------------------------------------------------------- /infra/kafka/charts/zookeeper/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/charts/zookeeper/.helmignore -------------------------------------------------------------------------------- /infra/kafka/charts/zookeeper/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/charts/zookeeper/Chart.lock -------------------------------------------------------------------------------- /infra/kafka/charts/zookeeper/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/charts/zookeeper/Chart.yaml -------------------------------------------------------------------------------- /infra/kafka/charts/zookeeper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/charts/zookeeper/README.md -------------------------------------------------------------------------------- /infra/kafka/charts/zookeeper/charts/common/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/charts/zookeeper/charts/common/.helmignore -------------------------------------------------------------------------------- /infra/kafka/charts/zookeeper/charts/common/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/charts/zookeeper/charts/common/Chart.yaml -------------------------------------------------------------------------------- /infra/kafka/charts/zookeeper/charts/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/charts/zookeeper/charts/common/README.md -------------------------------------------------------------------------------- /infra/kafka/charts/zookeeper/charts/common/templates/_names.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/charts/zookeeper/charts/common/templates/_names.tpl -------------------------------------------------------------------------------- /infra/kafka/charts/zookeeper/charts/common/templates/_utils.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/charts/zookeeper/charts/common/templates/_utils.tpl -------------------------------------------------------------------------------- /infra/kafka/charts/zookeeper/charts/common/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/charts/zookeeper/charts/common/values.yaml -------------------------------------------------------------------------------- /infra/kafka/charts/zookeeper/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/charts/zookeeper/templates/NOTES.txt -------------------------------------------------------------------------------- /infra/kafka/charts/zookeeper/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/charts/zookeeper/templates/_helpers.tpl -------------------------------------------------------------------------------- /infra/kafka/charts/zookeeper/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/charts/zookeeper/templates/configmap.yaml -------------------------------------------------------------------------------- /infra/kafka/charts/zookeeper/templates/extra-list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/charts/zookeeper/templates/extra-list.yaml -------------------------------------------------------------------------------- /infra/kafka/charts/zookeeper/templates/metrics-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/charts/zookeeper/templates/metrics-svc.yaml -------------------------------------------------------------------------------- /infra/kafka/charts/zookeeper/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/charts/zookeeper/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /infra/kafka/charts/zookeeper/templates/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/charts/zookeeper/templates/pdb.yaml -------------------------------------------------------------------------------- /infra/kafka/charts/zookeeper/templates/prometheusrule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/charts/zookeeper/templates/prometheusrule.yaml -------------------------------------------------------------------------------- /infra/kafka/charts/zookeeper/templates/scripts-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/charts/zookeeper/templates/scripts-configmap.yaml -------------------------------------------------------------------------------- /infra/kafka/charts/zookeeper/templates/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/charts/zookeeper/templates/secrets.yaml -------------------------------------------------------------------------------- /infra/kafka/charts/zookeeper/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/charts/zookeeper/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /infra/kafka/charts/zookeeper/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/charts/zookeeper/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /infra/kafka/charts/zookeeper/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/charts/zookeeper/templates/statefulset.yaml -------------------------------------------------------------------------------- /infra/kafka/charts/zookeeper/templates/svc-headless.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/charts/zookeeper/templates/svc-headless.yaml -------------------------------------------------------------------------------- /infra/kafka/charts/zookeeper/templates/svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/charts/zookeeper/templates/svc.yaml -------------------------------------------------------------------------------- /infra/kafka/charts/zookeeper/templates/tls-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/charts/zookeeper/templates/tls-secrets.yaml -------------------------------------------------------------------------------- /infra/kafka/charts/zookeeper/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/charts/zookeeper/values.yaml -------------------------------------------------------------------------------- /infra/kafka/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/templates/NOTES.txt -------------------------------------------------------------------------------- /infra/kafka/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/templates/_helpers.tpl -------------------------------------------------------------------------------- /infra/kafka/templates/broker/config-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/templates/broker/config-secrets.yaml -------------------------------------------------------------------------------- /infra/kafka/templates/broker/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/templates/broker/configmap.yaml -------------------------------------------------------------------------------- /infra/kafka/templates/broker/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/templates/broker/pdb.yaml -------------------------------------------------------------------------------- /infra/kafka/templates/broker/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/templates/broker/statefulset.yaml -------------------------------------------------------------------------------- /infra/kafka/templates/broker/svc-external-access.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/templates/broker/svc-external-access.yaml -------------------------------------------------------------------------------- /infra/kafka/templates/broker/svc-headless.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/templates/broker/svc-headless.yaml -------------------------------------------------------------------------------- /infra/kafka/templates/controller-eligible/config-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/templates/controller-eligible/config-secrets.yaml -------------------------------------------------------------------------------- /infra/kafka/templates/controller-eligible/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/templates/controller-eligible/configmap.yaml -------------------------------------------------------------------------------- /infra/kafka/templates/controller-eligible/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/templates/controller-eligible/pdb.yaml -------------------------------------------------------------------------------- /infra/kafka/templates/controller-eligible/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/templates/controller-eligible/statefulset.yaml -------------------------------------------------------------------------------- /infra/kafka/templates/controller-eligible/svc-headless.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/templates/controller-eligible/svc-headless.yaml -------------------------------------------------------------------------------- /infra/kafka/templates/extra-list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/templates/extra-list.yaml -------------------------------------------------------------------------------- /infra/kafka/templates/log4j-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/templates/log4j-configmap.yaml -------------------------------------------------------------------------------- /infra/kafka/templates/metrics/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/templates/metrics/deployment.yaml -------------------------------------------------------------------------------- /infra/kafka/templates/metrics/jmx-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/templates/metrics/jmx-configmap.yaml -------------------------------------------------------------------------------- /infra/kafka/templates/metrics/jmx-servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/templates/metrics/jmx-servicemonitor.yaml -------------------------------------------------------------------------------- /infra/kafka/templates/metrics/jmx-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/templates/metrics/jmx-svc.yaml -------------------------------------------------------------------------------- /infra/kafka/templates/metrics/prometheusrule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/templates/metrics/prometheusrule.yaml -------------------------------------------------------------------------------- /infra/kafka/templates/metrics/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/templates/metrics/serviceaccount.yaml -------------------------------------------------------------------------------- /infra/kafka/templates/metrics/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/templates/metrics/servicemonitor.yaml -------------------------------------------------------------------------------- /infra/kafka/templates/metrics/svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/templates/metrics/svc.yaml -------------------------------------------------------------------------------- /infra/kafka/templates/network-policy/networkpolicy-egress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/templates/network-policy/networkpolicy-egress.yaml -------------------------------------------------------------------------------- /infra/kafka/templates/network-policy/networkpolicy-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/templates/network-policy/networkpolicy-ingress.yaml -------------------------------------------------------------------------------- /infra/kafka/templates/provisioning/job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/templates/provisioning/job.yaml -------------------------------------------------------------------------------- /infra/kafka/templates/provisioning/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/templates/provisioning/serviceaccount.yaml -------------------------------------------------------------------------------- /infra/kafka/templates/provisioning/tls-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/templates/provisioning/tls-secret.yaml -------------------------------------------------------------------------------- /infra/kafka/templates/rbac/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/templates/rbac/role.yaml -------------------------------------------------------------------------------- /infra/kafka/templates/rbac/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/templates/rbac/rolebinding.yaml -------------------------------------------------------------------------------- /infra/kafka/templates/rbac/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/templates/rbac/serviceaccount.yaml -------------------------------------------------------------------------------- /infra/kafka/templates/scripts-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/templates/scripts-configmap.yaml -------------------------------------------------------------------------------- /infra/kafka/templates/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/templates/secrets.yaml -------------------------------------------------------------------------------- /infra/kafka/templates/svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/templates/svc.yaml -------------------------------------------------------------------------------- /infra/kafka/templates/tls-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/templates/tls-secret.yaml -------------------------------------------------------------------------------- /infra/kafka/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kafka/values.yaml -------------------------------------------------------------------------------- /infra/kube-prometheus-stack/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kube-prometheus-stack/CONTRIBUTING.md -------------------------------------------------------------------------------- /infra/kube-prometheus-stack/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kube-prometheus-stack/Chart.lock -------------------------------------------------------------------------------- /infra/kube-prometheus-stack/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kube-prometheus-stack/Chart.yaml -------------------------------------------------------------------------------- /infra/kube-prometheus-stack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kube-prometheus-stack/README.md -------------------------------------------------------------------------------- /infra/kube-prometheus-stack/charts/crds/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kube-prometheus-stack/charts/crds/Chart.yaml -------------------------------------------------------------------------------- /infra/kube-prometheus-stack/charts/crds/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kube-prometheus-stack/charts/crds/README.md -------------------------------------------------------------------------------- /infra/kube-prometheus-stack/charts/crds/crds/crd-probes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kube-prometheus-stack/charts/crds/crds/crd-probes.yaml -------------------------------------------------------------------------------- /infra/kube-prometheus-stack/charts/grafana/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kube-prometheus-stack/charts/grafana/.helmignore -------------------------------------------------------------------------------- /infra/kube-prometheus-stack/charts/grafana/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kube-prometheus-stack/charts/grafana/Chart.yaml -------------------------------------------------------------------------------- /infra/kube-prometheus-stack/charts/grafana/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kube-prometheus-stack/charts/grafana/README.md -------------------------------------------------------------------------------- /infra/kube-prometheus-stack/charts/grafana/ci/with-persistence.yaml: -------------------------------------------------------------------------------- 1 | persistence: 2 | type: pvc 3 | enabled: true 4 | -------------------------------------------------------------------------------- /infra/kube-prometheus-stack/charts/grafana/dashboards/custom-dashboard.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /infra/kube-prometheus-stack/charts/grafana/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kube-prometheus-stack/charts/grafana/templates/NOTES.txt -------------------------------------------------------------------------------- /infra/kube-prometheus-stack/charts/grafana/templates/_pod.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kube-prometheus-stack/charts/grafana/templates/_pod.tpl -------------------------------------------------------------------------------- /infra/kube-prometheus-stack/charts/grafana/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kube-prometheus-stack/charts/grafana/templates/hpa.yaml -------------------------------------------------------------------------------- /infra/kube-prometheus-stack/charts/grafana/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kube-prometheus-stack/charts/grafana/templates/pvc.yaml -------------------------------------------------------------------------------- /infra/kube-prometheus-stack/charts/grafana/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kube-prometheus-stack/charts/grafana/templates/role.yaml -------------------------------------------------------------------------------- /infra/kube-prometheus-stack/charts/grafana/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kube-prometheus-stack/charts/grafana/values.yaml -------------------------------------------------------------------------------- /infra/kube-prometheus-stack/charts/kube-state-metrics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kube-prometheus-stack/charts/kube-state-metrics/README.md -------------------------------------------------------------------------------- /infra/kube-prometheus-stack/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kube-prometheus-stack/templates/NOTES.txt -------------------------------------------------------------------------------- /infra/kube-prometheus-stack/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kube-prometheus-stack/templates/_helpers.tpl -------------------------------------------------------------------------------- /infra/kube-prometheus-stack/templates/alertmanager/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kube-prometheus-stack/templates/alertmanager/ingress.yaml -------------------------------------------------------------------------------- /infra/kube-prometheus-stack/templates/alertmanager/psp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kube-prometheus-stack/templates/alertmanager/psp.yaml -------------------------------------------------------------------------------- /infra/kube-prometheus-stack/templates/alertmanager/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kube-prometheus-stack/templates/alertmanager/secret.yaml -------------------------------------------------------------------------------- /infra/kube-prometheus-stack/templates/alertmanager/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kube-prometheus-stack/templates/alertmanager/service.yaml -------------------------------------------------------------------------------- /infra/kube-prometheus-stack/templates/extra-objects.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kube-prometheus-stack/templates/extra-objects.yaml -------------------------------------------------------------------------------- /infra/kube-prometheus-stack/templates/prometheus/_rules.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kube-prometheus-stack/templates/prometheus/_rules.tpl -------------------------------------------------------------------------------- /infra/kube-prometheus-stack/templates/prometheus/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kube-prometheus-stack/templates/prometheus/ingress.yaml -------------------------------------------------------------------------------- /infra/kube-prometheus-stack/templates/prometheus/psp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kube-prometheus-stack/templates/prometheus/psp.yaml -------------------------------------------------------------------------------- /infra/kube-prometheus-stack/templates/prometheus/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kube-prometheus-stack/templates/prometheus/service.yaml -------------------------------------------------------------------------------- /infra/kube-prometheus-stack/templates/thanos-ruler/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kube-prometheus-stack/templates/thanos-ruler/ingress.yaml -------------------------------------------------------------------------------- /infra/kube-prometheus-stack/templates/thanos-ruler/ruler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kube-prometheus-stack/templates/thanos-ruler/ruler.yaml -------------------------------------------------------------------------------- /infra/kube-prometheus-stack/templates/thanos-ruler/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kube-prometheus-stack/templates/thanos-ruler/secret.yaml -------------------------------------------------------------------------------- /infra/kube-prometheus-stack/templates/thanos-ruler/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kube-prometheus-stack/templates/thanos-ruler/service.yaml -------------------------------------------------------------------------------- /infra/kube-prometheus-stack/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kube-prometheus-stack/values.yaml -------------------------------------------------------------------------------- /infra/kube-prometheus-stack/vs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/kube-prometheus-stack/vs.yaml -------------------------------------------------------------------------------- /infra/loki-stack/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/.helmignore -------------------------------------------------------------------------------- /infra/loki-stack/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/Chart.yaml -------------------------------------------------------------------------------- /infra/loki-stack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/README.md -------------------------------------------------------------------------------- /infra/loki-stack/charts/filebeat/.helmignore: -------------------------------------------------------------------------------- 1 | tests/ 2 | .pytest_cache/ 3 | -------------------------------------------------------------------------------- /infra/loki-stack/charts/filebeat/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/filebeat/Chart.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/filebeat/Makefile: -------------------------------------------------------------------------------- 1 | include ../helpers/common.mk 2 | -------------------------------------------------------------------------------- /infra/loki-stack/charts/filebeat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/filebeat/README.md -------------------------------------------------------------------------------- /infra/loki-stack/charts/filebeat/examples/default/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/filebeat/examples/default/Makefile -------------------------------------------------------------------------------- /infra/loki-stack/charts/filebeat/examples/default/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/filebeat/examples/default/README.md -------------------------------------------------------------------------------- /infra/loki-stack/charts/filebeat/examples/deployment/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/filebeat/examples/deployment/Makefile -------------------------------------------------------------------------------- /infra/loki-stack/charts/filebeat/examples/deployment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/filebeat/examples/deployment/README.md -------------------------------------------------------------------------------- /infra/loki-stack/charts/filebeat/examples/oss/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/filebeat/examples/oss/Makefile -------------------------------------------------------------------------------- /infra/loki-stack/charts/filebeat/examples/oss/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/filebeat/examples/oss/README.md -------------------------------------------------------------------------------- /infra/loki-stack/charts/filebeat/examples/oss/test/goss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/filebeat/examples/oss/test/goss.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/filebeat/examples/oss/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/filebeat/examples/oss/values.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/filebeat/examples/security/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/filebeat/examples/security/Makefile -------------------------------------------------------------------------------- /infra/loki-stack/charts/filebeat/examples/security/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/filebeat/examples/security/README.md -------------------------------------------------------------------------------- /infra/loki-stack/charts/filebeat/examples/security/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/filebeat/examples/security/values.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/filebeat/examples/upgrade/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/filebeat/examples/upgrade/Makefile -------------------------------------------------------------------------------- /infra/loki-stack/charts/filebeat/examples/upgrade/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/filebeat/examples/upgrade/README.md -------------------------------------------------------------------------------- /infra/loki-stack/charts/filebeat/examples/upgrade/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/filebeat/examples/upgrade/values.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/filebeat/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/filebeat/templates/NOTES.txt -------------------------------------------------------------------------------- /infra/loki-stack/charts/filebeat/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/filebeat/templates/_helpers.tpl -------------------------------------------------------------------------------- /infra/loki-stack/charts/filebeat/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/filebeat/templates/clusterrole.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/filebeat/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/filebeat/templates/configmap.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/filebeat/templates/daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/filebeat/templates/daemonset.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/filebeat/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/filebeat/templates/deployment.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/filebeat/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/filebeat/templates/role.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/filebeat/templates/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/filebeat/templates/rolebinding.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/filebeat/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/filebeat/values.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/fluent-bit/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/fluent-bit/.helmignore -------------------------------------------------------------------------------- /infra/loki-stack/charts/fluent-bit/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/fluent-bit/Chart.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/fluent-bit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/fluent-bit/README.md -------------------------------------------------------------------------------- /infra/loki-stack/charts/fluent-bit/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/fluent-bit/templates/NOTES.txt -------------------------------------------------------------------------------- /infra/loki-stack/charts/fluent-bit/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/fluent-bit/templates/_helpers.tpl -------------------------------------------------------------------------------- /infra/loki-stack/charts/fluent-bit/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/fluent-bit/templates/configmap.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/fluent-bit/templates/daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/fluent-bit/templates/daemonset.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/fluent-bit/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/fluent-bit/templates/role.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/fluent-bit/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/fluent-bit/values.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/grafana/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/grafana/.helmignore -------------------------------------------------------------------------------- /infra/loki-stack/charts/grafana/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/grafana/Chart.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/grafana/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/grafana/README.md -------------------------------------------------------------------------------- /infra/loki-stack/charts/grafana/ci/default-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/grafana/ci/default-values.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/grafana/ci/with-affinity-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/grafana/ci/with-affinity-values.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/grafana/ci/with-persistence.yaml: -------------------------------------------------------------------------------- 1 | persistence: 2 | type: pvc 3 | enabled: true 4 | -------------------------------------------------------------------------------- /infra/loki-stack/charts/grafana/dashboards/custom-dashboard.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /infra/loki-stack/charts/grafana/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/grafana/templates/NOTES.txt -------------------------------------------------------------------------------- /infra/loki-stack/charts/grafana/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/grafana/templates/_helpers.tpl -------------------------------------------------------------------------------- /infra/loki-stack/charts/grafana/templates/_pod.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/grafana/templates/_pod.tpl -------------------------------------------------------------------------------- /infra/loki-stack/charts/grafana/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/grafana/templates/clusterrole.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/grafana/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/grafana/templates/configmap.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/grafana/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/grafana/templates/deployment.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/grafana/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/grafana/templates/hpa.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/grafana/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/grafana/templates/ingress.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/grafana/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/grafana/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/grafana/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/grafana/templates/pvc.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/grafana/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/grafana/templates/role.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/grafana/templates/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/grafana/templates/rolebinding.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/grafana/templates/secret-env.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/grafana/templates/secret-env.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/grafana/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/grafana/templates/secret.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/grafana/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/grafana/templates/service.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/grafana/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/grafana/templates/statefulset.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/grafana/templates/tests/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/grafana/templates/tests/test.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/grafana/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/grafana/values.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/logstash/.helmignore: -------------------------------------------------------------------------------- 1 | tests/ 2 | .pytest_cache/ 3 | -------------------------------------------------------------------------------- /infra/loki-stack/charts/logstash/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/logstash/Chart.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/logstash/Makefile: -------------------------------------------------------------------------------- 1 | include ../helpers/common.mk 2 | -------------------------------------------------------------------------------- /infra/loki-stack/charts/logstash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/logstash/README.md -------------------------------------------------------------------------------- /infra/loki-stack/charts/logstash/examples/default/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/logstash/examples/default/Makefile -------------------------------------------------------------------------------- /infra/loki-stack/charts/logstash/examples/default/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/logstash/examples/default/README.md -------------------------------------------------------------------------------- /infra/loki-stack/charts/logstash/examples/oss/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/logstash/examples/oss/Makefile -------------------------------------------------------------------------------- /infra/loki-stack/charts/logstash/examples/oss/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/logstash/examples/oss/README.md -------------------------------------------------------------------------------- /infra/loki-stack/charts/logstash/examples/oss/test/goss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/logstash/examples/oss/test/goss.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/logstash/examples/oss/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/logstash/examples/oss/values.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/logstash/examples/security/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/logstash/examples/security/Makefile -------------------------------------------------------------------------------- /infra/loki-stack/charts/logstash/examples/security/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/logstash/examples/security/README.md -------------------------------------------------------------------------------- /infra/loki-stack/charts/logstash/examples/upgrade/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/logstash/examples/upgrade/Makefile -------------------------------------------------------------------------------- /infra/loki-stack/charts/logstash/examples/upgrade/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/logstash/examples/upgrade/README.md -------------------------------------------------------------------------------- /infra/loki-stack/charts/logstash/examples/upgrade/values.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /infra/loki-stack/charts/logstash/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/logstash/templates/NOTES.txt -------------------------------------------------------------------------------- /infra/loki-stack/charts/logstash/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/logstash/templates/_helpers.tpl -------------------------------------------------------------------------------- /infra/loki-stack/charts/logstash/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/logstash/templates/ingress.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/logstash/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/logstash/templates/role.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/logstash/templates/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/logstash/templates/rolebinding.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/logstash/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/logstash/templates/secret.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/logstash/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/logstash/templates/service.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/logstash/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/logstash/templates/statefulset.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/logstash/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/logstash/values.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/loki/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/loki/.helmignore -------------------------------------------------------------------------------- /infra/loki-stack/charts/loki/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/loki/Chart.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/loki/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/loki/README.md -------------------------------------------------------------------------------- /infra/loki-stack/charts/loki/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/loki/templates/NOTES.txt -------------------------------------------------------------------------------- /infra/loki-stack/charts/loki/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/loki/templates/_helpers.tpl -------------------------------------------------------------------------------- /infra/loki-stack/charts/loki/templates/configmap-alert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/loki/templates/configmap-alert.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/loki/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/loki/templates/ingress.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/loki/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/loki/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/loki/templates/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/loki/templates/pdb.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/loki/templates/prometheusrule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/loki/templates/prometheusrule.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/loki/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/loki/templates/role.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/loki/templates/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/loki/templates/rolebinding.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/loki/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/loki/templates/secret.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/loki/templates/service-headless.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/loki/templates/service-headless.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/loki/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/loki/templates/service.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/loki/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/loki/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/loki/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/loki/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/loki/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/loki/templates/statefulset.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/loki/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/loki/values.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/prometheus/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/prometheus/.helmignore -------------------------------------------------------------------------------- /infra/loki-stack/charts/prometheus/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/prometheus/Chart.lock -------------------------------------------------------------------------------- /infra/loki-stack/charts/prometheus/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/prometheus/Chart.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/prometheus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/prometheus/README.md -------------------------------------------------------------------------------- /infra/loki-stack/charts/prometheus/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/prometheus/templates/NOTES.txt -------------------------------------------------------------------------------- /infra/loki-stack/charts/prometheus/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/prometheus/templates/_helpers.tpl -------------------------------------------------------------------------------- /infra/loki-stack/charts/prometheus/templates/server/cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/prometheus/templates/server/cm.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/prometheus/templates/server/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/prometheus/templates/server/pdb.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/prometheus/templates/server/psp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/prometheus/templates/server/psp.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/prometheus/templates/server/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/prometheus/templates/server/pvc.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/prometheus/templates/server/sts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/prometheus/templates/server/sts.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/prometheus/templates/server/vpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/prometheus/templates/server/vpa.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/prometheus/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/prometheus/values.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/promtail/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/promtail/.helmignore -------------------------------------------------------------------------------- /infra/loki-stack/charts/promtail/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/promtail/Chart.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/promtail/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/promtail/README.md -------------------------------------------------------------------------------- /infra/loki-stack/charts/promtail/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/promtail/README.md.gotmpl -------------------------------------------------------------------------------- /infra/loki-stack/charts/promtail/ci/default-values.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infra/loki-stack/charts/promtail/ci/deployment-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/promtail/ci/deployment-values.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/promtail/ci/netpol-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/promtail/ci/netpol-values.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/promtail/ci/service-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/promtail/ci/service-values.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/promtail/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/promtail/templates/NOTES.txt -------------------------------------------------------------------------------- /infra/loki-stack/charts/promtail/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/promtail/templates/_helpers.tpl -------------------------------------------------------------------------------- /infra/loki-stack/charts/promtail/templates/_pod.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/promtail/templates/_pod.tpl -------------------------------------------------------------------------------- /infra/loki-stack/charts/promtail/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/promtail/templates/clusterrole.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/promtail/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/promtail/templates/configmap.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/promtail/templates/daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/promtail/templates/daemonset.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/promtail/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/promtail/templates/deployment.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/promtail/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/promtail/templates/hpa.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/promtail/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/promtail/templates/ingress.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/promtail/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/promtail/templates/role.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/promtail/templates/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/promtail/templates/rolebinding.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/promtail/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/promtail/templates/secret.yaml -------------------------------------------------------------------------------- /infra/loki-stack/charts/promtail/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/charts/promtail/values.yaml -------------------------------------------------------------------------------- /infra/loki-stack/requirements.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/requirements.lock -------------------------------------------------------------------------------- /infra/loki-stack/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/requirements.yaml -------------------------------------------------------------------------------- /infra/loki-stack/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/templates/NOTES.txt -------------------------------------------------------------------------------- /infra/loki-stack/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/templates/_helpers.tpl -------------------------------------------------------------------------------- /infra/loki-stack/templates/datasources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/templates/datasources.yaml -------------------------------------------------------------------------------- /infra/loki-stack/templates/tests/loki-test-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/templates/tests/loki-test-configmap.yaml -------------------------------------------------------------------------------- /infra/loki-stack/templates/tests/loki-test-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/templates/tests/loki-test-pod.yaml -------------------------------------------------------------------------------- /infra/loki-stack/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/loki-stack/values.yaml -------------------------------------------------------------------------------- /infra/minio-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/minio-config.yaml -------------------------------------------------------------------------------- /infra/minio/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/minio/.helmignore -------------------------------------------------------------------------------- /infra/minio/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/minio/Chart.lock -------------------------------------------------------------------------------- /infra/minio/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/minio/Chart.yaml -------------------------------------------------------------------------------- /infra/minio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/minio/README.md -------------------------------------------------------------------------------- /infra/minio/charts/common/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/minio/charts/common/.helmignore -------------------------------------------------------------------------------- /infra/minio/charts/common/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/minio/charts/common/Chart.yaml -------------------------------------------------------------------------------- /infra/minio/charts/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/minio/charts/common/README.md -------------------------------------------------------------------------------- /infra/minio/charts/common/templates/_affinities.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/minio/charts/common/templates/_affinities.tpl -------------------------------------------------------------------------------- /infra/minio/charts/common/templates/_capabilities.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/minio/charts/common/templates/_capabilities.tpl -------------------------------------------------------------------------------- /infra/minio/charts/common/templates/_errors.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/minio/charts/common/templates/_errors.tpl -------------------------------------------------------------------------------- /infra/minio/charts/common/templates/_images.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/minio/charts/common/templates/_images.tpl -------------------------------------------------------------------------------- /infra/minio/charts/common/templates/_ingress.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/minio/charts/common/templates/_ingress.tpl -------------------------------------------------------------------------------- /infra/minio/charts/common/templates/_labels.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/minio/charts/common/templates/_labels.tpl -------------------------------------------------------------------------------- /infra/minio/charts/common/templates/_names.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/minio/charts/common/templates/_names.tpl -------------------------------------------------------------------------------- /infra/minio/charts/common/templates/_secrets.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/minio/charts/common/templates/_secrets.tpl -------------------------------------------------------------------------------- /infra/minio/charts/common/templates/_storage.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/minio/charts/common/templates/_storage.tpl -------------------------------------------------------------------------------- /infra/minio/charts/common/templates/_tplvalues.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/minio/charts/common/templates/_tplvalues.tpl -------------------------------------------------------------------------------- /infra/minio/charts/common/templates/_utils.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/minio/charts/common/templates/_utils.tpl -------------------------------------------------------------------------------- /infra/minio/charts/common/templates/_warnings.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/minio/charts/common/templates/_warnings.tpl -------------------------------------------------------------------------------- /infra/minio/charts/common/templates/validations/_mariadb.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/minio/charts/common/templates/validations/_mariadb.tpl -------------------------------------------------------------------------------- /infra/minio/charts/common/templates/validations/_mongodb.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/minio/charts/common/templates/validations/_mongodb.tpl -------------------------------------------------------------------------------- /infra/minio/charts/common/templates/validations/_mysql.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/minio/charts/common/templates/validations/_mysql.tpl -------------------------------------------------------------------------------- /infra/minio/charts/common/templates/validations/_redis.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/minio/charts/common/templates/validations/_redis.tpl -------------------------------------------------------------------------------- /infra/minio/charts/common/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/minio/charts/common/values.schema.json -------------------------------------------------------------------------------- /infra/minio/charts/common/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/minio/charts/common/values.yaml -------------------------------------------------------------------------------- /infra/minio/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/minio/templates/NOTES.txt -------------------------------------------------------------------------------- /infra/minio/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/minio/templates/_helpers.tpl -------------------------------------------------------------------------------- /infra/minio/templates/api-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/minio/templates/api-ingress.yaml -------------------------------------------------------------------------------- /infra/minio/templates/distributed/headless-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/minio/templates/distributed/headless-svc.yaml -------------------------------------------------------------------------------- /infra/minio/templates/distributed/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/minio/templates/distributed/pdb.yaml -------------------------------------------------------------------------------- /infra/minio/templates/distributed/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/minio/templates/distributed/statefulset.yaml -------------------------------------------------------------------------------- /infra/minio/templates/extra-list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/minio/templates/extra-list.yaml -------------------------------------------------------------------------------- /infra/minio/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/minio/templates/ingress.yaml -------------------------------------------------------------------------------- /infra/minio/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/minio/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /infra/minio/templates/prometheusrule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/minio/templates/prometheusrule.yaml -------------------------------------------------------------------------------- /infra/minio/templates/provisioning-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/minio/templates/provisioning-configmap.yaml -------------------------------------------------------------------------------- /infra/minio/templates/provisioning-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/minio/templates/provisioning-job.yaml -------------------------------------------------------------------------------- /infra/minio/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/minio/templates/pvc.yaml -------------------------------------------------------------------------------- /infra/minio/templates/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/minio/templates/secrets.yaml -------------------------------------------------------------------------------- /infra/minio/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/minio/templates/service.yaml -------------------------------------------------------------------------------- /infra/minio/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/minio/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /infra/minio/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/minio/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /infra/minio/templates/standalone/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/minio/templates/standalone/deployment.yaml -------------------------------------------------------------------------------- /infra/minio/templates/tls-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/minio/templates/tls-secrets.yaml -------------------------------------------------------------------------------- /infra/minio/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/minio/values.yaml -------------------------------------------------------------------------------- /infra/mongodb-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mongodb-config.yaml -------------------------------------------------------------------------------- /infra/mongodb/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mongodb/.helmignore -------------------------------------------------------------------------------- /infra/mongodb/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mongodb/Chart.lock -------------------------------------------------------------------------------- /infra/mongodb/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mongodb/Chart.yaml -------------------------------------------------------------------------------- /infra/mongodb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mongodb/README.md -------------------------------------------------------------------------------- /infra/mongodb/charts/common/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mongodb/charts/common/.helmignore -------------------------------------------------------------------------------- /infra/mongodb/charts/common/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mongodb/charts/common/Chart.yaml -------------------------------------------------------------------------------- /infra/mongodb/charts/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mongodb/charts/common/README.md -------------------------------------------------------------------------------- /infra/mongodb/charts/common/templates/_affinities.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mongodb/charts/common/templates/_affinities.tpl -------------------------------------------------------------------------------- /infra/mongodb/charts/common/templates/_capabilities.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mongodb/charts/common/templates/_capabilities.tpl -------------------------------------------------------------------------------- /infra/mongodb/charts/common/templates/_errors.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mongodb/charts/common/templates/_errors.tpl -------------------------------------------------------------------------------- /infra/mongodb/charts/common/templates/_images.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mongodb/charts/common/templates/_images.tpl -------------------------------------------------------------------------------- /infra/mongodb/charts/common/templates/_ingress.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mongodb/charts/common/templates/_ingress.tpl -------------------------------------------------------------------------------- /infra/mongodb/charts/common/templates/_labels.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mongodb/charts/common/templates/_labels.tpl -------------------------------------------------------------------------------- /infra/mongodb/charts/common/templates/_names.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mongodb/charts/common/templates/_names.tpl -------------------------------------------------------------------------------- /infra/mongodb/charts/common/templates/_secrets.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mongodb/charts/common/templates/_secrets.tpl -------------------------------------------------------------------------------- /infra/mongodb/charts/common/templates/_storage.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mongodb/charts/common/templates/_storage.tpl -------------------------------------------------------------------------------- /infra/mongodb/charts/common/templates/_tplvalues.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mongodb/charts/common/templates/_tplvalues.tpl -------------------------------------------------------------------------------- /infra/mongodb/charts/common/templates/_utils.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mongodb/charts/common/templates/_utils.tpl -------------------------------------------------------------------------------- /infra/mongodb/charts/common/templates/_warnings.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mongodb/charts/common/templates/_warnings.tpl -------------------------------------------------------------------------------- /infra/mongodb/charts/common/templates/validations/_mysql.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mongodb/charts/common/templates/validations/_mysql.tpl -------------------------------------------------------------------------------- /infra/mongodb/charts/common/templates/validations/_redis.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mongodb/charts/common/templates/validations/_redis.tpl -------------------------------------------------------------------------------- /infra/mongodb/charts/common/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mongodb/charts/common/values.yaml -------------------------------------------------------------------------------- /infra/mongodb/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mongodb/templates/NOTES.txt -------------------------------------------------------------------------------- /infra/mongodb/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mongodb/templates/_helpers.tpl -------------------------------------------------------------------------------- /infra/mongodb/templates/arbiter/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mongodb/templates/arbiter/configmap.yaml -------------------------------------------------------------------------------- /infra/mongodb/templates/arbiter/headless-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mongodb/templates/arbiter/headless-svc.yaml -------------------------------------------------------------------------------- /infra/mongodb/templates/arbiter/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mongodb/templates/arbiter/pdb.yaml -------------------------------------------------------------------------------- /infra/mongodb/templates/arbiter/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mongodb/templates/arbiter/statefulset.yaml -------------------------------------------------------------------------------- /infra/mongodb/templates/backup/cronjob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mongodb/templates/backup/cronjob.yaml -------------------------------------------------------------------------------- /infra/mongodb/templates/backup/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mongodb/templates/backup/pvc.yaml -------------------------------------------------------------------------------- /infra/mongodb/templates/common-scripts-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mongodb/templates/common-scripts-cm.yaml -------------------------------------------------------------------------------- /infra/mongodb/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mongodb/templates/configmap.yaml -------------------------------------------------------------------------------- /infra/mongodb/templates/extra-list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mongodb/templates/extra-list.yaml -------------------------------------------------------------------------------- /infra/mongodb/templates/hidden/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mongodb/templates/hidden/configmap.yaml -------------------------------------------------------------------------------- /infra/mongodb/templates/hidden/external-access-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mongodb/templates/hidden/external-access-svc.yaml -------------------------------------------------------------------------------- /infra/mongodb/templates/hidden/headless-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mongodb/templates/hidden/headless-svc.yaml -------------------------------------------------------------------------------- /infra/mongodb/templates/hidden/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mongodb/templates/hidden/pdb.yaml -------------------------------------------------------------------------------- /infra/mongodb/templates/hidden/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mongodb/templates/hidden/statefulset.yaml -------------------------------------------------------------------------------- /infra/mongodb/templates/initialization-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mongodb/templates/initialization-configmap.yaml -------------------------------------------------------------------------------- /infra/mongodb/templates/metrics-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mongodb/templates/metrics-svc.yaml -------------------------------------------------------------------------------- /infra/mongodb/templates/prometheusrule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mongodb/templates/prometheusrule.yaml -------------------------------------------------------------------------------- /infra/mongodb/templates/psp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mongodb/templates/psp.yaml -------------------------------------------------------------------------------- /infra/mongodb/templates/replicaset/external-access-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mongodb/templates/replicaset/external-access-svc.yaml -------------------------------------------------------------------------------- /infra/mongodb/templates/replicaset/headless-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mongodb/templates/replicaset/headless-svc.yaml -------------------------------------------------------------------------------- /infra/mongodb/templates/replicaset/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mongodb/templates/replicaset/pdb.yaml -------------------------------------------------------------------------------- /infra/mongodb/templates/replicaset/scripts-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mongodb/templates/replicaset/scripts-configmap.yaml -------------------------------------------------------------------------------- /infra/mongodb/templates/replicaset/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mongodb/templates/replicaset/statefulset.yaml -------------------------------------------------------------------------------- /infra/mongodb/templates/replicaset/svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mongodb/templates/replicaset/svc.yaml -------------------------------------------------------------------------------- /infra/mongodb/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mongodb/templates/role.yaml -------------------------------------------------------------------------------- /infra/mongodb/templates/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mongodb/templates/rolebinding.yaml -------------------------------------------------------------------------------- /infra/mongodb/templates/secrets-ca.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mongodb/templates/secrets-ca.yaml -------------------------------------------------------------------------------- /infra/mongodb/templates/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mongodb/templates/secrets.yaml -------------------------------------------------------------------------------- /infra/mongodb/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mongodb/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /infra/mongodb/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mongodb/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /infra/mongodb/templates/standalone/dep-sts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mongodb/templates/standalone/dep-sts.yaml -------------------------------------------------------------------------------- /infra/mongodb/templates/standalone/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mongodb/templates/standalone/pvc.yaml -------------------------------------------------------------------------------- /infra/mongodb/templates/standalone/svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mongodb/templates/standalone/svc.yaml -------------------------------------------------------------------------------- /infra/mongodb/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mongodb/values.schema.json -------------------------------------------------------------------------------- /infra/mongodb/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mongodb/values.yaml -------------------------------------------------------------------------------- /infra/mysql-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mysql-config.yaml -------------------------------------------------------------------------------- /infra/mysql/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mysql/.helmignore -------------------------------------------------------------------------------- /infra/mysql/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mysql/Chart.lock -------------------------------------------------------------------------------- /infra/mysql/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mysql/Chart.yaml -------------------------------------------------------------------------------- /infra/mysql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mysql/README.md -------------------------------------------------------------------------------- /infra/mysql/charts/common/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mysql/charts/common/.helmignore -------------------------------------------------------------------------------- /infra/mysql/charts/common/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mysql/charts/common/Chart.yaml -------------------------------------------------------------------------------- /infra/mysql/charts/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mysql/charts/common/README.md -------------------------------------------------------------------------------- /infra/mysql/charts/common/templates/_affinities.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mysql/charts/common/templates/_affinities.tpl -------------------------------------------------------------------------------- /infra/mysql/charts/common/templates/_capabilities.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mysql/charts/common/templates/_capabilities.tpl -------------------------------------------------------------------------------- /infra/mysql/charts/common/templates/_errors.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mysql/charts/common/templates/_errors.tpl -------------------------------------------------------------------------------- /infra/mysql/charts/common/templates/_images.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mysql/charts/common/templates/_images.tpl -------------------------------------------------------------------------------- /infra/mysql/charts/common/templates/_ingress.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mysql/charts/common/templates/_ingress.tpl -------------------------------------------------------------------------------- /infra/mysql/charts/common/templates/_labels.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mysql/charts/common/templates/_labels.tpl -------------------------------------------------------------------------------- /infra/mysql/charts/common/templates/_names.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mysql/charts/common/templates/_names.tpl -------------------------------------------------------------------------------- /infra/mysql/charts/common/templates/_secrets.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mysql/charts/common/templates/_secrets.tpl -------------------------------------------------------------------------------- /infra/mysql/charts/common/templates/_storage.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mysql/charts/common/templates/_storage.tpl -------------------------------------------------------------------------------- /infra/mysql/charts/common/templates/_tplvalues.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mysql/charts/common/templates/_tplvalues.tpl -------------------------------------------------------------------------------- /infra/mysql/charts/common/templates/_utils.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mysql/charts/common/templates/_utils.tpl -------------------------------------------------------------------------------- /infra/mysql/charts/common/templates/_warnings.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mysql/charts/common/templates/_warnings.tpl -------------------------------------------------------------------------------- /infra/mysql/charts/common/templates/validations/_mariadb.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mysql/charts/common/templates/validations/_mariadb.tpl -------------------------------------------------------------------------------- /infra/mysql/charts/common/templates/validations/_mongodb.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mysql/charts/common/templates/validations/_mongodb.tpl -------------------------------------------------------------------------------- /infra/mysql/charts/common/templates/validations/_mysql.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mysql/charts/common/templates/validations/_mysql.tpl -------------------------------------------------------------------------------- /infra/mysql/charts/common/templates/validations/_redis.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mysql/charts/common/templates/validations/_redis.tpl -------------------------------------------------------------------------------- /infra/mysql/charts/common/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mysql/charts/common/values.schema.json -------------------------------------------------------------------------------- /infra/mysql/charts/common/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mysql/charts/common/values.yaml -------------------------------------------------------------------------------- /infra/mysql/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mysql/templates/NOTES.txt -------------------------------------------------------------------------------- /infra/mysql/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mysql/templates/_helpers.tpl -------------------------------------------------------------------------------- /infra/mysql/templates/extra-list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mysql/templates/extra-list.yaml -------------------------------------------------------------------------------- /infra/mysql/templates/metrics-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mysql/templates/metrics-svc.yaml -------------------------------------------------------------------------------- /infra/mysql/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mysql/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /infra/mysql/templates/primary/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mysql/templates/primary/configmap.yaml -------------------------------------------------------------------------------- /infra/mysql/templates/primary/initialization-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mysql/templates/primary/initialization-configmap.yaml -------------------------------------------------------------------------------- /infra/mysql/templates/primary/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mysql/templates/primary/pdb.yaml -------------------------------------------------------------------------------- /infra/mysql/templates/primary/startdb-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mysql/templates/primary/startdb-configmap.yaml -------------------------------------------------------------------------------- /infra/mysql/templates/primary/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mysql/templates/primary/statefulset.yaml -------------------------------------------------------------------------------- /infra/mysql/templates/primary/svc-headless.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mysql/templates/primary/svc-headless.yaml -------------------------------------------------------------------------------- /infra/mysql/templates/primary/svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mysql/templates/primary/svc.yaml -------------------------------------------------------------------------------- /infra/mysql/templates/prometheusrule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mysql/templates/prometheusrule.yaml -------------------------------------------------------------------------------- /infra/mysql/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mysql/templates/role.yaml -------------------------------------------------------------------------------- /infra/mysql/templates/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mysql/templates/rolebinding.yaml -------------------------------------------------------------------------------- /infra/mysql/templates/secondary/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mysql/templates/secondary/configmap.yaml -------------------------------------------------------------------------------- /infra/mysql/templates/secondary/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mysql/templates/secondary/pdb.yaml -------------------------------------------------------------------------------- /infra/mysql/templates/secondary/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mysql/templates/secondary/statefulset.yaml -------------------------------------------------------------------------------- /infra/mysql/templates/secondary/svc-headless.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mysql/templates/secondary/svc-headless.yaml -------------------------------------------------------------------------------- /infra/mysql/templates/secondary/svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mysql/templates/secondary/svc.yaml -------------------------------------------------------------------------------- /infra/mysql/templates/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mysql/templates/secrets.yaml -------------------------------------------------------------------------------- /infra/mysql/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mysql/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /infra/mysql/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mysql/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /infra/mysql/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mysql/values.schema.json -------------------------------------------------------------------------------- /infra/mysql/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/mysql/values.yaml -------------------------------------------------------------------------------- /infra/nfs-subdir-external-provisioner/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/nfs-subdir-external-provisioner/Chart.yaml -------------------------------------------------------------------------------- /infra/nfs-subdir-external-provisioner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/nfs-subdir-external-provisioner/README.md -------------------------------------------------------------------------------- /infra/nfs-subdir-external-provisioner/ci/test-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/nfs-subdir-external-provisioner/ci/test-values.yaml -------------------------------------------------------------------------------- /infra/nfs-subdir-external-provisioner/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/nfs-subdir-external-provisioner/config.yaml -------------------------------------------------------------------------------- /infra/nfs-subdir-external-provisioner/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/nfs-subdir-external-provisioner/templates/_helpers.tpl -------------------------------------------------------------------------------- /infra/nfs-subdir-external-provisioner/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/nfs-subdir-external-provisioner/templates/role.yaml -------------------------------------------------------------------------------- /infra/nfs-subdir-external-provisioner/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/nfs-subdir-external-provisioner/values.yaml -------------------------------------------------------------------------------- /infra/prometheus-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/prometheus-config.yaml -------------------------------------------------------------------------------- /infra/redis-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/redis-config.yaml -------------------------------------------------------------------------------- /infra/redis/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/redis/.helmignore -------------------------------------------------------------------------------- /infra/redis/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/redis/Chart.lock -------------------------------------------------------------------------------- /infra/redis/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/redis/Chart.yaml -------------------------------------------------------------------------------- /infra/redis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/redis/README.md -------------------------------------------------------------------------------- /infra/redis/charts/common/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/redis/charts/common/.helmignore -------------------------------------------------------------------------------- /infra/redis/charts/common/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/redis/charts/common/Chart.yaml -------------------------------------------------------------------------------- /infra/redis/charts/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/redis/charts/common/README.md -------------------------------------------------------------------------------- /infra/redis/charts/common/templates/_affinities.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/redis/charts/common/templates/_affinities.tpl -------------------------------------------------------------------------------- /infra/redis/charts/common/templates/_capabilities.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/redis/charts/common/templates/_capabilities.tpl -------------------------------------------------------------------------------- /infra/redis/charts/common/templates/_errors.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/redis/charts/common/templates/_errors.tpl -------------------------------------------------------------------------------- /infra/redis/charts/common/templates/_images.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/redis/charts/common/templates/_images.tpl -------------------------------------------------------------------------------- /infra/redis/charts/common/templates/_ingress.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/redis/charts/common/templates/_ingress.tpl -------------------------------------------------------------------------------- /infra/redis/charts/common/templates/_labels.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/redis/charts/common/templates/_labels.tpl -------------------------------------------------------------------------------- /infra/redis/charts/common/templates/_names.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/redis/charts/common/templates/_names.tpl -------------------------------------------------------------------------------- /infra/redis/charts/common/templates/_secrets.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/redis/charts/common/templates/_secrets.tpl -------------------------------------------------------------------------------- /infra/redis/charts/common/templates/_storage.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/redis/charts/common/templates/_storage.tpl -------------------------------------------------------------------------------- /infra/redis/charts/common/templates/_tplvalues.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/redis/charts/common/templates/_tplvalues.tpl -------------------------------------------------------------------------------- /infra/redis/charts/common/templates/_utils.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/redis/charts/common/templates/_utils.tpl -------------------------------------------------------------------------------- /infra/redis/charts/common/templates/_warnings.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/redis/charts/common/templates/_warnings.tpl -------------------------------------------------------------------------------- /infra/redis/charts/common/templates/validations/_mariadb.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/redis/charts/common/templates/validations/_mariadb.tpl -------------------------------------------------------------------------------- /infra/redis/charts/common/templates/validations/_mongodb.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/redis/charts/common/templates/validations/_mongodb.tpl -------------------------------------------------------------------------------- /infra/redis/charts/common/templates/validations/_mysql.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/redis/charts/common/templates/validations/_mysql.tpl -------------------------------------------------------------------------------- /infra/redis/charts/common/templates/validations/_redis.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/redis/charts/common/templates/validations/_redis.tpl -------------------------------------------------------------------------------- /infra/redis/charts/common/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/redis/charts/common/values.yaml -------------------------------------------------------------------------------- /infra/redis/img/redis-cluster-topology.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/redis/img/redis-cluster-topology.png -------------------------------------------------------------------------------- /infra/redis/img/redis-topology.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/redis/img/redis-topology.png -------------------------------------------------------------------------------- /infra/redis/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/redis/templates/NOTES.txt -------------------------------------------------------------------------------- /infra/redis/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/redis/templates/_helpers.tpl -------------------------------------------------------------------------------- /infra/redis/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/redis/templates/configmap.yaml -------------------------------------------------------------------------------- /infra/redis/templates/extra-list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/redis/templates/extra-list.yaml -------------------------------------------------------------------------------- /infra/redis/templates/headless-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/redis/templates/headless-svc.yaml -------------------------------------------------------------------------------- /infra/redis/templates/health-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/redis/templates/health-configmap.yaml -------------------------------------------------------------------------------- /infra/redis/templates/master/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/redis/templates/master/application.yaml -------------------------------------------------------------------------------- /infra/redis/templates/master/psp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/redis/templates/master/psp.yaml -------------------------------------------------------------------------------- /infra/redis/templates/master/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/redis/templates/master/pvc.yaml -------------------------------------------------------------------------------- /infra/redis/templates/master/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/redis/templates/master/service.yaml -------------------------------------------------------------------------------- /infra/redis/templates/master/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/redis/templates/master/serviceaccount.yaml -------------------------------------------------------------------------------- /infra/redis/templates/metrics-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/redis/templates/metrics-svc.yaml -------------------------------------------------------------------------------- /infra/redis/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/redis/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /infra/redis/templates/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/redis/templates/pdb.yaml -------------------------------------------------------------------------------- /infra/redis/templates/prometheusrule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/redis/templates/prometheusrule.yaml -------------------------------------------------------------------------------- /infra/redis/templates/replicas/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/redis/templates/replicas/hpa.yaml -------------------------------------------------------------------------------- /infra/redis/templates/replicas/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/redis/templates/replicas/service.yaml -------------------------------------------------------------------------------- /infra/redis/templates/replicas/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/redis/templates/replicas/serviceaccount.yaml -------------------------------------------------------------------------------- /infra/redis/templates/replicas/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/redis/templates/replicas/statefulset.yaml -------------------------------------------------------------------------------- /infra/redis/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/redis/templates/role.yaml -------------------------------------------------------------------------------- /infra/redis/templates/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/redis/templates/rolebinding.yaml -------------------------------------------------------------------------------- /infra/redis/templates/scripts-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/redis/templates/scripts-configmap.yaml -------------------------------------------------------------------------------- /infra/redis/templates/secret-svcbind.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/redis/templates/secret-svcbind.yaml -------------------------------------------------------------------------------- /infra/redis/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/redis/templates/secret.yaml -------------------------------------------------------------------------------- /infra/redis/templates/sentinel/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/redis/templates/sentinel/hpa.yaml -------------------------------------------------------------------------------- /infra/redis/templates/sentinel/node-services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/redis/templates/sentinel/node-services.yaml -------------------------------------------------------------------------------- /infra/redis/templates/sentinel/ports-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/redis/templates/sentinel/ports-configmap.yaml -------------------------------------------------------------------------------- /infra/redis/templates/sentinel/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/redis/templates/sentinel/service.yaml -------------------------------------------------------------------------------- /infra/redis/templates/sentinel/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/redis/templates/sentinel/statefulset.yaml -------------------------------------------------------------------------------- /infra/redis/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/redis/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /infra/redis/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/redis/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /infra/redis/templates/tls-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/redis/templates/tls-secret.yaml -------------------------------------------------------------------------------- /infra/redis/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/redis/values.schema.json -------------------------------------------------------------------------------- /infra/redis/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/infra/redis/values.yaml -------------------------------------------------------------------------------- /k8s-adminfront-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/k8s-adminfront-config.yaml -------------------------------------------------------------------------------- /k8s-chat-server-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/k8s-chat-server-config.yaml -------------------------------------------------------------------------------- /k8s-open-im-server-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/k8s-open-im-server-config.yaml -------------------------------------------------------------------------------- /k8s-webfront-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/k8s-webfront-config.yaml -------------------------------------------------------------------------------- /notification.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/notification.yaml -------------------------------------------------------------------------------- /scripts/helm-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/scripts/helm-docs.sh -------------------------------------------------------------------------------- /scripts/lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimsdk/helm-charts/HEAD/scripts/lint.sh --------------------------------------------------------------------------------