diff --git a/.github/codecov.yml b/.github/codecov.yml index 4e693b09c..e8958790f 100644 --- a/.github/codecov.yml +++ b/.github/codecov.yml @@ -2,7 +2,7 @@ codecov: strict_yaml_branch: main require_ci_to_pass: no notify: - wait_for_ci: no + wait_for_ci: no coverage: status: project: @@ -11,3 +11,5 @@ coverage: patch: default: informational: true +ignore: +- cmd/local-user-authenticator/ diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 85e6853c0..ad5bb0af0 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,4 +1,6 @@ -exclude: '^(generated|hack/lib/tilt/tilt_modules)/' +# This is a configuration for https://pre-commit.com/. +# On macOS, try `brew install pre-commit` and then run `pre-commit install`. +exclude: '^(site|generated|hack/lib/tilt/tilt_modules)/' repos: - repo: git://github.com/pre-commit/pre-commit-hooks rev: v3.2.0 @@ -21,3 +23,7 @@ repos: name: Validate copyright year entry: hack/check-copyright-year.sh language: script +- repo: https://github.com/golangci/golangci-lint + rev: v1.33.0 + hooks: + - id: golangci-lint diff --git a/Dockerfile b/Dockerfile index 7ee09d32d..07075a0e1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ # Copyright 2020-2021 the Pinniped contributors. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 -FROM golang:1.16.0 as build-env +FROM golang:1.16.1 as build-env WORKDIR /work COPY . . diff --git a/ROADMAP.md b/ROADMAP.md index 27a800685..cd59528ec 100644 --- a/ROADMAP.md +++ b/ROADMAP.md @@ -17,7 +17,7 @@ Discussion on the roadmap can take place in threads under [Issues](https://githu ### **Need an idea for a contribution?** -We’ve created an [Opportunity Areas](https://docs.google.com/document/d/1A5xqeOfT01CDjnd76ED2yFWMx1lkcJ6odFMUTDM-VcE/edit#heading=h.dfdy0cv2dm2q) discussion thread that outlines some areas we believe are excellent starting points for the community to get involved. In that discussion we’ve included specific work items that one might consider that also support the high-level items presented in our roadmap. +We’ve created an [Opportunity Areas](https://github.com/vmware-tanzu/pinniped/discussions/483) discussion thread that outlines some areas we believe are excellent starting points for the community to get involved. In that discussion we’ve included specific work items that one might consider that also support the high-level items presented in our roadmap. ### diff --git a/go.mod b/go.mod index 004c3c084..176341eca 100644 --- a/go.mod +++ b/go.mod @@ -38,7 +38,7 @@ require ( k8s.io/client-go v0.20.4 k8s.io/component-base v0.20.4 k8s.io/gengo v0.0.0-20201113003025-83324d819ded - k8s.io/klog/v2 v2.6.0 + k8s.io/klog/v2 v2.8.0 k8s.io/kube-aggregator v0.20.4 k8s.io/kube-openapi v0.0.0-20201113171705-d219536bb9fd k8s.io/utils v0.0.0-20201110183641-67b214c5f920 diff --git a/go.sum b/go.sum index 74408122c..f2e9b99d7 100644 --- a/go.sum +++ b/go.sum @@ -1529,8 +1529,8 @@ k8s.io/gengo v0.0.0-20201113003025-83324d819ded/go.mod h1:FiNAH4ZV3gBg2Kwh89tzAE k8s.io/klog/v2 v2.0.0/go.mod h1:PBfzABfn139FHAV07az/IF9Wp1bkk3vpT2XSJ76fSDE= k8s.io/klog/v2 v2.2.0/go.mod h1:Od+F08eJP+W3HUb4pSrPpgp9DGU4GzlpG/TmITuYh/Y= k8s.io/klog/v2 v2.4.0/go.mod h1:Od+F08eJP+W3HUb4pSrPpgp9DGU4GzlpG/TmITuYh/Y= -k8s.io/klog/v2 v2.6.0 h1:c1wFxejFMBkp/VxCdc6kYdgrBkC2gzmcl6afuJAkJyU= -k8s.io/klog/v2 v2.6.0/go.mod h1:hy9LJ/NvuK+iVyP4Ehqva4HxZG/oXyIS3n3Jmire4Ec= +k8s.io/klog/v2 v2.8.0 h1:Q3gmuM9hKEjefWFFYF0Mat+YyFJvsUyYuwyNNJ5C9Ts= +k8s.io/klog/v2 v2.8.0/go.mod h1:hy9LJ/NvuK+iVyP4Ehqva4HxZG/oXyIS3n3Jmire4Ec= k8s.io/kube-aggregator v0.20.4 h1:j/SUwPy1eO+ud3XOUGmH18gISPyerqhXOoNRZDbv3fs= k8s.io/kube-aggregator v0.20.4/go.mod h1:0ixQ9De7KXyHteXizS6nVtrnKqGa4kiuxl9rEBsNccw= k8s.io/kube-openapi v0.0.0-20201113171705-d219536bb9fd h1:sOHNzJIkytDF6qadMNKhhDRpc6ODik8lVC6nOur7B2c=