forked from kubernetes-csi/csi-driver-nfs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
f40f0cc Merge pull request kubernetes-csi#256 from solumath/master cfa9210 Instruction update 379a1bb Merge pull request kubernetes-csi#255 from humblec/sidecar-md a5667bb fix typo in sidecar release process 4967685 Merge pull request kubernetes-csi#254 from bells17/add-github-actions d9bd160 Update skip list in codespell GitHub Action adb3af9 Merge pull request kubernetes-csi#252 from bells17/update-go-version f5aebfc Add GitHub Actions workflows b82ee38 Merge pull request kubernetes-csi#253 from bells17/fix-typo c317456 Fix typo 0a78505 Bump to Go 1.22.3 edd89ad Merge pull request kubernetes-csi#251 from jsafrane/add-logcheck 043fd09 Add test-logcheck target d7535ae Merge pull request kubernetes-csi#250 from jsafrane/go-1.22 b52e7ad Update go to 1.22.2 14fdb6f Merge pull request kubernetes-csi#247 from msau42/prow dc4d0ae Merge pull request kubernetes-csi#249 from jsafrane/use-go-version e681b17 Use .go-version to get Kubernetes go version 9b4352e Update release playbook c7bb972 Fix release notes script to use fixed tags 463a0e9 Add script to update specific go modules git-subtree-dir: release-tools git-subtree-split: f40f0cc
- Loading branch information
1 parent
94797cd
commit 9dbb67f
Showing
9 changed files
with
232 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
version: 2 | ||
enable-beta-ecosystems: true | ||
updates: | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" | ||
labels: | ||
- "area/dependency" | ||
- "release-note-none" | ||
- "ok-to-test" | ||
open-pull-requests-limit: 10 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# GitHub Action to automate the identification of common misspellings in text files. | ||
# https://github.com/codespell-project/actions-codespell | ||
# https://github.com/codespell-project/codespell | ||
name: codespell | ||
on: [push, pull_request] | ||
jobs: | ||
codespell: | ||
name: Check for spelling errors | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: codespell-project/actions-codespell@master | ||
with: | ||
check_filenames: true | ||
skip: "*.png,*.jpg,*.svg,*.sum,./.git,./.github/workflows/codespell.yml,./prow.sh" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: Run Trivy scanner for Go version vulnerabilities | ||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
jobs: | ||
trivy: | ||
name: Build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Get Go version | ||
id: go-version | ||
run: | | ||
GO_VERSION=$(cat prow.sh | grep "configvar CSI_PROW_GO_VERSION_BUILD" | awk '{print $3}' | sed 's/"//g') | ||
echo "version=$GO_VERSION" >> $GITHUB_OUTPUT | ||
- name: Run Trivy scanner for Go version vulnerabilities | ||
uses: aquasecurity/trivy-action@master | ||
with: | ||
image-ref: 'golang:${{ steps.go-version.outputs.version }}' | ||
format: 'table' | ||
exit-code: '1' | ||
ignore-unfixed: true | ||
vuln-type: 'library' | ||
severity: 'CRITICAL,HIGH,MEDIUM,LOW,UNKNOWN' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
#!/bin/bash | ||
|
||
# Copyright 2023 The Kubernetes Authors. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
|
||
# Usage: go-modules-targeted-update.sh | ||
# | ||
# Batch update specific dependencies for sidecars. | ||
# | ||
# Required environment variables | ||
# CSI_RELEASE_TOKEN: Github token needed for generating release notes | ||
# GITHUB_USER: Github username to create PRs with | ||
# | ||
# Instructions: | ||
# 1. Login with "gh auth login" | ||
# 2. Copy this script to the Github org directory (one directory above the | ||
# repos) | ||
# 3. Change $modules, $releases and $org if needed. | ||
# 4. Set environment variables | ||
# 5. Run script from the Github org directory | ||
# | ||
# Caveats: | ||
# - This script doesn't handle interface incompatibility of updates. | ||
# You need to resolve interface incompatibility case by case. The | ||
# most frequent case is to update the interface(new parameters, | ||
# name change of the method, etc.)in the sidecar repo and make sure | ||
# the build and test pass. | ||
|
||
|
||
set -e | ||
set -x | ||
|
||
org="kubernetes-csi" | ||
|
||
modules=( | ||
"github.com/kubernetes-csi/csi-lib-utils@v0.15.1" | ||
) | ||
|
||
releases=( | ||
#"external-attacher release-4.4" | ||
#"external-provisioner release-3.6" | ||
#"external-resizer release-1.9" | ||
#"external-snapshotter release-6.3" | ||
#"node-driver-registrar release-2.9" | ||
) | ||
|
||
for rel in "${releases[@]}"; do | ||
|
||
read -r repo branch <<< "$rel" | ||
if [ "$repo" != "#" ]; then | ||
( | ||
cd "$repo" | ||
git fetch upstream | ||
|
||
if [ "$(git rev-parse --verify "module-update-$branch" 2>/dev/null)" ]; then | ||
git checkout master && git branch -D "module-update-$branch" | ||
fi | ||
git checkout -B "module-update-$branch" "upstream/$branch" | ||
|
||
for mod in "${modules[@]}"; do | ||
go get "$mod" | ||
done | ||
go mod tidy | ||
go mod vendor | ||
|
||
git add --all | ||
git commit -m "Update go modules" | ||
git push origin "module-update-$branch" --force | ||
|
||
# Create PR | ||
prbody=$(cat <<EOF | ||
Updated the following go modules: | ||
${modules[@]} | ||
\`\`\`release-note | ||
NONE | ||
\`\`\` | ||
EOF | ||
) | ||
gh pr create --title="[$branch] Update go modules" --body "$prbody" --head "$GITHUB_USER:module-update-$branch" --base "$branch" --repo="$org/$repo" | ||
) | ||
fi | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
#!/usr/bin/env bash | ||
|
||
# Copyright 2024 The Kubernetes Authors. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
# This script uses the logcheck tool to analyze the source code | ||
# for proper usage of klog contextual logging. | ||
|
||
set -o errexit | ||
set -o nounset | ||
set -o pipefail | ||
|
||
LOGCHECK_VERSION=${1:-0.8.2} | ||
|
||
# This will canonicalize the path | ||
CSI_LIB_UTIL_ROOT=$(cd "$(dirname "${BASH_SOURCE[0]}")"/.. && pwd -P) | ||
|
||
# Create a temporary directory for installing logcheck and | ||
# set up a trap command to remove it when the script exits. | ||
CSI_LIB_UTIL_TEMP=$(mktemp -d 2>/dev/null || mktemp -d -t csi-lib-utils.XXXXXX) | ||
trap 'rm -rf "${CSI_LIB_UTIL_TEMP}"' EXIT | ||
|
||
echo "Installing logcheck to temp dir: sigs.k8s.io/logtools/logcheck@v${LOGCHECK_VERSION}" | ||
GOBIN="${CSI_LIB_UTIL_TEMP}" go install "sigs.k8s.io/logtools/logcheck@v${LOGCHECK_VERSION}" | ||
echo "Verifying logcheck: ${CSI_LIB_UTIL_TEMP}/logcheck -check-contextual ${CSI_LIB_UTIL_ROOT}/..." | ||
"${CSI_LIB_UTIL_TEMP}/logcheck" -check-contextual -check-with-helpers "${CSI_LIB_UTIL_ROOT}/..." |