Skip to content

Commit 4db780f

Browse files
Robert Feketecsatib02
authored andcommitted
Sync generated files
Signed-off-by: Bence Csati <bence.csati@axoflow.com>
1 parent c87fa3d commit 4db780f

File tree

10 files changed

+519
-12
lines changed

10 files changed

+519
-12
lines changed

content/docs/configuration/crds/v1beta1/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ For more information please click on the name
2323
| **[OutputSpec](output_types/)** | OutputSpec defines the desired state of Output | v1beta1 |
2424
| **[SyslogNGClusterFlow](syslogng_clusterflow_types/)** | SyslogNGClusterFlow is the Schema for the syslog-ng clusterflows API | v1beta1 |
2525
| **[SyslogNGClusterOutput](syslogng_clusteroutput_types/)** | SyslogNGClusterOutput is the Schema for the syslog-ng clusteroutputs API | v1beta1 |
26-
| **[SyslogNG](syslogng_types/)** | SyslogNG is a reference to the desired SyslogNG state | v1beta1 |
26+
| **[SyslogNG](syslogng_types/)** | SyslogNG is a standalone reference to the desired SyslogNG configuration | v1beta1 |
2727
| **[SyslogNGFlowSpec](syslogng_flow_types/)** | SyslogNGFlowSpec is the Kubernetes spec for SyslogNGFlows | v1beta1 |
2828
| **[SyslogNGOutputSpec](syslogng_output_types/)** | SyslogNGOutputSpec defines the desired state of SyslogNGOutput | v1beta1 |
2929
| **[SyslogNGSpec](syslogng_types/)** | SyslogNGSpec defines the desired state of SyslogNG | v1beta1 |

content/docs/configuration/crds/v1beta1/common_types.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,9 @@ ServiceMonitorConfig defines the ServiceMonitor properties
140140

141141
Security defines Fluentd, FluentbitAgent deployment security properties
142142

143+
### createOpenShiftSCC (*bool, optional) {#security-createopenshiftscc}
144+
145+
143146
### podSecurityContext (*corev1.PodSecurityContext, optional) {#security-podsecuritycontext}
144147

145148

content/docs/configuration/crds/v1beta1/flow_types.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,6 @@ Filter definition for FlowSpec
9292
### elasticsearch_genid (*filter.ElasticsearchGenId, optional) {#filter-elasticsearch_genid}
9393

9494

95-
### enhanceK8s (*filter.EnhanceK8s, optional) {#filter-enhancek8s}
96-
97-
9895
### geoip (*filter.GeoIP, optional) {#filter-geoip}
9996

10097

@@ -119,9 +116,6 @@ Filter definition for FlowSpec
119116
### stdout (*filter.StdOutFilterConfig, optional) {#filter-stdout}
120117

121118

122-
### sumologic (*filter.SumoLogic, optional) {#filter-sumologic}
123-
124-
125119
### tag_normaliser (*filter.TagNormaliser, optional) {#filter-tag_normaliser}
126120

127121

