Skip to content

Commit

Permalink
fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
curtbushko committed Mar 26, 2024
1 parent f48bdcd commit 3db6660
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion control-plane/connect-inject/common/openshift.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import (
corev1 "k8s.io/api/core/v1"
)

// Get the user id from the OpenShift annotation 'openshift.io/sa.scc.uid-range'
// Get the user id from the OpenShift annotation 'openshift.io/sa.scc.uid-range'.
func GetOpenShiftUID(ns *corev1.Namespace) (int64, error) {
annotation, ok := ns.Annotations[constants.AnnotationOpenShiftUIDRange]
if !ok {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ const (
AnnotationPrometheusPort = "prometheus.io/port"
)

// Annotations used by OpenShift
// Annotations used by OpenShift.
const (
AnnotationOpenShiftGroups = "openshift.io/sa.scc.supplemental-groups"
AnnotationOpenShiftUIDRange = "openshift.io/sa.scc.uid-range"
Expand Down

0 comments on commit 3db6660

Please sign in to comment.