Skip to content

Commit

Permalink
additional yaml lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
eric-young committed Aug 27, 2024
1 parent 37170c1 commit 1559afc
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/actions.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Workflow
on:
on: # yamllint disable-line rule:truthy
push:
branches: [ main ]
pull_request:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/common-workflows.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Golang Static Analysis
on:
on: # yamllint disable-line rule:truthy
push:
branches: [main]
pull_request:
Expand Down
6 changes: 3 additions & 3 deletions samples/storageclass/storageclass-nfs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ allowVolumeExpansion: true
parameters:
# Storage pool to use on system
# Optional: false
storagepool: <STORAGE_POOL> # Insert Storage pool
storagepool: <STORAGE_POOL>
# Protection domain that storage pool above belongs to
# Needed if array has two storagepools that share the same name, but belong to different protection domains
# Optional: true
Expand All @@ -29,7 +29,7 @@ parameters:
# System you would like this storage class to use
# Allowed values: one string for system ID
# Optional: false
systemID: <SYSTEM_ID> # Insert System ID
systemID: <SYSTEM_ID>
# format options to pass to mkfs
# Allowed values: A string dictating the fs options you want passed
# Optional: true
Expand Down Expand Up @@ -93,6 +93,6 @@ volumeBindingMode: WaitForFirstConsumer
# allowedTopologies helps scheduling pods on worker nodes which match all of below expressions.
allowedTopologies:
- matchLabelExpressions:
- key: csi-vxflexos.dellemc.com/<SYSTEM_ID>-nfs # Insert System ID
- key: csi-vxflexos.dellemc.com/<SYSTEM_ID>-nfs
values:
- "true"
6 changes: 3 additions & 3 deletions samples/storageclass/storageclass-xfs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ allowVolumeExpansion: true
parameters:
# Storage pool to use on system
# Optional: false
storagepool: <STORAGE_POOL> # Insert Storage pool
storagepool: <STORAGE_POOL>
# Protection domain that storage pool above belongs to
# Needed if array has two storagepools that share the same name, but belong to different protection domains
# Optional: true
Expand All @@ -29,7 +29,7 @@ parameters:
# System you would like this storage class to use
# Allowed values: one string for system ID
# Optional: false
systemID: <SYSTEM_ID> # Insert System ID
systemID: <SYSTEM_ID>
# format options to pass to mkfs
# Allowed values: A string dictating the fs options you want passed
# Optional: true
Expand Down Expand Up @@ -62,6 +62,6 @@ volumeBindingMode: WaitForFirstConsumer
# allowedTopologies helps scheduling pods on worker nodes which match all of below expressions.
allowedTopologies:
- matchLabelExpressions:
- key: csi-vxflexos.dellemc.com/<SYSTEM_ID> # Insert System ID
- key: csi-vxflexos.dellemc.com/<SYSTEM_ID>
values:
- csi-vxflexos.dellemc.com
6 changes: 3 additions & 3 deletions samples/storageclass/storageclass.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ allowVolumeExpansion: true
parameters:
# Storage pool to use on system
# Optional: false
storagepool: <STORAGE_POOL> # Insert Storage pool
storagepool: <STORAGE_POOL>
# Protection domain that storage pool above belongs to
# Needed if array has two storagepools that share the same name, but belong to different protection domains
# Optional: true
Expand All @@ -32,7 +32,7 @@ parameters:
# System you would like this storage class to use
# Allowed values: one string for system ID
# Optional: false
systemID: <SYSTEM_ID> # Insert System ID
systemID: <SYSTEM_ID>
# format options to pass to mkfs
# Allowed values: A string dictating the fs options you want passed
# Optional: true
Expand Down Expand Up @@ -65,6 +65,6 @@ volumeBindingMode: WaitForFirstConsumer
# allowedTopologies helps scheduling pods on worker nodes which match all of below expressions.
allowedTopologies:
- matchLabelExpressions:
- key: csi-vxflexos.dellemc.com/<SYSTEM_ID> # Insert System ID
- key: csi-vxflexos.dellemc.com/<SYSTEM_ID>
values:
- csi-vxflexos.dellemc.com

0 comments on commit 1559afc

Please sign in to comment.