Skip to content

Commit

Permalink
Updating golangci-lint (#1277)
Browse files Browse the repository at this point in the history
  • Loading branch information
cniackz authored Sep 6, 2022
1 parent 06e6819 commit 2268b4e
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 25 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/kubernetes-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ jobs:
- operator
strategy:
matrix:
go-version: [ 1.18.x ]
go-version: [ 1.18.x, 1.19.x ]
os: [ ubuntu-latest ]

steps:
Expand Down
2 changes: 1 addition & 1 deletion .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ issues:
- deadcode

service:
golangci-lint-version: 1.43.0 # use the fixed version to not introduce new linters unexpectedly
golangci-lint-version: 1.49.0 # use the fixed version to not introduce new linters unexpectedly
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ all: build
getdeps:
@echo "Checking dependencies"
@mkdir -p ${GOPATH}/bin
@echo "Installing golangci-lint" && go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.45.2
@echo "Installing golangci-lint" && go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.49.0

verify: getdeps govet gotest lint

Expand Down
4 changes: 2 additions & 2 deletions logsearchapi/server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ func (ls *LogSearch) writeErrorResponse(w http.ResponseWriter, status int, msg s

// ingestHandler handles:
//
// POST /api/ingest?token=xxx
// POST /api/ingest?token=xxx
//
// The json body represents the Audit log data. If it is an empty object the
// request is ignored but returns success.
Expand All @@ -167,7 +167,7 @@ func (ls *LogSearch) ingestHandler(w http.ResponseWriter, r *http.Request) {

// queryHandler handles:
//
// GET /api/query?token=xxx&q=(raw|reqinfo)&pageNo=0&pageSize=50&timeAsc|timeDesc&timeStart=?
// GET /api/query?token=xxx&q=(raw|reqinfo)&pageNo=0&pageSize=50&timeAsc|timeDesc&timeStart=?
func (ls *LogSearch) queryHandler(w http.ResponseWriter, r *http.Request) {
// Request is assumed to be authenticated at this point.

Expand Down
1 change: 0 additions & 1 deletion pkg/apis/minio.min.io/v2/doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
//
// The `minio.min.io/v2` API was released with the v4.0.0 MinIO Operator. The MinIO Operator automatically converts existing tenants using the `/v1` API to `/v2`. +
//
//
// +groupName=minio.min.io
// +versionName=v2
package v2
5 changes: 0 additions & 5 deletions pkg/apis/minio.min.io/v2/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ import (
// +kubebuilder:storageversion

// Tenant is a https://kubernetes.io/docs/concepts/overview/working-with-objects/kubernetes-objects/[Kubernetes object] describing a MinIO Tenant. +
//
type Tenant struct {
metav1.TypeMeta `json:",inline"`
metav1.ObjectMeta `json:"metadata,omitempty"`
Expand Down Expand Up @@ -74,7 +73,6 @@ type TenantDomains struct {

// S3Features (`s3`) - Object describing which MinIO features to enable/disable in the MinIO Tenant. +
// *Deprecated in Operator v4.3.2* +
//
type S3Features struct {
// *Optional* +
//
Expand All @@ -84,7 +82,6 @@ type S3Features struct {
}

// Features (`features`) - Object describing which MinIO features to enable/disable in the MinIO Tenant. +
//
type Features struct {
// *Optional* +
//
Expand All @@ -103,8 +100,6 @@ type Features struct {
// The following parameters are specific to the `minio.min.io/v2` MinIO CRD API `spec` definition added as part of the MinIO Operator v4.0.0. +
//
// For more complete documentation on this object, see the https://docs.min.io/minio/k8s/reference/minio-operator-reference.html#minio-operator-yaml-reference[MinIO Kubernetes Documentation]. +
//
//
type TenantSpec struct {
// *Required* +
//
Expand Down
14 changes: 7 additions & 7 deletions pkg/client/clientset/versioned/fake/register.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions pkg/client/clientset/versioned/scheme/register.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 2268b4e

Please sign in to comment.