diff --git a/.gitignore b/.gitignore index cb57e7b4e..b97b661c5 100644 --- a/.gitignore +++ b/.gitignore @@ -96,4 +96,6 @@ example/tls-cluster-forward/*.key .licensei.cache -.DS_Store \ No newline at end of file +.DS_Store + +go.work* diff --git a/pkg/resources/fluentd/fluentd.go b/pkg/resources/fluentd/fluentd.go index 7a86700f0..a7e099537 100644 --- a/pkg/resources/fluentd/fluentd.go +++ b/pkg/resources/fluentd/fluentd.go @@ -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"