├── LICENSE ├── README.md └── thanos ├── .helmignore ├── Chart.yaml ├── templates ├── NOTES.txt ├── _helpers.tpl ├── compact-deployment.yaml ├── compact-service-http.yaml ├── configmap-s3.yaml ├── query-deployment.yaml ├── query-secret-tls-client.yaml ├── query-secret-tls-server.yaml ├── query-service-cluster.yaml ├── query-service-grpc.yaml ├── query-service-http.yaml ├── store-deployment.yaml ├── store-secret-tls-server.yaml ├── store-service-cluster.yaml ├── store-service-grpc.yaml └── store-service-http.yaml └── values.yaml /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthur-c/thanos-helm-chart/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # thanos helm chart 2 | -------------------------------------------------------------------------------- /thanos/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthur-c/thanos-helm-chart/HEAD/thanos/.helmignore -------------------------------------------------------------------------------- /thanos/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthur-c/thanos-helm-chart/HEAD/thanos/Chart.yaml -------------------------------------------------------------------------------- /thanos/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thanos/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthur-c/thanos-helm-chart/HEAD/thanos/templates/_helpers.tpl -------------------------------------------------------------------------------- /thanos/templates/compact-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthur-c/thanos-helm-chart/HEAD/thanos/templates/compact-deployment.yaml -------------------------------------------------------------------------------- /thanos/templates/compact-service-http.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthur-c/thanos-helm-chart/HEAD/thanos/templates/compact-service-http.yaml -------------------------------------------------------------------------------- /thanos/templates/configmap-s3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthur-c/thanos-helm-chart/HEAD/thanos/templates/configmap-s3.yaml -------------------------------------------------------------------------------- /thanos/templates/query-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthur-c/thanos-helm-chart/HEAD/thanos/templates/query-deployment.yaml -------------------------------------------------------------------------------- /thanos/templates/query-secret-tls-client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthur-c/thanos-helm-chart/HEAD/thanos/templates/query-secret-tls-client.yaml -------------------------------------------------------------------------------- /thanos/templates/query-secret-tls-server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthur-c/thanos-helm-chart/HEAD/thanos/templates/query-secret-tls-server.yaml -------------------------------------------------------------------------------- /thanos/templates/query-service-cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthur-c/thanos-helm-chart/HEAD/thanos/templates/query-service-cluster.yaml -------------------------------------------------------------------------------- /thanos/templates/query-service-grpc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthur-c/thanos-helm-chart/HEAD/thanos/templates/query-service-grpc.yaml -------------------------------------------------------------------------------- /thanos/templates/query-service-http.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthur-c/thanos-helm-chart/HEAD/thanos/templates/query-service-http.yaml -------------------------------------------------------------------------------- /thanos/templates/store-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthur-c/thanos-helm-chart/HEAD/thanos/templates/store-deployment.yaml -------------------------------------------------------------------------------- /thanos/templates/store-secret-tls-server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthur-c/thanos-helm-chart/HEAD/thanos/templates/store-secret-tls-server.yaml -------------------------------------------------------------------------------- /thanos/templates/store-service-cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthur-c/thanos-helm-chart/HEAD/thanos/templates/store-service-cluster.yaml -------------------------------------------------------------------------------- /thanos/templates/store-service-grpc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthur-c/thanos-helm-chart/HEAD/thanos/templates/store-service-grpc.yaml -------------------------------------------------------------------------------- /thanos/templates/store-service-http.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthur-c/thanos-helm-chart/HEAD/thanos/templates/store-service-http.yaml -------------------------------------------------------------------------------- /thanos/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthur-c/thanos-helm-chart/HEAD/thanos/values.yaml --------------------------------------------------------------------------------