@@ -677,6 +677,202 @@ spec:
677
677
will be used.
678
678
type : string
679
679
type : object
680
+ loki :
681
+ description : Loki defines Loki Output configuration.
682
+ properties :
683
+ autoKubernetesLabels :
684
+ description : If set to true, it will add all Kubernetes labels to
685
+ the Stream labels.
686
+ enum :
687
+ - " on"
688
+ - " off"
689
+ type : string
690
+ host :
691
+ description : Loki hostname or IP address.
692
+ type : string
693
+ httpPassword :
694
+ description : Password for user defined in HTTP_User Set HTTP basic
695
+ authentication password
696
+ properties :
697
+ valueFrom :
698
+ description : ValueSource represents a source for the value of
699
+ a secret.
700
+ properties :
701
+ secretKeyRef :
702
+ description : Selects a key of a secret in the pod's namespace
703
+ properties :
704
+ key :
705
+ description : The key of the secret to select from. Must
706
+ be a valid secret key.
707
+ type : string
708
+ name :
709
+ description : ' Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
710
+ TODO: Add other useful fields. apiVersion, kind, uid?'
711
+ type : string
712
+ optional :
713
+ description : Specify whether the Secret or its key must
714
+ be defined
715
+ type : boolean
716
+ required :
717
+ - key
718
+ type : object
719
+ type : object
720
+ type : object
721
+ httpUser :
722
+ description : Set HTTP basic authentication user name.
723
+ properties :
724
+ valueFrom :
725
+ description : ValueSource represents a source for the value of
726
+ a secret.
727
+ properties :
728
+ secretKeyRef :
729
+ description : Selects a key of a secret in the pod's namespace
730
+ properties :
731
+ key :
732
+ description : The key of the secret to select from. Must
733
+ be a valid secret key.
734
+ type : string
735
+ name :
736
+ description : ' Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
737
+ TODO: Add other useful fields. apiVersion, kind, uid?'
738
+ type : string
739
+ optional :
740
+ description : Specify whether the Secret or its key must
741
+ be defined
742
+ type : boolean
743
+ required :
744
+ - key
745
+ type : object
746
+ type : object
747
+ type : object
748
+ labelKeys :
749
+ description : Optional list of record keys that will be placed as
750
+ stream labels. This configuration property is for records key
751
+ only.
752
+ items :
753
+ type : string
754
+ type : array
755
+ labels :
756
+ description : Stream labels for API request. It can be multiple comma
757
+ separated of strings specifying key=value pairs. In addition
758
+ to fixed parameters, it also allows to add custom record keys
759
+ (similar to label_keys property).
760
+ items :
761
+ type : string
762
+ type : array
763
+ lineFormat :
764
+ description : Format to use when flattening the record to a log line.
765
+ Valid values are json or key_value. If set to json, the log line
766
+ sent to Loki will be the Fluent Bit record dumped as JSON. If
767
+ set to key_value, the log line will be each item in the record
768
+ concatenated together (separated by a single space) in the format.
769
+ enum :
770
+ - json
771
+ - key_value
772
+ type : string
773
+ port :
774
+ description : Loki TCP port
775
+ format : int32
776
+ maximum : 65535
777
+ minimum : 1
778
+ type : integer
779
+ tenantID :
780
+ description : Tenant ID used by default to push logs to Loki. If
781
+ omitted or empty it assumes Loki is running in single-tenant mode
782
+ and no X-Scope-OrgID header is sent.
783
+ properties :
784
+ valueFrom :
785
+ description : ValueSource represents a source for the value of
786
+ a secret.
787
+ properties :
788
+ secretKeyRef :
789
+ description : Selects a key of a secret in the pod's namespace
790
+ properties :
791
+ key :
792
+ description : The key of the secret to select from. Must
793
+ be a valid secret key.
794
+ type : string
795
+ name :
796
+ description : ' Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
797
+ TODO: Add other useful fields. apiVersion, kind, uid?'
798
+ type : string
799
+ optional :
800
+ description : Specify whether the Secret or its key must
801
+ be defined
802
+ type : boolean
803
+ required :
804
+ - key
805
+ type : object
806
+ type : object
807
+ type : object
808
+ tls :
809
+ description : Fluent Bit provides integrated support for Transport
810
+ Layer Security (TLS) and it predecessor Secure Sockets Layer (SSL)
811
+ respectively.
812
+ properties :
813
+ caFile :
814
+ description : Absolute path to CA certificate file
815
+ type : string
816
+ caPath :
817
+ description : Absolute path to scan for certificate files
818
+ type : string
819
+ crtFile :
820
+ description : Absolute path to Certificate file
821
+ type : string
822
+ debug :
823
+ description : ' Set TLS debug verbosity level. It accept the following
824
+ values: 0 (No debug), 1 (Error), 2 (State change), 3 (Informational)
825
+ and 4 Verbose'
826
+ enum :
827
+ - 0
828
+ - 1
829
+ - 2
830
+ - 3
831
+ - 4
832
+ format : int32
833
+ type : integer
834
+ keyFile :
835
+ description : Absolute path to private Key file
836
+ type : string
837
+ keyPassword :
838
+ description : Optional password for tls.key_file file
839
+ properties :
840
+ valueFrom :
841
+ description : ValueSource represents a source for the value
842
+ of a secret.
843
+ properties :
844
+ secretKeyRef :
845
+ description : Selects a key of a secret in the pod's
846
+ namespace
847
+ properties :
848
+ key :
849
+ description : The key of the secret to select from. Must
850
+ be a valid secret key.
851
+ type : string
852
+ name :
853
+ description : ' Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
854
+ TODO: Add other useful fields. apiVersion, kind,
855
+ uid?'
856
+ type : string
857
+ optional :
858
+ description : Specify whether the Secret or its key
859
+ must be defined
860
+ type : boolean
861
+ required :
862
+ - key
863
+ type : object
864
+ type : object
865
+ type : object
866
+ verify :
867
+ description : Force certificate validation
868
+ type : boolean
869
+ vhost :
870
+ description : Hostname to be used for TLS SNI extension
871
+ type : string
872
+ type : object
873
+ required :
874
+ - host
875
+ type : object
680
876
match :
681
877
description : A pattern to match against the tags of incoming records.
682
878
It's case sensitive and support the star (*) character as a wildcard.
0 commit comments