diff --git a/SECURITY_CONTACTS b/SECURITY_CONTACTS.md similarity index 96% rename from SECURITY_CONTACTS rename to SECURITY_CONTACTS.md index 44cb994718c..6fece2ee188 100644 --- a/SECURITY_CONTACTS +++ b/SECURITY_CONTACTS.md @@ -10,5 +10,5 @@ # DO NOT REPORT SECURITY VULNERABILITIES DIRECTLY TO THESE NAMES, FOLLOW THE # INSTRUCTIONS AT https://kubernetes.io/security/ -cheyang -RongGu +* cheyang +* RongGu diff --git a/charts/fluid/fluid/Chart.yaml b/charts/fluid/fluid/Chart.yaml index cb7bc2aa940..d1236340518 100644 --- a/charts/fluid/fluid/Chart.yaml +++ b/charts/fluid/fluid/Chart.yaml @@ -18,7 +18,7 @@ version: 1.0.6 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. -appVersion: 1.0.6-4dda402 +appVersion: 1.0.6-bfc70cc home: https://github.com/fluid-cloudnative/fluid keywords: - category:data diff --git a/charts/fluid/fluid/values.yaml b/charts/fluid/fluid/values.yaml index 1868ad7ab67..6e8481b0f19 100644 --- a/charts/fluid/fluid/values.yaml +++ b/charts/fluid/fluid/values.yaml @@ -14,7 +14,7 @@ image: # Default registry, namespace and version tag for images managed by fluid imagePrefix: &defaultImagePrefix fluidcloudnative # imagePrefix: &defaultImagePrefix registry.aliyuncs.com/fluid -version: &defaultVersion v1.0.6-4dda402 +version: &defaultVersion v1.0.6-bfc70cc crdUpgrade: enabled: true diff --git a/pkg/ddc/alluxio/process_data_test.go b/pkg/ddc/alluxio/process_data_test.go index 4390fa8b778..0544f0ece7b 100644 --- a/pkg/ddc/alluxio/process_data_test.go +++ b/pkg/ddc/alluxio/process_data_test.go @@ -27,7 +27,7 @@ import ( "sigs.k8s.io/controller-runtime/pkg/client" ) -// TestAlluxioEngine_generateDataProcessValueFile tests the generateDataProcessValueFile +// TestAlluxioEngine_generateDataProcessValueFile tests the generateDataProcessValueFile // function of AlluxioEngine under different input scenarios. // // Parameters: @@ -36,8 +36,8 @@ import ( // - args: includes the engine instance, request context, and the input object to test. // // Return: -// - Verifies whether generateDataProcessValueFile returns an error as expected -// in each scenario. +// - Verifies whether generateDataProcessValueFile returns an error as expected +// in each scenario. func TestAlluxioEngine_generateDataProcessValueFile(t *testing.T) { dataset := &datav1alpha1.Dataset{ ObjectMeta: metav1.ObjectMeta{ diff --git a/pkg/ddc/alluxio/transform_test.go b/pkg/ddc/alluxio/transform_test.go index 34d0758e0cb..c3235f17e18 100755 --- a/pkg/ddc/alluxio/transform_test.go +++ b/pkg/ddc/alluxio/transform_test.go @@ -44,6 +44,7 @@ var ( Name: "local", } ) + // TestTransformFuse tests the transformFuse method of the Alluxio engine to ensure it correctly // generates the expected FUSE mount arguments in the Alluxio object based on the provided // AlluxioRuntime and Dataset specifications. @@ -501,11 +502,11 @@ func TestTransformShortCircuit(t *testing.T) { // for AlluxioRuntime components. It verifies that common metadata specified in the Runtime's // PodMetadata is correctly applied to Master, Worker, and Fuse components, while ensuring // component-specific metadata overrides the common settings when present. -// 1. Verifies that labels/annotations from Runtime.Spec.PodMetadata are propagated to -// all components (Master, Worker, Fuse) when no component-specific metadata exists. -// 2. Set master and worker labels/annotations: -// Validates that component-specific metadata in Master/Worker PodMetadata takes precedence -// over common metadata, while Fuse uses common metadata when no Fuse-specific settings exist. +// 1. Verifies that labels/annotations from Runtime.Spec.PodMetadata are propagated to +// all components (Master, Worker, Fuse) when no component-specific metadata exists. +// 2. Set master and worker labels/annotations: +// Validates that component-specific metadata in Master/Worker PodMetadata takes precedence +// over common metadata, while Fuse uses common metadata when no Fuse-specific settings exist. func TestTransformPodMetadata(t *testing.T) { engine := &AlluxioEngine{Log: fake.NullLogger()} @@ -1121,11 +1122,11 @@ func TestTransformWorkerProperties(t *testing.T) { // TestTransformFuseProperties verifies that the transformFuse method correctly merges // and overrides FUSE-related configuration properties from the AlluxioRuntime spec. -// +// // Specifically, it ensures that: -// - FUSE-specific properties override general properties when both are provided. -// - The resulting Alluxio configuration reflects the correct FUSE properties in both -// the `.Fuse.Properties` and `.Properties` fields. +// - FUSE-specific properties override general properties when both are provided. +// - The resulting Alluxio configuration reflects the correct FUSE properties in both +// the `.Fuse.Properties` and `.Properties` fields. // // The test sets up an AlluxioEngine with mocked runtime information and compares // the resulting configuration against expected values.