@@ -27,7 +27,7 @@ import "k8s.io/apimachinery/pkg/util/sets"
27
27
type SupportedFeature string
28
28
29
29
// -----------------------------------------------------------------------------
30
- // Features - Standard ( Core)
30
+ // Features - Core
31
31
// -----------------------------------------------------------------------------
32
32
33
33
const (
@@ -37,15 +37,15 @@ const (
37
37
SupportBaselineAdminNetworkPolicy SupportedFeature = "BaselineAdminNetworkPolicy"
38
38
)
39
39
40
- // StandardCoreFeatures are the features that are required to be conformant with
40
+ // CoreFeatures are the features that are required to be conformant with
41
41
// the Core API features (e.g. all fields in the API except for NamedPorts, SameLabels, NotSameLabels).
42
- var StandardCoreFeatures = sets .New (
42
+ var CoreFeatures = sets .New (
43
43
SupportAdminNetworkPolicy ,
44
44
SupportBaselineAdminNetworkPolicy ,
45
45
)
46
46
47
47
// -----------------------------------------------------------------------------
48
- // Features - Standard ( Extended)
48
+ // Features - Extended
49
49
// -----------------------------------------------------------------------------
50
50
51
51
const (
@@ -59,16 +59,16 @@ const (
59
59
SupportBaselineAdminNetworkPolicyNotSameLabels SupportedFeature = "BaselineAdminNetworkPolicyNotSameLabels"
60
60
)
61
61
62
- // StandardExtendedFeatures are extra generic features that implementations may
62
+ // ExtendedFeatures are extra generic features that implementations may
63
63
// choose to support as an opt-in.
64
- var StandardExtendedFeatures = sets .New (
64
+ var ExtendedFeatures = sets .New (
65
65
SupportAdminNetworkPolicyNamedPorts ,
66
66
SupportAdminNetworkPolicySameLabels ,
67
67
SupportAdminNetworkPolicyNotSameLabels ,
68
68
SupportBaselineAdminNetworkPolicyNamedPorts ,
69
69
SupportBaselineAdminNetworkPolicySameLabels ,
70
70
SupportBaselineAdminNetworkPolicyNotSameLabels ,
71
- ).Insert (StandardCoreFeatures .UnsortedList ()... )
71
+ ).Insert (CoreFeatures .UnsortedList ()... )
72
72
73
73
// -----------------------------------------------------------------------------
74
74
// Features - Compilations
@@ -79,4 +79,4 @@ var StandardExtendedFeatures = sets.New(
79
79
//
80
80
// NOTE: as new feature sets are added they should be inserted into this set.
81
81
var AllFeatures = sets .New [SupportedFeature ]().
82
- Insert (StandardExtendedFeatures .UnsortedList ()... )
82
+ Insert (ExtendedFeatures .UnsortedList ()... )
0 commit comments