Maintain consistency in naming patterns across related resources while ensuring names accurately reflect their purpose. When naming components, files, or configurations:
Maintain consistency in naming patterns across related resources while ensuring names accurately reflect their purpose. When naming components, files, or configurations:
Example:
# Good
namespace: kubeflow
namePrefix: pvcviewer- # Consistent with label "pvcviewers" used elsewhere
# Avoid
namespace: kubeflow
namePrefix: pvc-viewer- # Inconsistent with "pvcviewers" label
For workflow files, use names that accurately describe their function:
# Good
name: CentralDashboard-angular Frontend Tests
# filename: centraldb_angular_frontend_test.yaml
# Avoid
name: CentralDashboard-angular Frontend check
# filename: centraldb_angular_frontend_check.yaml
Enter the URL of a public GitHub repository