1 package v1 2 3 const ( 4 UIDRangeAnnotation = "openshift.io/sa.scc.uid-range" 5 // SupplementalGroupsAnnotation contains a comma delimited list of allocated supplemental groups 6 // for the namespace. Groups are in the form of a Block which supports {start}/{length} or {start}-{end} 7 SupplementalGroupsAnnotation = "openshift.io/sa.scc.supplemental-groups" 8 MCSAnnotation = "openshift.io/sa.scc.mcs" 9 ValidatedSCCAnnotation = "openshift.io/scc" 10 ) 11