Skip to content

Commit

Permalink
fix: corrected display names in unsafe sub-specs
Browse files Browse the repository at this point in the history
  • Loading branch information
mhyson-cs committed Aug 16, 2024
1 parent 21356f4 commit ae9c8fb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion api/falcon/v1alpha1/falconcontainer_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ type FalconContainerSpec struct {
// FalconUnsafe configures various options that go against industry practices or are otherwise not recommended for use.
// Adjusting these settings may result in incorrect or undesirable behavior. Proceed at your own risk.
// For more information, please see https://github.com/CrowdStrike/falcon-operator/blob/main/UNSAFE.md.
// +operator-sdk:csv:customresourcedefinitions:type=spec,displayName="Falcon Admission Controller Unsafe Settings"
// +operator-sdk:csv:customresourcedefinitions:type=spec,displayName="Falcon Container Unsafe Settings"
Unsafe FalconUnsafe `json:"unsafe,omitempty"`
}

Expand Down
2 changes: 1 addition & 1 deletion api/falcon/v1alpha1/falconnodesensor_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ type FalconNodeSensorConfig struct {
// FalconUnsafe configures various options that go against industry practices or are otherwise not recommended for use.
// Adjusting these settings may result in incorrect or undesirable behavior. Proceed at your own risk.
// For more information, please see https://github.com/CrowdStrike/falcon-operator/blob/main/UNSAFE.md.
// +operator-sdk:csv:customresourcedefinitions:type=spec,displayName="Falcon Admission Controller Unsafe Settings"
// +operator-sdk:csv:customresourcedefinitions:type=spec,displayName="DaemonSet Unsafe Settings"
Unsafe FalconUnsafe `json:"unsafe,omitempty"`
}

Expand Down
2 changes: 1 addition & 1 deletion api/falcon/v1alpha1/unsafe.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ package v1alpha1
// For more information, please see https://github.com/CrowdStrike/falcon-operator/blob/main/UNSAFE.md.
type FalconUnsafe struct {
// UpdatePolicy is the name of a sensor update policy configured and enabled in Falcon UI. It is ignored when Image and/or Version are set.
// +operator-sdk:csv:customresourcedefinitions:type=spec,displayName="Falcon Admission Controller Update Policy",order=1
// +operator-sdk:csv:customresourcedefinitions:type=spec,displayName="Falcon Sensor Update Policy",order=1
UpdatePolicy *string `json:"updatePolicy,omitempty"`
}

0 comments on commit ae9c8fb

Please sign in to comment.