Skip to content

Commit 84ce15e

Browse files
authoredJun 6, 2024··
fix spacing in types file (#1223)
1 parent 689bc19 commit 84ce15e

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed
 

Diff for: ‎apis/datadoghq/v2alpha1/datadogagent_types.go

+11
Original file line numberDiff line numberDiff line change
@@ -162,10 +162,12 @@ type ASMFeatureConfig struct {
162162
// Enabled Default: false
163163
// +optional
164164
Threats *ASMThreatsConfig `json:"threats,omitempty"`
165+
165166
// SCA configures Software Composition Analysis.
166167
// Enabled Default: false
167168
// +optional
168169
SCA *ASMSCAConfig `json:"sca,omitempty"`
170+
169171
// IAST configures Interactive Application Security Testing.
170172
// Enabled Default: false
171173
// +optional
@@ -499,6 +501,7 @@ type OTLPProtocolsConfig struct {
499501
// GRPC contains configuration for the OTLP ingest OTLP/gRPC receiver.
500502
// +optional
501503
GRPC *OTLPGRPCConfig `json:"grpc,omitempty"`
504+
502505
// HTTP contains configuration for the OTLP ingest OTLP/HTTP receiver.
503506
// +optional
504507
HTTP *OTLPHTTPConfig `json:"http,omitempty"`
@@ -624,6 +627,7 @@ type AdmissionControllerFeatureConfig struct {
624627
// Default: "datadog-webhook"
625628
// +optional
626629
WebhookName *string `json:"webhookName,omitempty"`
630+
627631
// AgentSidecarInjection contains Agent sidecar injection configurations.
628632
// +optional
629633
AgentSidecarInjection *AgentSidecarInjectionConfig `json:"agentSidecarInjection,omitempty"`
@@ -642,26 +646,32 @@ type AgentSidecarInjectionConfig struct {
642646
// Default: false
643647
// +optional
644648
Enabled *bool `json:"enabled"`
649+
645650
// ClusterAgentCommunicationEnabled enables communication between Agent sidecars and the Cluster Agent.
646651
// Default : true
647652
// +optional
648653
ClusterAgentCommunicationEnabled *bool `json:"clusterAgentCommunicationEnabled,omitempty"`
654+
649655
// Provider is used to add infrastructure provider-specific configurations to the Agent sidecar.
650656
// Currently only "fargate" is supported.
651657
// To use the feature in other environments (including local testing) omit the config.
652658
// See also: https://docs.datadoghq.com/integrations/eks_fargate
653659
// +optional
654660
Provider *string `json:"provider,omitempty"`
661+
655662
// Registry overrides the default registry for the sidecar Agent.
656663
// +optional
657664
Registry *string `json:"registry,omitempty"`
665+
658666
// Image overrides the default Agent image name and tag for the Agent sidecar.
659667
// +optional
660668
Image *commonv1.AgentImageConfig `json:"image,omitempty"`
669+
661670
// Selectors define the pod selector for sidecar injection. Only one rule is supported.
662671
// +optional
663672
// +listType=atomic
664673
Selectors []*Selector `json:"selectors,omitempty"`
674+
665675
// Profiles define the sidecar configuration override. Only one profile is supported.
666676
// +optional
667677
// +listType=atomic
@@ -673,6 +683,7 @@ type Selector struct {
673683
// NamespaceSelector specifies the label selector for namespaces.
674684
// +optional
675685
NamespaceSelector *metav1.LabelSelector `json:"namespaceSelector,omitempty"`
686+
676687
// ObjectSelector specifies the label selector for objects.
677688
// +optional
678689
ObjectSelector *metav1.LabelSelector `json:"objectSelector,omitempty"`

0 commit comments

Comments
 (0)
Please sign in to comment.