content/docs/configuration/crds/v1beta1/fluentbit_types.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,9 @@ Disable Kubernetes metadata filter
128128
### enableUpstream (bool, optional) {#fluentbitspec-enableupstream}
129129
130130
131+
### enabledIPv6 (bool, optional) {#fluentbitspec-enabledipv6}
132+
133+
131134
### envVars ([]corev1.EnvVar, optional) {#fluentbitspec-envvars}
132135
133136
@@ -151,6 +154,11 @@ Set the flush time in seconds.nanoseconds. The engine loop uses a Flush timeout
151154
152155
Default: 1
153156
157+
### forceHotReloadAfterGrace (bool, optional) {#fluentbitspec-forcehotreloadaftergrace}
158+
159+
HotReload pauses all inputs and waits until they finish. In certain situations this is unacceptable, for example, if an output is down for a longer time. An undocumented option called "Hot_Reload.Ensure_Thread_Safety Off" can be used at the [SERVICE] config to force hotreload after the grace period. Note that it might result in a SIGSEGV, but worst case kubelet will restart the container. See https://github.com/fluent/fluent-bit/pull/7509
160+
161+
154162
### forwardOptions (*ForwardOptions, optional) {#fluentbitspec-forwardoptions}
155163
156164
@@ -583,6 +591,12 @@ When a monitored file reach it buffer capacity due to a very long line (Buffer_M
583591

584592
Default: Off
585593

594+
### storage.pause_on_chunks_overlimit (string, optional) {#inputtail-storage.pause_on_chunks_overlimit}
595+
596+
Specifies whether to pause or drop data when the buffer is full. This helps to make sure we apply backpressure on the input if enabled, see https://docs.fluentbit.io/manual/administration/backpressure
597+
598+
Default: on
599+
586600
### storage.type (string, optional) {#inputtail-storage.type}
587601

588602
Specify the buffering mechanism to use. It can be memory or filesystem.

content/docs/configuration/crds/v1beta1/fluentd_types.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ BufferStorageVolume is by default configured as PVC using FluentdPvcSpec [volume
2525
### bufferVolumeImage (ImageSpec, optional) {#fluentdspec-buffervolumeimage}
2626

2727

28+
### bufferVolumeLivenessProbe (*corev1.Probe, optional) {#fluentdspec-buffervolumelivenessprobe}
29+
30+
2831
### bufferVolumeMetrics (*Metrics, optional) {#fluentdspec-buffervolumemetrics}
2932

3033

@@ -65,6 +68,9 @@ Overrides the default logging level configCheck setup. This field is not used di
6568
Allows Time object in buffer's MessagePack serde [more info]( https://docs.fluentd.org/deployment/system-config#enable_msgpack_time_support)
6669

6770

71+
### enabledIPv6 (bool, optional) {#fluentdspec-enabledipv6}
72+
73+
6874
### envVars ([]corev1.EnvVar, optional) {#fluentdspec-envvars}
6975

7076

content/docs/configuration/crds/v1beta1/logging_types.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,11 @@ Reference to the logging system. Each of the `loggingRef`s can manage a fluentbi
8686
InlineNodeAgent Configuration Deprecated, will be removed with next major version
8787

8888

89+
### routeConfig (*RouteConfig, optional) {#loggingspec-routeconfig}
90+
91+
RouteConfig determines whether to use loggingRoutes or to create resources based on the logging resource that can be managed by the Telemetry Controller.
92+
93+
8994
### skipInvalidResources (bool, optional) {#loggingspec-skipinvalidresources}
9095

9196
Whether to skip invalid Flow and ClusterFlow resources
@@ -125,6 +130,24 @@ Configure timeout in seconds if strategy is StartWithTimeout
125130

126131

127132

133+
## RouteConfig
134+
135+
### disableLoggingRoute (bool, optional) {#routeconfig-disableloggingroute}
136+
137+
If DisableLoggingRoute is set to true, the logging route controller should remove the given tenant from the status of the logging resource.
138+
139+
140+
### enableTelemetryControllerRoute (bool, optional) {#routeconfig-enabletelemetrycontrollerroute}
141+
142+
If EnableTelemtryControllerRoute set to true, the operator will create the corresponding Tenant, Subscription, and Output based on the logging resource.
143+
144+
145+
### tenantLabels (map[string]string, optional) {#routeconfig-tenantlabels}
146+
147+
TenantLabels is a map of labels that will be added to the tenant object so it can be matched with TelemetryController's TenantSelector ref: https://github.com/kube-logging/telemetry-controller/blob/main/api/telemetry/v1alpha1/collector_types.go
148+
149+
150+
128151
## LoggingStatus
129152

130153
LoggingStatus defines the observed state of Logging

content/docs/configuration/crds/v1beta1/output_types.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,6 @@ OutputSpec defines the desired state of Output
8989
### splunkHec (*output.SplunkHecOutput, optional) {#outputspec-splunkhec}
9090

9191

92-
### sumologic (*output.SumologicOutput, optional) {#outputspec-sumologic}
93-
94-
9592
### syslog (*output.SyslogOutputConfig, optional) {#outputspec-syslog}
9693

9794

content/docs/configuration/plugins/filters/detect_exceptions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ filters:
2626
2727
### force_line_breaks (bool, optional) {#detectexceptions-force_line_breaks}
2828
29-
Force line breaks between each lines when combining exception stacks.
29+
Force line breaks between each line when combining exception stacks.
3030
3131
Default: false
3232

content/docs/configuration/plugins/filters/parser.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ If true, keep time field in the record.
255255

256256
If true, use local time. Otherwise, UTC is used. This is exclusive with utc.
257257

258-
Default: true
258+
Default: true
259259

260260
### multiline_start_regexp (string, optional) {#parse-section-multiline_start_regexp}
261261

0 commit comments

Comments
 (0)