Skip to content

Commit

Permalink
add missing constant
Browse files Browse the repository at this point in the history
Signed-off-by: Peter Wilcsinszky <[email protected]>
  • Loading branch information
pepov committed Feb 7, 2024
1 parent 11e426b commit fff8120
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 11 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -96,4 +96,6 @@ example/tls-cluster-forward/*.key

.licensei.cache

.DS_Store
.DS_Store

go.work*
21 changes: 11 additions & 10 deletions pkg/resources/fluentd/fluentd.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,16 +43,17 @@ import (
)

const (
SecretConfigName = "fluentd"
AppSecretConfigName = "fluentd-app"
ConfigCheckKey = "generated.conf"
ConfigKey = "fluent.conf"
AppConfigKey = "fluentd.conf"
StatefulSetName = "fluentd"
ServiceName = "fluentd"
ServicePort = 24240
OutputSecretName = "fluentd-output"
OutputSecretPath = "/fluentd/secret"
SecretConfigName = "fluentd"
AppSecretConfigName = "fluentd-app"
ConfigCheckKey = "generated.conf"
ConfigKey = "fluent.conf"
AppConfigKey = "fluentd.conf"
StatefulSetName = "fluentd"
ServiceName = "fluentd"
ServicePort = 24240
OutputSecretName = "fluentd-output"
OutputSecretPath = "/fluentd/secret"
PodDisruptionBudgetName = "fluentd"

bufferPath = "/buffers"
defaultServiceAccountName = "fluentd"
Expand Down

0 comments on commit fff8120

Please sign in to comment.