-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Clickhouse: - config directory for clickhouse is now writable - replace chown in initContainer with securityContext - use emptyDir by default for storage - comment nodeSelector for clickhouse by default Install: - separate chart.version and app.version - latest can be installed with --set app.version=latest - some useful information in NOTES.txt - increase loghouse-init-tables timeout - mention --timeout flag for helm in README
- Loading branch information
Showing
13 changed files
with
107 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Patterns to ignore when building packages. | ||
# This supports shell glob matching, relative path matching, and | ||
# negation (prefixed with !). Only one pattern per line. | ||
.DS_Store | ||
# Common VCS dirs | ||
.git/ | ||
.gitignore | ||
.bzr/ | ||
.bzrignore | ||
.hg/ | ||
.hgignore | ||
.svn/ | ||
# Common backup files | ||
*.swp | ||
*.bak | ||
*.tmp | ||
*~ | ||
# Various IDEs | ||
.project | ||
.idea/ | ||
*.tmproj |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
name: loghouse | ||
version: 0.2.2 | ||
version: 0.2.3 | ||
appVersion: 0.2.3 | ||
description: Loghouse (Fluentd, Clickhouse, Tabix, Loghouse) for collect and prepare | ||
logs for Kubernetes cluster. | ||
keywords: | ||
|
@@ -8,10 +9,15 @@ keywords: | |
- tabix | ||
- loghouse | ||
- kubernetes | ||
home: https://github.com/flant/loghouse | ||
icon: https://cdn.rawgit.com/flant/loghouse/master/docs/logo.png | ||
maintainers: | ||
- name: Dmitry Stolyarov | ||
email: [email protected] | ||
- name: Andrey Sidorov | ||
email: [email protected] | ||
- name: Sergey Gnuskov | ||
email: [email protected] | ||
- name: Ivan Mikheykin | ||
email: [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
LOGHOUSE chart is installed in ns/{{.Release.Namespace}}. | ||
|
||
Ingress: {{ if .Values.ingress.enable }}ENABLED{{else}}no{{end}} | ||
Tabix: {{ if .Values.enable_tabix }}ENABLED{{else}}no{{end}} | ||
Clickhouse storage: {{ if .Values.storage.pvc }}pvc/{{.Values.storage.pvc.name}}{{end}}{{if .Values.storage.hostpath}}{{.Values.storage.hostpath}}{{end}}{{if .Values.storage.emptyDir}}emptyDir{{end}} | ||
|
||
|
||
{{- if not .Values.clickhouse.node_selector -}} | ||
Production note: use clickhouse.node_selector to specify node for clickshouse server | ||
{{- end -}} | ||
|
||
Use .Values.docker_path if docker logs is not in /var/lib/docker. | ||
e.g. /dind/docker/containers if dind is used. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters