Skip to content

Commit

Permalink
Updated common config file as part of SCT feature (#324)
Browse files Browse the repository at this point in the history
* Updated missing common config file
  • Loading branch information
rajendraindukuri authored Aug 21, 2023
1 parent c8876e6 commit d043934
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
- name: Run Go Security
uses: securego/gosec@master
with:
args: -exclude-dir=tests ./...
args: -exclude-dir=tests -exclude=G101 ./...
malware_security_scan:
name: Malware Scanner
runs-on: ubuntu-latest
Expand Down
2 changes: 2 additions & 0 deletions pkg/drivers/commonconfig.go
Original file line number Diff line number Diff line change
Expand Up @@ -398,6 +398,8 @@ func GetCSIDriver(ctx context.Context, cr csmv1.ContainerStorageModule, operator
YamlString = ModifyPowerScaleCR(YamlString, cr, "CSIDriverSpec")
case "powermax":
YamlString = ModifyPowermaxCR(YamlString, cr, "CSIDriverSpec")
case "unity":
YamlString = ModifyUnityCR(YamlString, cr, "CSIDriverSpec")
}
err = yaml.Unmarshal([]byte(YamlString), &csidriver)
if err != nil {
Expand Down

0 comments on commit d043934

Please sign in to comment.