-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d639d8f
commit 04fdbf1
Showing
25 changed files
with
902 additions
and
34 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Binary file not shown.
Binary file not shown.
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,26 @@ | ||
apiVersion: v2 | ||
name: funnel | ||
description: A toolkit for distributed task execution ⚙️ | ||
keywords: | ||
- funnel | ||
|
||
# A chart can be either an 'application' or a 'library' chart. | ||
# | ||
# Application charts are a collection of templates that can be packaged into versioned archives | ||
# to be deployed. | ||
# | ||
# Library charts provide useful utilities or functions for the chart developer. They're included as | ||
# a dependency of application charts to inject those utilities and functions into the rendering | ||
# pipeline. Library charts do not define any templates and therefore cannot be deployed. | ||
type: application | ||
|
||
# This is the chart version. This version number should be incremented each time you make changes | ||
# to the chart and its templates, including the app version. | ||
# Versions are expected to follow Semantic Versioning (https://semver.org/) | ||
version: 0.1.10 | ||
|
||
# This is the version number of the application being deployed. This version number should be | ||
# incremented each time you make changes to the application. Versions are not expected to | ||
# follow Semantic Versioning. They should reflect the version the application is using. | ||
# It is recommended to use it with quotes. | ||
appVersion: "1.11.0" |
90 changes: 90 additions & 0 deletions
90
deployments/kubernetes/helm/funnel/config/funnel-server.yaml
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,90 @@ | ||
Compute: {{ .Values.Compute }} | ||
|
||
Kubernetes: | ||
Executor: "kubernetes" | ||
Namespace: {{ .Release.Namespace }} | ||
|
||
Database: {{ .Values.Database }} | ||
|
||
EventWriters: | ||
{{- range .Values.EventWriters }} | ||
- {{ . }} | ||
{{- end }} | ||
|
||
Logger: | ||
Level: {{ .Values.Logger.Level }} | ||
OutputFile: {{ .Values.Logger.OutputFile }} | ||
|
||
Server: | ||
HostName: {{ .Values.Server.Hostname }} | ||
HTTPPort: {{ .Values.Server.HttpPort }} | ||
RPCPort: {{ .Values.Server.RpcPort }} | ||
DisableHTTPCache: {{ .Values.Server.DisableHttpCache }} | ||
|
||
RPCClient: | ||
ServerAddress: {{ .Values.RPCClient.ServerAddress }} | ||
Timeout: {{ .Values.RPCClient.Timeout }} | ||
MaxRetries: {{ .Values.RPCClient.MaxRetries }} | ||
|
||
Scheduler: | ||
ScheduleRate: {{ .Values.Scheduler.ScheduleRate }} | ||
ScheduleChunk: {{ .Values.Scheduler.ScheduleChunk }} | ||
NodePingTimeout: {{ .Values.Scheduler.NodePingTimeout }} | ||
NodeInitTimeout: {{ .Values.Scheduler.NodeInitTimeout }} | ||
|
||
Node: | ||
ID: {{ .Values.Node.Id }} | ||
Timeout: {{ .Values.Node.Timeout }} | ||
UpdateRate: {{ .Values.Node.UpdateRate }} | ||
Resources: | ||
Cpus: {{ .Values.Node.Resources.cpus }} | ||
RamGb: {{ .Values.Node.Resources.ramGb }} | ||
DiskGb: {{ .Values.Node.Resources.diskGb }} | ||
|
||
Worker: | ||
WorkDir: {{ .Values.Worker.WorkDir }} | ||
PollingRate: {{ .Values.Worker.PollingRate }} | ||
LogUpdateRate: {{ .Values.Worker.LogUpdateRate }} | ||
LogTailSize: {{ .Values.Worker.LogTailSize }} | ||
LeaveWorkDir: {{ .Values.Worker.LeaveWorkDir }} | ||
MaxParallelTransfers: {{ .Values.Worker.MaxParallelTransfers }} | ||
|
||
BoltDB: | ||
Path: {{ .Values.BoltDB.Path }} | ||
|
||
AmazonS3: | ||
Disabled: {{ .Values.AmazonS3.Disabled }} | ||
MaxRetries: {{ .Values.AmazonS3.MaxRetries }} | ||
Key: {{ .Values.AmazonS3.Key }} | ||
Secret: {{ .Values.AmazonS3.Secret }} | ||
|
||
DynamoDB: | ||
TableBasename: {{ .Values.DynamoDB.TableBasename }} | ||
Region: {{ .Values.DynamoDB.Region }} | ||
Key: {{ .Values.DynamoDB.Key }} | ||
Secret: {{ .Values.DynamoDB.Secret }} | ||
|
||
Elastic: | ||
IndexPrefix: {{ .Values.Elastic.IndexPrefix }} | ||
URL: {{ .Values.Elastic.Url }} | ||
|
||
Datastore: | ||
Project: {{ .Values.Datastore.Project }} | ||
CredentialsFile: {{ .Values.Datastore.CredentialsFile }} | ||
|
||
MongoDB: | ||
Addrs: | ||
{{- range .Values.MongoDB.Addrs }} | ||
- {{ . }} | ||
{{- end }} | ||
Database: {{ .Values.MongoDB.Database }} | ||
Timeout: {{ .Values.MongoDB.Timeout }} | ||
Username: {{ .Values.MongoDB.Username }} | ||
Password: {{ .Values.MongoDB.Password }} | ||
|
||
Kafka: | ||
Servers: | ||
{{- range .Values.Kafka.Servers }} | ||
- {{ . }} | ||
{{- end }} | ||
Topic: {{ .Values.Kafka.Topic }} |
Oops, something went wrong.