Skip to content

Commit

Permalink
Do not use dot imports
Browse files Browse the repository at this point in the history
  • Loading branch information
fabianofranz committed Oct 3, 2016
1 parent 9c82a0d commit e82599a
Show file tree
Hide file tree
Showing 96 changed files with 216 additions and 221 deletions.
3 changes: 1 addition & 2 deletions pkg/cmd/admin/admin.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,11 @@ import (
exipfailover "github.com/openshift/origin/pkg/cmd/experimental/ipfailover"
"github.com/openshift/origin/pkg/cmd/server/admin"
"github.com/openshift/origin/pkg/cmd/templates"
. "github.com/openshift/origin/pkg/cmd/templates"
cmdutil "github.com/openshift/origin/pkg/cmd/util"
"github.com/openshift/origin/pkg/cmd/util/clientcmd"
)

var adminLong = LongDesc(`Administrative Commands
var adminLong = templates.LongDesc(`Administrative Commands
Commands for managing a cluster are exposed here. Many administrative
actions involve interaction with the command-line client as well.`)
Expand Down
4 changes: 2 additions & 2 deletions pkg/cmd/admin/groups/groups.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ import (
"github.com/spf13/cobra"

"github.com/openshift/origin/pkg/cmd/admin/groups/sync/cli"
. "github.com/openshift/origin/pkg/cmd/templates"
"github.com/openshift/origin/pkg/cmd/templates"
cmdutil "github.com/openshift/origin/pkg/cmd/util"
"github.com/openshift/origin/pkg/cmd/util/clientcmd"
)

const GroupsRecommendedName = "groups"

var groupLong = LongDesc(`Manage groups in your cluster
var groupLong = templates.LongDesc(`Manage groups in your cluster
Groups are sets of users that can be used when describing policy.`)

Expand Down
4 changes: 2 additions & 2 deletions pkg/cmd/admin/groups/sync/cli/prune.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ import (
"github.com/openshift/origin/pkg/cmd/admin/groups/sync"
"github.com/openshift/origin/pkg/cmd/server/api"
"github.com/openshift/origin/pkg/cmd/server/api/validation"
. "github.com/openshift/origin/pkg/cmd/templates"
"github.com/openshift/origin/pkg/cmd/templates"
"github.com/openshift/origin/pkg/cmd/util/clientcmd"
)

var pruneLong = LongDesc(`Prune OpenShift Groups referencing missing records on from an external provider.
var pruneLong = templates.LongDesc(`Prune OpenShift Groups referencing missing records on from an external provider.
In order to prune OpenShift Group records using those from an external provider, determine which Groups you wish
to prune. For instance, all or some groups may be selected from the current Groups stored in OpenShift that have
Expand Down
4 changes: 2 additions & 2 deletions pkg/cmd/admin/groups/sync/cli/sync.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ import (
"github.com/openshift/origin/pkg/cmd/server/api"
configapilatest "github.com/openshift/origin/pkg/cmd/server/api/latest"
"github.com/openshift/origin/pkg/cmd/server/api/validation"
. "github.com/openshift/origin/pkg/cmd/templates"
"github.com/openshift/origin/pkg/cmd/templates"
cmdutil "github.com/openshift/origin/pkg/cmd/util"
"github.com/openshift/origin/pkg/cmd/util/clientcmd"
)

var syncLong = LongDesc(`Sync OpenShift Groups with records from an external provider.
var syncLong = templates.LongDesc(`Sync OpenShift Groups with records from an external provider.
In order to sync OpenShift Group records with those from an external provider, determine which Groups you wish
to sync and where their records live. For instance, all or some groups may be selected from the current Groups
Expand Down
4 changes: 2 additions & 2 deletions pkg/cmd/admin/migrate/images/imagerefs.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ import (
buildapi "github.com/openshift/origin/pkg/build/api"
"github.com/openshift/origin/pkg/client"
"github.com/openshift/origin/pkg/cmd/admin/migrate"
. "github.com/openshift/origin/pkg/cmd/templates"
"github.com/openshift/origin/pkg/cmd/templates"

"github.com/openshift/origin/pkg/cmd/util/clientcmd"
imageapi "github.com/openshift/origin/pkg/image/api"
)

var internalMigrateImagesLong = LongDesc(`Migrate references to Docker images
var internalMigrateImagesLong = templates.LongDesc(`Migrate references to Docker images
This command updates embedded Docker image references on the server in place. By default it
will update image streams and images, and may be used to update resources with a pod template
Expand Down
4 changes: 2 additions & 2 deletions pkg/cmd/admin/migrate/migrate.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ import (

"github.com/spf13/cobra"

. "github.com/openshift/origin/pkg/cmd/templates"
"github.com/openshift/origin/pkg/cmd/templates"
cmdutil "github.com/openshift/origin/pkg/cmd/util"
"github.com/openshift/origin/pkg/cmd/util/clientcmd"
)

const MigrateRecommendedName = "migrate"

var migrateLong = LongDesc(`Migrate resources on the cluster
var migrateLong = templates.LongDesc(`Migrate resources on the cluster
These commands assist administrators in performing preventative maintenance on a cluster.`)

Expand Down
4 changes: 2 additions & 2 deletions pkg/cmd/admin/migrate/storage/storage.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ import (
"k8s.io/kubernetes/pkg/util/sets"

"github.com/openshift/origin/pkg/cmd/admin/migrate"
. "github.com/openshift/origin/pkg/cmd/templates"
"github.com/openshift/origin/pkg/cmd/templates"
"github.com/openshift/origin/pkg/cmd/util/clientcmd"
)

var internalMigrateStorageLong = LongDesc(`Migrate internal object storage via update
var internalMigrateStorageLong = templates.LongDesc(`Migrate internal object storage via update
This command invokes an update operation on every API object reachable by the caller. This forces
the server to write to the underlying storage if the object representation has changed. Use this
Expand Down
4 changes: 2 additions & 2 deletions pkg/cmd/admin/network/isolate_projects.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ import (
kcmdutil "k8s.io/kubernetes/pkg/kubectl/cmd/util"
kerrors "k8s.io/kubernetes/pkg/util/errors"

. "github.com/openshift/origin/pkg/cmd/templates"
"github.com/openshift/origin/pkg/cmd/templates"
"github.com/openshift/origin/pkg/cmd/util/clientcmd"
sdnapi "github.com/openshift/origin/pkg/sdn/api"
)

var isolateProjectsNetworkLong = LongDesc(`Isolate project network
var isolateProjectsNetworkLong = templates.LongDesc(`Isolate project network
Allows projects to isolate their network from other projects when using the %[1]s network plugin.`)

Expand Down
4 changes: 2 additions & 2 deletions pkg/cmd/admin/network/join_projects.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ import (
kcmdutil "k8s.io/kubernetes/pkg/kubectl/cmd/util"
kerrors "k8s.io/kubernetes/pkg/util/errors"

. "github.com/openshift/origin/pkg/cmd/templates"
"github.com/openshift/origin/pkg/cmd/templates"
"github.com/openshift/origin/pkg/cmd/util/clientcmd"

sdnapi "github.com/openshift/origin/pkg/sdn/api"
)

var joinProjectsNetworkLong = LongDesc(`Join project network
var joinProjectsNetworkLong = templates.LongDesc(`Join project network
Allows projects to join existing project network when using the %[1]s network plugin.`)

Expand Down
4 changes: 2 additions & 2 deletions pkg/cmd/admin/network/make_projects_global.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ import (
kcmdutil "k8s.io/kubernetes/pkg/kubectl/cmd/util"
kerrors "k8s.io/kubernetes/pkg/util/errors"

. "github.com/openshift/origin/pkg/cmd/templates"
"github.com/openshift/origin/pkg/cmd/templates"
"github.com/openshift/origin/pkg/cmd/util/clientcmd"

sdnapi "github.com/openshift/origin/pkg/sdn/api"
)

var makeGlobalProjectsNetworkLong = LongDesc(`Make project network global
var makeGlobalProjectsNetworkLong = templates.LongDesc(`Make project network global
Allows projects to access all pods in the cluster and vice versa when using the %[1]s network plugin.`)

Expand Down
4 changes: 2 additions & 2 deletions pkg/cmd/admin/network/pod_network.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ import (

"github.com/spf13/cobra"

. "github.com/openshift/origin/pkg/cmd/templates"
"github.com/openshift/origin/pkg/cmd/templates"
cmdutil "github.com/openshift/origin/pkg/cmd/util"
"github.com/openshift/origin/pkg/cmd/util/clientcmd"
)

const PodNetworkCommandName = "pod-network"

var (
podNetworkLong = LongDesc(`Manage pod network in the cluster
podNetworkLong = templates.LongDesc(`Manage pod network in the cluster
This command provides common pod network operations for administrators.`)
)
Expand Down
4 changes: 2 additions & 2 deletions pkg/cmd/admin/node/node.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ import (

kcmdutil "k8s.io/kubernetes/pkg/kubectl/cmd/util"

. "github.com/openshift/origin/pkg/cmd/templates"
"github.com/openshift/origin/pkg/cmd/templates"
"github.com/openshift/origin/pkg/cmd/util/clientcmd"
)

var manageNodeLong = LongDesc(`Manage nodes
var manageNodeLong = templates.LongDesc(`Manage nodes
This command provides common operations on nodes for administrators.
Expand Down
3 changes: 1 addition & 2 deletions pkg/cmd/admin/policy/policy.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,13 @@ import (
authorizationapi "github.com/openshift/origin/pkg/authorization/api"
"github.com/openshift/origin/pkg/client"
"github.com/openshift/origin/pkg/cmd/templates"
. "github.com/openshift/origin/pkg/cmd/templates"
cmdutil "github.com/openshift/origin/pkg/cmd/util"
"github.com/openshift/origin/pkg/cmd/util/clientcmd"
)

const PolicyRecommendedName = "policy"

var policyLong = LongDesc(`Manage policy on the cluster
var policyLong = templates.LongDesc(`Manage policy on the cluster
These commands allow you to assign and manage the roles and policies that apply to users. The reconcile
commands allow you to reset and upgrade your system policies to the latest default policies.
Expand Down
4 changes: 2 additions & 2 deletions pkg/cmd/admin/policy/reconcile_clusterrolebindings.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (
authorizationapi "github.com/openshift/origin/pkg/authorization/api"
"github.com/openshift/origin/pkg/client"
"github.com/openshift/origin/pkg/cmd/server/bootstrappolicy"
. "github.com/openshift/origin/pkg/cmd/templates"
"github.com/openshift/origin/pkg/cmd/templates"
cmdutil "github.com/openshift/origin/pkg/cmd/util"
"github.com/openshift/origin/pkg/cmd/util/clientcmd"

Expand Down Expand Up @@ -45,7 +45,7 @@ type ReconcileClusterRoleBindingsOptions struct {
RoleBindingClient client.ClusterRoleBindingInterface
}

var reconcileBindingsLong = LongDesc(`Update cluster role bindings to match the recommended bootstrap policy
var reconcileBindingsLong = templates.LongDesc(`Update cluster role bindings to match the recommended bootstrap policy
This command will inspect the cluster role bindings against the recommended bootstrap policy.
Any cluster role binding that does not match will be replaced by the recommended bootstrap role binding.
Expand Down
4 changes: 2 additions & 2 deletions pkg/cmd/admin/policy/reconcile_clusterroles.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (
"github.com/openshift/origin/pkg/authorization/rulevalidation"
"github.com/openshift/origin/pkg/client"
"github.com/openshift/origin/pkg/cmd/server/bootstrappolicy"
. "github.com/openshift/origin/pkg/cmd/templates"
"github.com/openshift/origin/pkg/cmd/templates"
cmdutil "github.com/openshift/origin/pkg/cmd/util"
osutil "github.com/openshift/origin/pkg/cmd/util"

Expand Down Expand Up @@ -45,7 +45,7 @@ type ReconcileClusterRolesOptions struct {
RoleClient client.ClusterRoleInterface
}

var reconcileLong = LongDesc(`Update cluster roles to match the recommended bootstrap policy
var reconcileLong = templates.LongDesc(`Update cluster roles to match the recommended bootstrap policy
This command will compare cluster roles against the recommended bootstrap policy. Any cluster role
that does not match will be replaced by the recommended bootstrap role. This command will not remove
Expand Down
4 changes: 2 additions & 2 deletions pkg/cmd/admin/policy/reconcile_sccs.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (
"k8s.io/kubernetes/pkg/util/sets"

"github.com/openshift/origin/pkg/cmd/server/bootstrappolicy"
. "github.com/openshift/origin/pkg/cmd/templates"
"github.com/openshift/origin/pkg/cmd/templates"
cmdutil "github.com/openshift/origin/pkg/cmd/util"

"github.com/openshift/origin/pkg/cmd/util/clientcmd"
Expand All @@ -42,7 +42,7 @@ type ReconcileSCCOptions struct {
NSClient kclient.NamespaceInterface
}

var reconcileSCCLong = LongDesc(`Replace cluster SCCs to match the recommended bootstrap policy
var reconcileSCCLong = templates.LongDesc(`Replace cluster SCCs to match the recommended bootstrap policy
This command will inspect the cluster SCCs against the recommended bootstrap SCCs.
Any cluster SCC that does not match will be replaced by the recommended SCC.
Expand Down
4 changes: 2 additions & 2 deletions pkg/cmd/admin/project/new_project.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
"github.com/openshift/origin/pkg/client"
"github.com/openshift/origin/pkg/cmd/admin/policy"
"github.com/openshift/origin/pkg/cmd/server/bootstrappolicy"
. "github.com/openshift/origin/pkg/cmd/templates"
"github.com/openshift/origin/pkg/cmd/templates"
"github.com/openshift/origin/pkg/cmd/util/clientcmd"

projectapi "github.com/openshift/origin/pkg/project/api"
Expand All @@ -34,7 +34,7 @@ type NewProjectOptions struct {
AdminUser string
}

var newProjectLong = LongDesc(`Create a new project
var newProjectLong = templates.LongDesc(`Create a new project
Use this command to create a project. You may optionally specify metadata about the project,
an admin user (and role, if you want to use a non-default admin role), and a node selector
Expand Down
4 changes: 2 additions & 2 deletions pkg/cmd/admin/prune/prune.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"github.com/spf13/cobra"

groups "github.com/openshift/origin/pkg/cmd/admin/groups/sync/cli"
. "github.com/openshift/origin/pkg/cmd/templates"
"github.com/openshift/origin/pkg/cmd/templates"
cmdutil "github.com/openshift/origin/pkg/cmd/util"
"github.com/openshift/origin/pkg/cmd/util/clientcmd"
)
Expand All @@ -15,7 +15,7 @@ const PruneRecommendedName = "prune"

const PruneGroupsRecommendedName = "groups"

var pruneLong = LongDesc(`Remove older versions of resources from the server
var pruneLong = templates.LongDesc(`Remove older versions of resources from the server
The commands here allow administrators to manage the older versions of resources on
the system by removing them.`)
Expand Down
4 changes: 2 additions & 2 deletions pkg/cmd/admin/registry/registry.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import (
"k8s.io/kubernetes/pkg/util/intstr"

authapi "github.com/openshift/origin/pkg/authorization/api"
. "github.com/openshift/origin/pkg/cmd/templates"
"github.com/openshift/origin/pkg/cmd/templates"
cmdutil "github.com/openshift/origin/pkg/cmd/util"
"github.com/openshift/origin/pkg/cmd/util/clientcmd"
"github.com/openshift/origin/pkg/cmd/util/variable"
Expand All @@ -34,7 +34,7 @@ import (
"github.com/openshift/origin/pkg/generate/app"
)

var registryLong = LongDesc(`Install or configure an integrated Docker registry
var registryLong = templates.LongDesc(`Install or configure an integrated Docker registry
This command sets up a Docker registry integrated with your cluster to provide notifications when
images are pushed. With no arguments, the command will check for the existing registry service
Expand Down
4 changes: 2 additions & 2 deletions pkg/cmd/admin/router/router.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import (

authapi "github.com/openshift/origin/pkg/authorization/api"
"github.com/openshift/origin/pkg/cmd/server/bootstrappolicy"
. "github.com/openshift/origin/pkg/cmd/templates"
"github.com/openshift/origin/pkg/cmd/templates"
cmdutil "github.com/openshift/origin/pkg/cmd/util"
"github.com/openshift/origin/pkg/cmd/util/clientcmd"

Expand All @@ -37,7 +37,7 @@ import (
fileutil "github.com/openshift/origin/pkg/util/file"
)

var routerLong = LongDesc(`Install or configure a router
var routerLong = templates.LongDesc(`Install or configure a router
This command helps to setup a router to take edge traffic and balance it to
your application. With no arguments, the command will check for an existing router
Expand Down
4 changes: 2 additions & 2 deletions pkg/cmd/admin/top/images.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ import (
kubegraph "github.com/openshift/origin/pkg/api/kubegraph/nodes"
buildapi "github.com/openshift/origin/pkg/build/api"
"github.com/openshift/origin/pkg/client"
. "github.com/openshift/origin/pkg/cmd/templates"
"github.com/openshift/origin/pkg/cmd/templates"
"github.com/openshift/origin/pkg/cmd/util/clientcmd"
deployapi "github.com/openshift/origin/pkg/deploy/api"
imageapi "github.com/openshift/origin/pkg/image/api"

imagegraph "github.com/openshift/origin/pkg/image/graph/nodes"
)

var topImagesLong = LongDesc(`Show usage statistics for Images
var topImagesLong = templates.LongDesc(`Show usage statistics for Images
This command analyzes all the Images managed by the platform and presents current
usage statistics.`)
Expand Down
4 changes: 2 additions & 2 deletions pkg/cmd/admin/top/imagestreams.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ import (
"k8s.io/kubernetes/pkg/util/sets"

"github.com/openshift/origin/pkg/api/graph"
. "github.com/openshift/origin/pkg/cmd/templates"
"github.com/openshift/origin/pkg/cmd/templates"

"github.com/openshift/origin/pkg/client"
"github.com/openshift/origin/pkg/cmd/util/clientcmd"
imageapi "github.com/openshift/origin/pkg/image/api"
imagegraph "github.com/openshift/origin/pkg/image/graph/nodes"
)

var topImageStreamsLong = LongDesc(`Show usage statistics for ImageStreams
var topImageStreamsLong = templates.LongDesc(`Show usage statistics for ImageStreams
This command analyzes all the ImageStreams managed by the platform and presents current
usage statistics.`)
Expand Down
4 changes: 2 additions & 2 deletions pkg/cmd/admin/top/top.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ import (

kcmd "k8s.io/kubernetes/pkg/kubectl/cmd"

. "github.com/openshift/origin/pkg/cmd/templates"
"github.com/openshift/origin/pkg/cmd/templates"
cmdutil "github.com/openshift/origin/pkg/cmd/util"

"github.com/openshift/origin/pkg/cmd/util/clientcmd"
)

var topLong = LongDesc(`Show usage statistics of resources on the server
var topLong = templates.LongDesc(`Show usage statistics of resources on the server
This command analyzes resources managed by the platform and presents current
usage statistics.`)
Expand Down
4 changes: 2 additions & 2 deletions pkg/cmd/admin/validate/master.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ import (
"k8s.io/kubernetes/pkg/util/validation/field"

configapilatest "github.com/openshift/origin/pkg/cmd/server/api/latest"
. "github.com/openshift/origin/pkg/cmd/templates"
"github.com/openshift/origin/pkg/cmd/templates"

"github.com/openshift/origin/pkg/cmd/server/api/validation"
)

var validateMasterConfigLong = LongDesc(`Validate the configuration file for a master server.
var validateMasterConfigLong = templates.LongDesc(`Validate the configuration file for a master server.
This command validates that a configuration file intended to be used for a master server is valid.`)

Expand Down
Loading

0 comments on commit e82599a

Please sign in to comment.