├── .github └── workflows │ └── main.yaml ├── .gitignore ├── .helm ├── charts │ ├── flant-lib │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── templates │ │ │ ├── functions │ │ │ │ ├── _expandIncludesInValues.tpl │ │ │ │ ├── _formatStringAsDNSLabel.tpl │ │ │ │ ├── _formatStringAsDNSSubdomain.tpl │ │ │ │ ├── _isFalse.tpl │ │ │ │ ├── _isTrue.tpl │ │ │ │ ├── _percentage.tpl │ │ │ │ ├── _value.tpl │ │ │ │ ├── _valueQuoted.tpl │ │ │ │ └── _valueSingleQuoted.tpl │ │ │ ├── snippets │ │ │ │ ├── _generateConfigMapEnvVars.tpl │ │ │ │ ├── _generateContainerEnvVars.tpl │ │ │ │ ├── _generateContainerImage.tpl │ │ │ │ ├── _generateContainerResources.tpl │ │ │ │ ├── _generateLabels.tpl │ │ │ │ ├── _generateSecretData.tpl │ │ │ │ ├── _generateSecretEnvVars.tpl │ │ │ │ └── _generateSelectorLabels.tpl │ │ │ └── tests │ │ │ │ └── render │ │ │ │ └── test.yaml │ │ └── tests │ │ │ └── render │ │ │ ├── expected-render.yaml │ │ │ └── values.yaml │ └── loghouse │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── basic-auth.yaml │ │ ├── clickhouse │ │ │ ├── clickhouse-configmap.yaml │ │ │ ├── clickhouse-ingress.yaml │ │ │ ├── clickhouse-initdb.yaml │ │ │ ├── clickhouse-pvc.yaml │ │ │ ├── clickhouse-secret.yaml │ │ │ ├── clickhouse-svc.yaml │ │ │ └── clickhouse.yaml │ │ ├── fluentd │ │ │ ├── fluentd-configmap.yaml │ │ │ ├── fluentd-roles.yaml │ │ │ ├── fluentd-svc.yaml │ │ │ └── fluentd.yaml │ │ ├── loghouse │ │ │ ├── _loghouse_envs.tpl │ │ │ ├── loghouse-configmap.yaml │ │ │ ├── loghouse-ingress.yaml │ │ │ ├── loghouse-init-db.yaml │ │ │ ├── loghouse-init-tables.yaml │ │ │ ├── loghouse-migrate-tables.yaml │ │ │ ├── loghouse-nginx.yaml │ │ │ ├── loghouse-rbac.yaml │ │ │ ├── loghouse-svc.yaml │ │ │ └── loghouse.yaml │ │ └── tabix │ │ │ ├── tabix-ingress.yaml │ │ │ ├── tabix-svc.yaml │ │ │ └── tabix.yaml │ │ └── values.yaml └── requirements.yaml ├── README.md └── werf.yaml /.github/workflows/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/helm-charts/HEAD/.github/workflows/main.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/helm-charts/HEAD/.gitignore -------------------------------------------------------------------------------- /.helm/charts/flant-lib/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/helm-charts/HEAD/.helm/charts/flant-lib/.helmignore -------------------------------------------------------------------------------- /.helm/charts/flant-lib/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/helm-charts/HEAD/.helm/charts/flant-lib/Chart.yaml -------------------------------------------------------------------------------- /.helm/charts/flant-lib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/helm-charts/HEAD/.helm/charts/flant-lib/LICENSE -------------------------------------------------------------------------------- /.helm/charts/flant-lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/helm-charts/HEAD/.helm/charts/flant-lib/Makefile -------------------------------------------------------------------------------- /.helm/charts/flant-lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/helm-charts/HEAD/.helm/charts/flant-lib/README.md -------------------------------------------------------------------------------- /.helm/charts/flant-lib/templates/functions/_expandIncludesInValues.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/helm-charts/HEAD/.helm/charts/flant-lib/templates/functions/_expandIncludesInValues.tpl -------------------------------------------------------------------------------- /.helm/charts/flant-lib/templates/functions/_formatStringAsDNSLabel.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/helm-charts/HEAD/.helm/charts/flant-lib/templates/functions/_formatStringAsDNSLabel.tpl -------------------------------------------------------------------------------- /.helm/charts/flant-lib/templates/functions/_formatStringAsDNSSubdomain.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/helm-charts/HEAD/.helm/charts/flant-lib/templates/functions/_formatStringAsDNSSubdomain.tpl -------------------------------------------------------------------------------- /.helm/charts/flant-lib/templates/functions/_isFalse.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/helm-charts/HEAD/.helm/charts/flant-lib/templates/functions/_isFalse.tpl -------------------------------------------------------------------------------- /.helm/charts/flant-lib/templates/functions/_isTrue.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/helm-charts/HEAD/.helm/charts/flant-lib/templates/functions/_isTrue.tpl -------------------------------------------------------------------------------- /.helm/charts/flant-lib/templates/functions/_percentage.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/helm-charts/HEAD/.helm/charts/flant-lib/templates/functions/_percentage.tpl -------------------------------------------------------------------------------- /.helm/charts/flant-lib/templates/functions/_value.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/helm-charts/HEAD/.helm/charts/flant-lib/templates/functions/_value.tpl -------------------------------------------------------------------------------- /.helm/charts/flant-lib/templates/functions/_valueQuoted.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/helm-charts/HEAD/.helm/charts/flant-lib/templates/functions/_valueQuoted.tpl -------------------------------------------------------------------------------- /.helm/charts/flant-lib/templates/functions/_valueSingleQuoted.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/helm-charts/HEAD/.helm/charts/flant-lib/templates/functions/_valueSingleQuoted.tpl -------------------------------------------------------------------------------- /.helm/charts/flant-lib/templates/snippets/_generateConfigMapEnvVars.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/helm-charts/HEAD/.helm/charts/flant-lib/templates/snippets/_generateConfigMapEnvVars.tpl -------------------------------------------------------------------------------- /.helm/charts/flant-lib/templates/snippets/_generateContainerEnvVars.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/helm-charts/HEAD/.helm/charts/flant-lib/templates/snippets/_generateContainerEnvVars.tpl -------------------------------------------------------------------------------- /.helm/charts/flant-lib/templates/snippets/_generateContainerImage.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/helm-charts/HEAD/.helm/charts/flant-lib/templates/snippets/_generateContainerImage.tpl -------------------------------------------------------------------------------- /.helm/charts/flant-lib/templates/snippets/_generateContainerResources.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/helm-charts/HEAD/.helm/charts/flant-lib/templates/snippets/_generateContainerResources.tpl -------------------------------------------------------------------------------- /.helm/charts/flant-lib/templates/snippets/_generateLabels.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/helm-charts/HEAD/.helm/charts/flant-lib/templates/snippets/_generateLabels.tpl -------------------------------------------------------------------------------- /.helm/charts/flant-lib/templates/snippets/_generateSecretData.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/helm-charts/HEAD/.helm/charts/flant-lib/templates/snippets/_generateSecretData.tpl -------------------------------------------------------------------------------- /.helm/charts/flant-lib/templates/snippets/_generateSecretEnvVars.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/helm-charts/HEAD/.helm/charts/flant-lib/templates/snippets/_generateSecretEnvVars.tpl -------------------------------------------------------------------------------- /.helm/charts/flant-lib/templates/snippets/_generateSelectorLabels.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/helm-charts/HEAD/.helm/charts/flant-lib/templates/snippets/_generateSelectorLabels.tpl -------------------------------------------------------------------------------- /.helm/charts/flant-lib/templates/tests/render/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/helm-charts/HEAD/.helm/charts/flant-lib/templates/tests/render/test.yaml -------------------------------------------------------------------------------- /.helm/charts/flant-lib/tests/render/expected-render.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/helm-charts/HEAD/.helm/charts/flant-lib/tests/render/expected-render.yaml -------------------------------------------------------------------------------- /.helm/charts/flant-lib/tests/render/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/helm-charts/HEAD/.helm/charts/flant-lib/tests/render/values.yaml -------------------------------------------------------------------------------- /.helm/charts/loghouse/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/helm-charts/HEAD/.helm/charts/loghouse/.helmignore -------------------------------------------------------------------------------- /.helm/charts/loghouse/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/helm-charts/HEAD/.helm/charts/loghouse/Chart.yaml -------------------------------------------------------------------------------- /.helm/charts/loghouse/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/helm-charts/HEAD/.helm/charts/loghouse/templates/NOTES.txt -------------------------------------------------------------------------------- /.helm/charts/loghouse/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/helm-charts/HEAD/.helm/charts/loghouse/templates/_helpers.tpl -------------------------------------------------------------------------------- /.helm/charts/loghouse/templates/basic-auth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/helm-charts/HEAD/.helm/charts/loghouse/templates/basic-auth.yaml -------------------------------------------------------------------------------- /.helm/charts/loghouse/templates/clickhouse/clickhouse-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/helm-charts/HEAD/.helm/charts/loghouse/templates/clickhouse/clickhouse-configmap.yaml -------------------------------------------------------------------------------- /.helm/charts/loghouse/templates/clickhouse/clickhouse-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/helm-charts/HEAD/.helm/charts/loghouse/templates/clickhouse/clickhouse-ingress.yaml -------------------------------------------------------------------------------- /.helm/charts/loghouse/templates/clickhouse/clickhouse-initdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/helm-charts/HEAD/.helm/charts/loghouse/templates/clickhouse/clickhouse-initdb.yaml -------------------------------------------------------------------------------- /.helm/charts/loghouse/templates/clickhouse/clickhouse-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/helm-charts/HEAD/.helm/charts/loghouse/templates/clickhouse/clickhouse-pvc.yaml -------------------------------------------------------------------------------- /.helm/charts/loghouse/templates/clickhouse/clickhouse-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/helm-charts/HEAD/.helm/charts/loghouse/templates/clickhouse/clickhouse-secret.yaml -------------------------------------------------------------------------------- /.helm/charts/loghouse/templates/clickhouse/clickhouse-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/helm-charts/HEAD/.helm/charts/loghouse/templates/clickhouse/clickhouse-svc.yaml -------------------------------------------------------------------------------- /.helm/charts/loghouse/templates/clickhouse/clickhouse.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/helm-charts/HEAD/.helm/charts/loghouse/templates/clickhouse/clickhouse.yaml -------------------------------------------------------------------------------- /.helm/charts/loghouse/templates/fluentd/fluentd-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/helm-charts/HEAD/.helm/charts/loghouse/templates/fluentd/fluentd-configmap.yaml -------------------------------------------------------------------------------- /.helm/charts/loghouse/templates/fluentd/fluentd-roles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/helm-charts/HEAD/.helm/charts/loghouse/templates/fluentd/fluentd-roles.yaml -------------------------------------------------------------------------------- /.helm/charts/loghouse/templates/fluentd/fluentd-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/helm-charts/HEAD/.helm/charts/loghouse/templates/fluentd/fluentd-svc.yaml -------------------------------------------------------------------------------- /.helm/charts/loghouse/templates/fluentd/fluentd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/helm-charts/HEAD/.helm/charts/loghouse/templates/fluentd/fluentd.yaml -------------------------------------------------------------------------------- /.helm/charts/loghouse/templates/loghouse/_loghouse_envs.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/helm-charts/HEAD/.helm/charts/loghouse/templates/loghouse/_loghouse_envs.tpl -------------------------------------------------------------------------------- /.helm/charts/loghouse/templates/loghouse/loghouse-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/helm-charts/HEAD/.helm/charts/loghouse/templates/loghouse/loghouse-configmap.yaml -------------------------------------------------------------------------------- /.helm/charts/loghouse/templates/loghouse/loghouse-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/helm-charts/HEAD/.helm/charts/loghouse/templates/loghouse/loghouse-ingress.yaml -------------------------------------------------------------------------------- /.helm/charts/loghouse/templates/loghouse/loghouse-init-db.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/helm-charts/HEAD/.helm/charts/loghouse/templates/loghouse/loghouse-init-db.yaml -------------------------------------------------------------------------------- /.helm/charts/loghouse/templates/loghouse/loghouse-init-tables.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/helm-charts/HEAD/.helm/charts/loghouse/templates/loghouse/loghouse-init-tables.yaml -------------------------------------------------------------------------------- /.helm/charts/loghouse/templates/loghouse/loghouse-migrate-tables.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/helm-charts/HEAD/.helm/charts/loghouse/templates/loghouse/loghouse-migrate-tables.yaml -------------------------------------------------------------------------------- /.helm/charts/loghouse/templates/loghouse/loghouse-nginx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/helm-charts/HEAD/.helm/charts/loghouse/templates/loghouse/loghouse-nginx.yaml -------------------------------------------------------------------------------- /.helm/charts/loghouse/templates/loghouse/loghouse-rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/helm-charts/HEAD/.helm/charts/loghouse/templates/loghouse/loghouse-rbac.yaml -------------------------------------------------------------------------------- /.helm/charts/loghouse/templates/loghouse/loghouse-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/helm-charts/HEAD/.helm/charts/loghouse/templates/loghouse/loghouse-svc.yaml -------------------------------------------------------------------------------- /.helm/charts/loghouse/templates/loghouse/loghouse.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/helm-charts/HEAD/.helm/charts/loghouse/templates/loghouse/loghouse.yaml -------------------------------------------------------------------------------- /.helm/charts/loghouse/templates/tabix/tabix-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/helm-charts/HEAD/.helm/charts/loghouse/templates/tabix/tabix-ingress.yaml -------------------------------------------------------------------------------- /.helm/charts/loghouse/templates/tabix/tabix-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/helm-charts/HEAD/.helm/charts/loghouse/templates/tabix/tabix-svc.yaml -------------------------------------------------------------------------------- /.helm/charts/loghouse/templates/tabix/tabix.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/helm-charts/HEAD/.helm/charts/loghouse/templates/tabix/tabix.yaml -------------------------------------------------------------------------------- /.helm/charts/loghouse/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/helm-charts/HEAD/.helm/charts/loghouse/values.yaml -------------------------------------------------------------------------------- /.helm/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/helm-charts/HEAD/.helm/requirements.yaml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/helm-charts/HEAD/README.md -------------------------------------------------------------------------------- /werf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/helm-charts/HEAD/werf.yaml --------------------------------------------------------------------------------